Home » RDBMS Server » Server Administration » disabled triggers and constraints (Oracle 10g R2, Solaris 10)
disabled triggers and constraints [message #481003] Fri, 29 October 2010 02:10 Go to next message
reym21
Messages: 241
Registered: February 2010
Location: Philippines
Senior Member

Sirs/ Madame:

What should I do with those disabled CONSTRAINTS (most were those file starts with LOGMNR) & TRIGGERS found on our production dB? Are there any impact once I enable those?

Thanks in advance.
Re: disabled triggers and constraints [message #481005 is a reply to message #481003] Fri, 29 October 2010 02:24 Go to previous messageGo to next message
Michel Cadot
Messages: 68651
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
select 'alter table '||owner||'.'||table_name||' modify constraint '||constraint_name||' disable;' 
from dba_constraints
where ...

select 'alter trigger '||owner||'.'||trigger_name||' disable;' 
from dba_triggers
where ...

And execute the result.

Regards
Michel
Re: disabled triggers and constraints [message #481006 is a reply to message #481005] Fri, 29 October 2010 02:26 Go to previous message
Michel Cadot
Messages: 68651
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Quote:
Are there any impact once I enable those?

It will take time and maybe some will not be able to be enabled if some modifications have been made that violate them.

Regards
Michel
Previous Topic: Need help in 'Gather Stats'
Next Topic: Index rebuild grows database size
Goto Forum:
  


Current Time: Wed May 15 14:17:47 CDT 2024