Skip to Content

When running the \dt command in PostgreSQL, the error message “Did not find any relations” means that no tables were found in the current schema that is visible to the user running the command. In PostgreSQL, the \dt command is used to list all the tables in the current schema. If the command is executed …

Read More about 3 ways to fix Did not find any relations in Postgresql

Get table size with pg_relation_size in Postgres PostgreSQL provides a dedicated function, pg_relation_size, to compute the actual disk space used by a specific table or index. We just need to provide the table name. To check the size of a table in a PostgreSQL database, you can use the following SQL query: select pg_size_pretty(pg_relation_size(‘table_name’)); Replace …

Read More about 3 ways to get table size in Postgres

Some tasks may consume a significant amount of system resources, such as CPU or memory, and running too many of these tasks at once can cause performance issues. By adding a pause between loop iterations, you can help to manage resource consumption and prevent performance issues. It can help to avoid overwhelming the target system …

Read More about Ansible: Loop over items with a pause between iterations

selectattr in Ansible selectattr is a filter plugin in Ansible that allows you to select a subset of elements from a list of dictionaries based on the value of a particular attribute.  Its syntax is as follows: <list of dictionaries> | selectattr(‘<attribute>’, ‘<operator>’, ‘<value>’)   Key Description list_of_dictionaries A list of dictionaries representing items to …

Read More about selectattr in Ansible