I'm attempting to construct two tables in Oracle, A and B; each of these tables reference each other. In my script, I have the foreign key constraints 'in-line' of the create table statements. Of course, both the create table A and create table B are failing because neither table has been created yet.
Is it possible to keep the foreign key constraints in-line, or must they be added only after the table(s) have already been created by means of an alter table statement?

deferredanddeferrableconstraints) or redesign the tables to remove circular paths in FKs. – ypercube Jul 4 '12 at 14:30