How to recompile a already made trigger?
Answers were Sorted based on User's Feedback
Answer / chandrakant agrawal
To recompile Trigger:
ALTER TRIGGER <trigger_name> COMPILE;
The trigger can be enabled and disabled manually by using:
Alter Table <table_name> disable(enable) all trigger;
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / mk
Usually the trigger code is in a file e.g. trigger_name.sql
To create/replace the trigger object, at the SQL Plus prompt
type
@<folder>/trigger_name.sql
Is This Answer Correct ? | 0 Yes | 2 No |
what is the use of double ampersand (&&) in sql queries?
how to calculate expressions with sql statements? : Sql dba
What is clustered and non-clustered indexes?
Are dml statements autocommit?
What is file based approach?
How does one use sql*loader to load images, sound clips and documents? : aql loader
what is row? : Sql dba
What does cursor do in sql?
What is the difference between count 1 and count (*) in a sql query?
What is sqlca in db2?
What does truncate mean in sql?
What action do you have to perform before retrieving data from the next result set of a stored procedure ?