Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

giving error of insufficient privileges while creating triggers

Santosh PradhanJul 24 2012 — edited Jul 25 2012
Hi all,


I am facing the problem of insuffcient privilege on base tables while creating triggers. I have three schemas say A, B, C in my database.

Base tables are in schema A. I have given all the grants on base table to schema B and C.

grant all on base_table_name to B;
grant all on base_table_name to C;

I have created synonym also on that base table.

And i m creating triggers in schema B.

When i execute the query for trigger the it giving following error :


+AFTER INSERT OR UPDATE OR DELETE ON BASE_TBALE_NAME *+
ERROR at line 3:
ORA-01031: insufficient privileges


even i have checked in dba_tab_privs for that base_table.....it is showing all the grants to USER B and C.

What should I do now?
please suggest.......


Regards,
Andy.
This post has been answered by Karan on Jul 25 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 22 2012
Added on Jul 24 2012
6 comments
3,660 views