Created
January 23, 2021 08:32
-
-
Save StevenJL/d7459afa3e344e0132833107688f0205 to your computer and use it in GitHub Desktop.
Write Queries to table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT * FROM pg_stat_activity | |
| WHERE state != 'idle' | |
| AND query NOT ILIKE '%SELECT%' | |
| AND query ILIKE '%some_big_table%' | |
| AND query NOT ILIKE '%pg_stat_activity%'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment