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 are the different dcl commands in sql?
Is drop table faster than truncate?
Which function is used to return remainder in a division operator in sql?
How do I truncate a sql log file?
Compare sql & pl/sql
What is the least restrictive isolation level? : Transact sql
What are crud methods?
how can we know the count/number of elements of an array? : Sql dba
What are the syntax and use of the coalesce function?
Which one is better subquery or joins?
- Types of triggers - View - Dcl - Procedures, packages, functions - Metasolve - Can use Dcl in triggers - package case study - Cursor and its types - triggers schedule - Wrap - Why we are using fetch and for in cursor. difference?
What is the difference between jpql and sql?
How does sql developer connect to oracle database?
What is sql profiling in oracle?
How do I clear the screen in sql plus?