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
Can we call procedure in select statement?
Why do we use sql constraints?
How can check sql version from command line?
If a cursor is open, how can we find in a pl/sql block?
What is optimistic concurrency control? : Transact sql
What is the location of pre_defined_functions.
Which column in the user.triggers data dictionary view shows that the trigger is a pl/sql trigger?
What does subquery mean in sql?
what is sql? : Sql dba
What is the use of sqldataadapter?
Which are sql * plus commands?
Table 1: col1 Timestamp ---------------- 01-mar-2012 11:12:46 Table 2: col2 Timestamp -------------------- 01-mar-2012 11:12:10 01-mar-2012 11:11:23 Write a query to display a row with table2 col2 value less than tabl1 col1 value. Maximum timestamp value previous to table1 col1 value. Display a result as: Col1 col2 ----- ----- 01-mar-2012 11:12:46 01-mar-2012 11:12:10
What company owns postgresql?
What is type and rowtype in pl sql?
what is the functionality of the function htmlentities? : Sql dba