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 |
What are the two different parts of the pl/sql packages?
what is a unique key ? : Sql dba
Does sql require a server?
Explain what is a column in a table?
what is data integrity? : Sql dba
What is the difference between database trigger and stored procedure?
Are there any features that are decommissioned in 11g that are not present in 11g?
How delete all records from table in sql?
Which join is like inner join?
Why is a trigger used?
What is package in pl sql?
How many rows can sqlite handle?
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)