I'm guessing you are talking about the ANSI standard schemas (TSQL probably calls them domains). Ingres supports schemas only in a basic fashion; in Ingres a shcema name is the same as your user name, you can only create tables in the schema that is your current user name (which may be modified either with "-u" flag or wit SET SESSION AUTHORIZATION). created tables may be refference by their schema (e.g. select * from <schema_name>.<table_name>)
|