can i create trigger on synonym is it possible or not please help me
Answer Posted / neelu
Yes.
create or replace trigger trg_test
before insert on emp
begin
null;
end;
create synonym trg_syn for trg_test;
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
Does a primary key have to be a number?
Inline the values in PL/SQL, what does it mean.?
what are properties of a transaction? : Sql dba
What is the difference between sum and count in sql?
how to include character strings in sql statements? : Sql dba
Does truncate table reset auto increment?
How insert into statements in sql?
How do I write a cron which will run a sql query and mail the results to agroup?
What is the difference between local variables and global variables?
explain the options of myisamchk to improve the performance of a table. : Sql dba
What is the use of procedures?
How do I count rows in sql query?
How many unique keys can a table have?
What are the types of join in sql?
what is uncommittable transactions? : Transact sql