Answers for "oracle disable constraint"

SQL
1

oracle turn off constraint

alter table
   table_name
DISABLE constraint
   constraint_name;
Posted by: Guest on August-12-2021
0

oracle how to disable a specific constraint

ALTER TABLE table_name
DISABLE CONSTRAINT constraint_name;
Posted by: Guest on June-09-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language