import table definitions from a foreign server NAME IMPORT_FOREIGN_SCHEMA - import table definitions from a foreign server SYNOPSIS IMPORT FOREIGN SCHEMA remote_sc......TE TABLE ( CREATE_TABLE (7)), CREATE SERVER ( CREATE_SERVER (7)), IMPORT FOREIGN SCHEMA ( IMPORT_FOREIGN_SCHEMA (7))define default access privileges NAME ALTER_DEFAULT_PRIVILEGES - define default access privileges SYNOPSIS ALTER DEFAULT PRIVILEGES [ FOR { ROLE | USER } target_role [, ...] ] [ IN…define or change the comment of an object NAME COMMENT - define or change the comment of an object SYNOPSIS COMMENT ON { ACCESS METHOD object_name | AGGREGATE aggregate_name ( aggr…define a new publication NAME CREATE_PUBLICATION - define a new publication SYNOPSIS CREATE PUBLICATION name [ FOR ALL TABLES | FOR publication_object [, ... ] ] [ WITH ( publicati…set constraint check timing for the current transaction NAME SET_CONSTRAINTS - set constraint check timing for the current transaction SYNOPSIS SET CONSTRAINTS { ALL | name [, ...]…define access privileges NAME GRANT - define access privileges SYNOPSIS GRANT { { SELECT | INSERT | UPDATE | DELETE | TRUNCATE | REFERENCES | TRIGGER | MAINTAIN } [, ...] | ALL [ P…change the definition of a foreign table NAME ALTER_FOREIGN_TABLE - change the definition of a foreign table SYNOPSIS ALTER FOREIGN TABLE [ IF EXISTS ] [ ONLY ] name [ * ] action […change the definition of an extension NAME ALTER_EXTENSION - change the definition of an extension SYNOPSIS ALTER EXTENSION name UPDATE [ TO new_version ] ALTER EXTENSION name SET …remove a foreign table NAME DROP_FOREIGN_TABLE - remove a foreign table SYNOPSIS DROP FOREIGN TABLE [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ] DESCRIPTION DROP FOREIGN TABLE…remove a table NAME DROP_TABLE - remove a table SYNOPSIS DROP TABLE [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ] DESCRIPTION DROP TABLE removes tables from the database. Only …define or change a security label applied to an object NAME SECURITY_LABEL - define or change a security label applied to an object SYNOPSIS SECURITY LABEL [ FOR provider ] ON { TA…define a new view NAME CREATE_VIEW - define a new view SYNOPSIS CREATE [ OR REPLACE ] [ TEMP | TEMPORARY ] [ RECURSIVE ] VIEW name [ ( column_name [, ...] ) ] [ WITH ( view_option_…change the definition of a table NAME ALTER_TABLE - change the definition of a table SYNOPSIS ALTER TABLE [ IF EXISTS ] [ ONLY ] name [ * ] action [, ... ] ALTER TABLE [ IF EXISTS …change the definition of a publication NAME ALTER_PUBLICATION - change the definition of a publication SYNOPSIS ALTER PUBLICATION name ADD publication_object [, ...] ALTER PUBLICAT…remove a schema NAME DROP_SCHEMA - remove a schema SYNOPSIS DROP SCHEMA [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ] DESCRIPTION DROP SCHEMA removes schemas from the database.…define a new trigger NAME CREATE_TRIGGER - define a new trigger SYNOPSIS CREATE [ OR REPLACE ] [ CONSTRAINT ] TRIGGER name { BEFORE | AFTER | INSTEAD OF } { event [ OR ... ] } ON t…define a new schema NAME CREATE_SCHEMA - define a new schema SYNOPSIS CREATE SCHEMA schema_name [ AUTHORIZATION role_specification ] [ schema_element [ ... ] ] CREATE SCHEMA AUTHOR…install an extension NAME CREATE_EXTENSION - install an extension SYNOPSIS CREATE EXTENSION [ IF NOT EXISTS ] extension_name [ WITH ] [ SCHEMA schema_name ] [ VERSION version ] [ C…empty a table or set of tables NAME TRUNCATE - empty a table or set of tables SYNOPSIS TRUNCATE [ TABLE ] [ ONLY ] name [ * ] [, ... ] [ RESTART IDENTITY | CONTINUE IDENTITY ] [ CA…