Defines a new foreign server.
CREATE SERVER <server_name> [ TYPE '<server_type>' ] [ VERSION '<server_version>' ]
FOREIGN DATA WRAPPER <fdw_name>
[ OPTIONS ( [ mpp_execute { 'master' | 'any' | 'all segments' } [, ] ]
[ num_segments '<num>' [, ] ]
[ <option> '<value>' [, ... ]] ) ]
CREATE 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 source. Additional user-specific connection information may be specified by means of user mappings.
Creating a server requires the USAGE
privilege on the foreign-data wrapper specified.
A Greenplum Database-specific option that identifies the host from which the foreign-data wrapper reads or writes data:
master
(the default)—Read or write data from the master host.any
—Read data from either the master host or any one segment, depending on which path costs less.all segments
—Read or write data from all segments. To support this option value, the foreign-data wrapper should have a policy that matches the segments to data. mpp_execute 'all segments'
.Support for the foreign server mpp_execute
option, and the specific modes, is foreign-data wrapper-specific.
The mpp_execute
option can be specified in multiple commands: CREATE FOREIGN TABLE
, CREATE SERVER
, and CREATE FOREIGN DATA WRAPPER
. The foreign table setting takes precedence over the foreign server setting, followed by the foreign-data wrapper setting.
When mpp_execute
is set to 'all segments'
, the Greenplum Database-specific num_segments
option identifies the number of query executors that Greenplum Database spawns on the source Greenplum Database cluster. If you do not provide a value, num defaults to the number of segments in the source cluster.
Support for the foreign server num_segments
option is foreign-data wrapper-specific.
When using the dblink module (see dblink), you can use the foreign server name as an argument of the dblink_connect()
function to provide the connection parameters. You must have the USAGE
privilege on the foreign server to use it in this manner.
Create a foreign server named myserver
that uses the foreign-data wrapper named pgsql
and includes connection options:
CREATE SERVER myserver FOREIGN DATA WRAPPER pgsql
OPTIONS (host 'foo', dbname 'foodb', port '5432');
CREATE SERVER
conforms to ISO/IEC 9075-9 (SQL/MED).
ALTER SERVER, DROP SERVER, CREATE FOREIGN DATA WRAPPER, CREATE USER MAPPING
Parent topic: SQL Commands