pg_exttable
pg_exttable#
The pg_exttable system catalog table is used to track external tables and web tables created by the CREATE EXTERNAL TABLE command.
Table 1. pg_catalog.pg_exttable
column |
type |
references |
description |
|---|---|---|---|
|
oid |
pg_class_internal.oid |
The OID of this external table. |
|
text[] |
The URI location(s) of the external table files. |
|
|
char |
Format of the external table files: |
|
|
text |
Formatting options of the external table files, such as the field delimiter, null string, escape character, etc. |
|
|
text |
The OS command to execute when the external table is accessed. |
|
|
integer |
The per segment reject limit for rows with errors, after which the load will fail. |
|
|
char |
Type of reject limit threshold: |
|
|
oid |
pg_class_internal.oid |
The object id of the error table where format errors will be logged. |
|
text |
The client encoding. |
|
|
boolean |
|