Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: No "create domain" command in oracle
sk.petersen_at_gmx.de said...
> Hello,
>
> I'm missing the CREATE DOMAIN command in Oracle.
> Didn't find it in the Oracle documentation.
>
> Does it not exist?
>
> Regards,
> Sönke
>
Are you referring to the SQL99 command, as found in Postgres, for example? If so, that command is implemented in Oracle by several clauses, mostly in the CREATE TABLE command. For example, that's where you set the default value, whether or not the column can be null, or check constraints. Another portion of the SQL99 command is implemented in Oracle as database objects (types and such).
-- /Karsten DBA > retired > DBAReceived on Fri Feb 14 2003 - 14:37:08 CST
![]() |
![]() |