Updated on 2023-10-23 GMT+08:00

MY_TABLES

MY_TABLES displays table information in the current schema. This view exists in both PG_CATALOG and SYS schema.

Table 1 MY_TABLES columns

Name

Type

Description

owner

character varying(64)

Table owner

table_name

character varying(64)

Table name

tablespace_name

character varying(64)

Tablespace name of a table

dropped

character varying

Whether the current record is deleted

  • yes: It is deleted.
  • no: It is not deleted.

num_rows

numeric

Estimated number of rows in a table

status

character varying(8)

Whether the current record is valid
  • valid: It is valid.

temporary

character(1)

Whether a table is a temporary table

  • y: It is a temporary table.
  • n: It is not a temporary table.