can i create trigger on synonym is it possible or not please help me
Answer Posted / suman
Yes u can create trigger on synonym
below are example
select * from scott.emp;
select * from sy_emp;
create or replace synonym sy_emp for scott.emp;
/
create or replace trigger t_name
after insert on sy_emp
begin
null;
end;
/
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
what is log shipping? : Sql dba
What is constant in pl sql?
What is the current version of postgresql?
What are the conditions an underlying table must satisfy before a cursor can be used by a positioned update or delete statement? : Transact sql
what are null values? : Sql dba
Is pl sql useful?
How do I find sql profiler?
How do you select unique values in sql?
what is an alias command? : Sql dba
What is inner join in sql?
how to extract a unit value from a date and time? : Sql dba
What is difference between table and view?
Does truncate free space?
Why are aggregate functions called so?
What is a crud api?