PostgreSQL: Documentation: 10: 51.11. pg_class
https://www.postgresql.org/docs/10/catalog-pg-class.html
The catalog pg_class catalogs tables and most everything else that has columns or is otherwise similar to a table. This includes indexes (but see also pg_index), sequences (but see also pg_sequence)...
PostgreSQL: Documentation: 9.3: pg_class
https://www.postgresql.org/docs/9.3/catalog-pg-class.html
The catalog pg_class catalogs tables and most everything else that has columns or is otherwise similar to a table. This includes indexes (but see also pg_index), sequences, views, materialized views...
pg_class | Greenplum Docs
https://docs.greenplum.org/5280/ref_guide/system_catalogs/pg_class.html
The system catalog table pg_class catalogs tables and most everything else that has columns or is otherwise similar to a table (also known as relations). This includes indexes (see also pg_index)...
PG_CLASS_INFO - Amazon Redshift
https://docs.aws.amazon.com/redshift/latest/dg/r_PG_CLASS_INFO.html
PG_CLASS_INFO is an Amazon Redshift system view built on the PostgreSQL catalog tables PG_CLASS_INFO includes details about table creation time and the current distribution style.
pg_class - pgPedia - a PostgreSQL Encyclopedia
https://pgpedia.info/p/pg_class.html
pg_class is a system catalogue table containing information about all relations in the database, i.e. all tables, indexes, sequences, views, materialized views, composite types and TOAST tables.
postgreSQL - pg_class question - Stack Overflow
https://stackoverflow.com/questions/2658245/postgresql-pg-class-question
pg_class doesn't contain all the statistics needed by the planner, it only contains information about the structure of the table. Statistics generated by analyze command contain information about values...
pg_class to check if table exists - Peterbe.com
https://www.peterbe.com/plog/pg_class
A disadvantage with using pg_class is that it's not ISO standard, meaning that it's specific to PostgreSQL only. The first pattern will work on all relational databases.
pg_class | Apache HAWQ (Incubating) Docs
http://hawq.apache.org/docs/userguide/2.3.0.0-incubating/reference/catalog/pg_class.html
pg_class.oid. OID of the TOAST table associated with this table, 0 if none. The TOAST table stores large attributes "out of line" in a secondary table.
pg_class
http://pgdocptbr.sourceforge.net/pg80/catalog-pg-class.html
O catálogo pg_class cataloga as tabelas e tudo mais que possui colunas, ou é de alguma forma semelhante a uma tabela. Isto inclui os índices (mas consulte também pg_index), seqüências, visões...
pglast.enums.pg_class — Constants extracted from...
https://pglast.readthedocs.io/en/latest/pg_class.html
pglast.enums.pg_class.Natts_pg_class¶. See here for details.
PostgreSQL - general - pg_class (system) table increasing size.
https://www.postgresql-archive.org/pg-class-system-table-increasing-size-td5930725.html
PostgreSQL 9.4.0 Why pg_class table is getting bigger in size. How to stop increasing it. Does it affect the performance.
PostgreSQL — полезные команды | Записки системного...
https://kamaok.org.ua/?p=961
FROM pg_class C. LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace). WHERE nspname NOT IN ('pg_catalog', 'information_schema').
Table Partitioning in PostgreSQL 11.2 - Database Tutorials
https://dbtut.com/index.php/2019/12/30/table-partitioning-in-postgresql-11-2/
JOIN pg_namespace nmsp_child ON nmsp_child.oid = child.relnamespace. WHERE parent.relname='sales' ; After completing our checks, let's insert data to our table.
Get count estimates from pg_class.reltuples for given conditions
https://dba.stackexchange.com/questions/115873/get-count-estimates-from-pg-class-reltuples-for-given-conditions
SELECT reltuples FROM pg_class WHERE oid = 'tbl_name_hello_idx'::regclass; -- or schema-qualify table name. Every index has its own entry in pg_class and its own reltuples count.
PostgreSQL Common Utility Queries · GitHub
https://gist.github.com/nesquena/1199555
ON pg_class.oid = x.indrelid. Left outer join. ( SELECT c.relname AS ctablename, ipg.relname AS indexname, x.indnatts AS number_of_columns FROM pg_index x.
Типы данных PostgreSQL
http://kodesource.top/PostgreSQL/data-types.php
pg_proc. сумма. regprocedure. функция с типами аргументов. pg_proc. сумма (int4). regoper. имя оператора. pg_operator. + regoperator. оператор с типами аргументов.
PostgreSQL. Полезные запросы к системным таблицам
http://drmiller-developer.blogspot.com/2012/08/postgresql.html
SELECT nspname, relname, reltuples FROM pg_class pc inner join pg_namespace pn on pn.oid = pc.relnamespace WHERE relkind = 'r'::char and nspname = 'public' order by relname.