Reputation: 31
Can we call a trigger function in a stored procedure.
Upvotes: 3
Views: 4297
Reputation: 48537
A trigger is automatically executed. So, dependant on what your Stored Procedure is doing, it will get called.
http://www.postgresql.org/docs/8.1/interactive/triggers.html
Upvotes: 2