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 difference between a local and a global temporary table? : Sql dba
what is bdb (berkeleydb)? : Sql dba
what is datawarehouse? : Sql dba
Is coalesce faster than isnull?
What is a sql select statement?
Which certification is best for sql?
What are the most important ddl statements in sql?
What is java sql driver?
What is basic structure of pl sql?
Is it possible to create startup or shutdown trigger for on-schema?
What is embedded sql with example?
What does the acronym acid stand for in database management?
List and explain the different types of join clauses supported in ansi-standard sql?
Does view store data in sql?
Which are the different case manipulation functions in sql?