Chris Gamache <[EMAIL PROTECTED]> writes: > I'm using the "uniqueidentifier" column in some of these tables. When > I created the new schema, I created an instance of "uniqueidentifier" > and its supporting functions and casts within the new schema. When I > try to "INSERT INTO myschema.mytable ... SELECT ... FROM > public.mytable;" It's having difficulty seeing that the data types are > compatible across the schema.
Indeed, since as far as the system knows those two datatypes have nothing to do with each other. I'd go ahead and define an assignment cast WITHOUT FUNCTION to let you do the conversion. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faqs/FAQ.html