|
Hi,
Hope these script will help you..
Disable
Constraints..
select 'alter table &tab disable constraint
'||constraint_name||' cascade;'
from dba_constraints where owner = upper('&owner') and table_name = upper('&tab') / Enable
Constraints
select 'alter table &tab enable constraint
'||constraint_name||';'
from dba_constraints where owner = upper('&owner') and table_name = upper('&tab') / Try these in your test environment.. and have
fun
Nikunj
------------------------------------
Make a FREE long distance call from your PC! http://www.eboom.com/free/
|
- Constraint Enable/Disable Sujatha Madan
- RE: Constraint Enable/Disable Rahul
- RE: Constraint Enable/Disable Sujatha Madan
- RE: Constraint Enable/Disable Sujatha Madan
- Re: Constraint Enable/Disable Nikunj Gupta
- Re: Constraint Enable/Disable Nikunj Gupta
