Postgres Actions
Last updated
Was this helpful?
Last updated
Was this helpful?
: Call PostgreSQL Stored Procedure
: Calling a PostgreSQL function
: Create Tables PostgreSQL
: Delete PostgreSQL Query
: Given a set of PostgreSQL commands, this actions run them inside a transaction.
: Get PostgreSQL Handle
: Long Running PostgreSQL Queries
: This Lego calculates bloat for tables in Postgres
: Find unused Indexes in a database in PostgreSQL
: The result of the action will show the total number of blocks read from disk, the total number of blocks found in the buffer cache, and the cache hit ratio as a percentage. For example, if the cache hit ratio is 99%, it means that 99% of all data requests were served from the buffer cache, and only 1% required reading data from disk.
: The action result shows the data for table name, the percentage of times an index was used for that table, and the number of live rows in the table.
: Checks if the percentage of active connections to the database exceeds the provided threshold.
: Checks for any locks in the postgres database.
: This action checks the status of each database.
: Read PostgreSQL Query
: Show the tables existing in a PostgreSQL Database. We execute the following query to fetch this information SELECT * FROM pg_catalog.pg_tables WHERE schemaname != 'pg_catalog' AND schemaname != 'information_schema';
: Write PostgreSQL Query