ThemeSpatial Data Warehouse
Type

Performance

Available from


Overview

If you are finding the speed of your Spatial Data Warehouse (SDW) slow or maybe you cannot open SDW tables, then the following steps could help resolve the problem.

Step-by-step guide

You could simply restart the Windows Service or reboot the Server itself or you can try to identify the session that is causing the problem.

SELECT procpid, age(clock_timestamp(), query_start), usename, current_query FROM pg_stat_activity WHERE current_query != '<IDLE>'
AND current_query NOT ILIKE '%pg_stat_activity%' ORDER BY query_start desc;
SELECT pg_cancel_backend(procpid);