can i create trigger on synonym is it possible or not please help me
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / 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 |
Answer / akhil
hi neelu.
question is "Can I trigger on synonym'
but you have answered for the question "Can I create synonym for trigger"(your answer is correct for this question)
my understanding about the real question is
we have create synonym for the table,then is it possible to create trigger on that synonym.
If my understanding is wrong,forgive me.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / shailesh
Yes, the trigger can be created on synonym. However, this trigger gets created on the respective base table for which the synonym is created.
| Is This Answer Correct ? | 1 Yes | 0 No |
How many developers work on postgresql?
How do you define a foreign key?
what is the difference between stored procedure and packaged procedure
What is the difference between clustered and non-clustered index in sql?
how to see the oracle 9i/10g table in pc? or In my pc where the table is saved and how to see?
What is cursor in pl sql?
Can we call a function containing dml statements in a select query?
What is the difference between delete, truncate and drop command?
How to return more than one value from a function?
How can multiply values of a column? OR How can multiply value of a row of a column using a single query in SQL?
Can we have two clustered index on a table?
What is graph sql?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)