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
Should I use mbr or gpt?
Is like operator in sql case sensitive?
how is exception handling handled in mysql? : Sql dba
Where do we use pl sql?
What does := mean in pl sql?
what is the difference between blob and text? : Sql dba
Is pl sql better than sql?
Explain character-manipulation functions?
Is sql procedural language?
What is loop in pl sql?
what are the advantages of sql ? : Sql dba
what are the different type of sql's statements ? : Sql dba
Why cross join is used?
What is nvl?
what are the advantages and disadvantages of cascading style sheets? : Sql dba