Viewing 2 posts - 1 through 3 (of 3 total)
It's Oracle syntax.
It won't work in my SQL i believe.
but it does in oracle .
April 25, 2008 at 2:44 am
#807008
Yes we can disable the primary key which is when referred by foreign keys, using the following command:
ALTER TABLE employee DISABLE CONSTRAINT emp_id CASCADE;
this will disable the primary key...
April 24, 2008 at 10:40 pm
#806969