Query: create_server
OS: centos
Section: 7
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CREATESERVER(7) PostgreSQL 9.2.7 Documentation CREATE SERVER(7)NAMECREATE_SERVER - define a new foreign serverSYNOPSISCREATE SERVER server_name [ TYPE 'server_type' ] [ VERSION 'server_version' ] FOREIGN DATA WRAPPER fdw_name [ OPTIONS ( option 'value' [, ... ] ) ]DESCRIPTIONCREATE SERVER defines a new foreign server. The user who defines the server becomes its owner. A foreign server typically encapsulates connection information that a foreign-data wrapper uses to access an external data resource. Additional user-specific connection information may be specified by means of user mappings. The server name must be unique within the database. Creating a server requires USAGE privilege on the foreign-data wrapper being used.PARAMETERSserver_name The name of the foreign server to be created. server_type Optional server type. server_version Optional server version. fdw_name The name of the foreign-data wrapper that manages the server. OPTIONS ( option 'value' [, ... ] ) This clause specifies the options for the server. The options typically define the connection details of the server, but the actual names and values are dependent on the server's foreign-data wrapper.NOTESWhen using the dblink module (see dblink), the foreign server name can be used as an argument of the dblink_connect(3) function to indicate the connection parameters. See also there for more examples. It is necessary to have the USAGE privilege on the foreign server to be able to use it in this way.EXAMPLESCreate a server foo that uses the built-in foreign-data wrapper default: CREATE SERVER foo FOREIGN DATA WRAPPER "default"; Create a server myserver that uses the foreign-data wrapper pgsql: CREATE SERVER myserver FOREIGN DATA WRAPPER pgsql OPTIONS (host 'foo', dbname 'foodb', port '5432');COMPATIBILITYCREATE SERVER conforms to ISO/IEC 9075-9 (SQL/MED).SEE ALSOALTER SERVER (ALTER_SERVER(7)), DROP SERVER (DROP_SERVER(7)), CREATE FOREIGN DATA WRAPPER (CREATE_FOREIGN_DATA_WRAPPER(7)), CREATE USER MAPPING (CREATE_USER_MAPPING(7)) PostgreSQL 9.2.7 2014-02-17 CREATE SERVER(7)
Related Man Pages |
---|
alter_foreign_data_wrapper(7) - centos |
alter_foreign_table(7) - centos |
create_conversion(7) - centos |
alter_foreign_data_wrapper(7) - suse |
create_server(7) - suse |
Similar Topics in the Unix Linux Community |
---|
foreign characters in flat file |
How to change symbolic links via script |
ICMP Net Unreachable from gateway |
IP address conflict |
Continual knocking on port 443 from foreign IP address |