can we delete the trigger in a view? if yes why if not why?
Answer Posted / pradeep
As per my knowledge we can drop trigger crated on view see
below exp
CREATE OR REPLACE FORCE VIEW "SCOTT"."TEST_VIEW"
("EMPNO", "ENAME", "JOB", "MGR", "HIREDATE", "SAL", "COMM",
"DEPTNO") AS
select "EMPNO", "ENAME", "JOB", "MGR", "HIREDATE", "SAL", "
COMM", "DEPTNO" from emp;
SQL> create or replace
2 TRIGGER SCOTT.VIEW_TIG
3 INSTEAD OF INSERT OR DELETE OR UPDATE ON TEST_VIEW
4 BEGIN
5 NULL;
6 END;
7 /
Trigger created.
SQL> drop trigger VIEW_TIG ;
Trigger dropped.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What is pl sql quora?
What are the topics in pl sql?
What is the difference between clustered and non-clustered indexes?
What is compound trigger?
what are the non-standard sql commands supported by 'mysql'? : Sql dba
Explain the types of joins in sql?
Define the select into statement.
What is the plv (pl/vision) package offers?
Can we use loop in sql?
Can a procedure in a package be overloaded?
How do I count rows in sql?
what is a unique key ? : Sql dba
what is commit? : Sql dba
What are the different datatypes available in PL/SQL?
What are the types of views in sql?