PostgreSQL 2018(3)Trigger

阅读更多
PostgreSQL 2018(3)Trigger

Some tips about PostgreSQL
Check the session timeout
mysql>SHOW SESSION VARIABLES LIKE “%wait%”;
mysql>SET session wait_timeout=3000;
mysql>SHOW SESSION VARIABLES LIKE ‘wait_timeout’;

Check the triggers
mysql>select * from information_schema.triggers

How to run the procedure
mysql>CALL `databasename`.`update_all_features`();


References:
https://stackoverflow.com/questions/25202133/how-to-get-the-triggers-associated-with-a-view-or-a-table-in-postgresql/25202347
https://stackoverflow.com/questions/4440336/mysql-wait-timeout-variable-global-vs-session

你可能感兴趣的:(PostgreSQL 2018(3)Trigger)