can we delete the trigger in a view? if yes why if not why?
Answer Posted / kishore
create or replace
TRIGGER VIEW_TIG
INSTEAD OF INSERT OR DELETE OR UPDATE ON TEST_VIEW
BEGIN
NULL
END
1 create or replace
2 TRIGGER VIEW_TIG
3 INSTEAD OF INSERT OR DELETE OR UPDATE ON TEST_VIEW
4 BEGIN
5 NULL;
6* END;
SQL> /
Trigger created.
SQL> DROP TRIGGER VIEW_TIG;
Trigger dropped.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the benefit of foreign key?
what are the advantages of mysql in comparison to oracle? : Sql dba
What is a trigger in sql?
What is a database event trigger?
What is dba in sql? : SQL DBA
When to use inner join and left join?
How many parts of a pl sql block are optional?
State some properties of relational databases?
What is the use of triggers?
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
What is the difference between the sql*loader and import utilities? : aql loader
what is oracle database ? : Sql dba
who introduced sql?
Is full outer join same as cross join?
Can a primary key be a foreign key?