The pg_exttable system catalog table is used to track external tables and web tables created by the CREATE EXTERNAL TABLE command.

    columntypereferencesdescription
    reloidoidpg_class.oidThe OID of this external table.
    urilocationtext[] The URI location(s) of the external table files.
    execlocationtext[] The ON segment locations defined for the external table.
    fmttypechar Format of the external table files: t for text, or c for csv.
    fmtoptstext Formatting options of the external table files, such as the field delimiter, null string, escape character, etc.
    optionstext[] The options defined for the external table.
    commandtext The OS command to run when the external table is accessed.
    rejectlimitinteger The per segment reject limit for rows with errors, after which the load will fail.
    rejectlimittypechar Type of reject limit threshold: r for number of rows.
    logerrorsbool 1 to log errors, 0 to not.
    encodingtext The client encoding.
    writableboolean 0 for readable external tables, 1 for writable external tables.

    Parent topic: System Catalogs Definitions