↧
Answer by Roman Tkachuk for Execution time of triggers fired when a procedure...
You can use pg_stat_statements extension to collect stats over all queries in your db. You can indirectly see to total runtime of INSERT/UPDATE OR DELETE for needed table.
View ArticleExecution time of triggers fired when a procedure is executed in postgresql
I have a stored procedure which may delete and/or insert tuples into a database table. This table has an AFTER INSERT OR DELETE OR UPDATE trigger. Basically I want to retrieve how much time was spent...
View Article