# CREATE_SERVER(7) - man - phpMan

CREATE [SERVER(7)](https://www.chedong.com/phpMan.php/man/SERVER/7/markdown)                   PostgreSQL 14.23 Documentation                   CREATE [SERVER(7)](https://www.chedong.com/phpMan.php/man/SERVER/7/markdown)



## NAME
       CREATE_SERVER - define a new foreign server

## SYNOPSIS
       CREATE SERVER [ IF NOT EXISTS ] _server_name_ [ TYPE '_server_type_' ] [ VERSION '_server_version_' ]
           FOREIGN DATA WRAPPER _fdw_name_
           [ OPTIONS ( _option_ '_value_' [, ... ] ) ]

## DESCRIPTION
       **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 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.

## PARAMETERS
       IF NOT EXISTS
           Do not throw an error if a server with the same name already exists. A notice is issued
           in this case. Note that there is no guarantee that the existing server is anything like
           the one that would have been created.

       _server_name_
           The name of the foreign server to be created.

       _server_type_
           Optional server type, potentially useful to foreign-data wrappers.

       _server_version_
           Optional server version, potentially useful to foreign-data wrappers.

       _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.

## NOTES
       When using the dblink module, a foreign server's name can be used as an argument of the
       **dblink**___**[connect**(3)](https://www.chedong.com/phpMan.php/man/connect/3/markdown) function to indicate the connection parameters. It is necessary to have the
       USAGE privilege on the foreign server to be able to use it in this way.

       If the foreign server supports sort pushdown, it is necessary for it to have the same sort
       ordering as the local server.

## EXAMPLES
       Create a server myserver that uses the foreign-data wrapper postgres_fdw:

           CREATE SERVER myserver FOREIGN DATA WRAPPER postgres_fdw OPTIONS (host 'foo', dbname 'foodb', port '5432');

       See postgres_fdw for more details.

## COMPATIBILITY
       **CREATE** **SERVER** conforms to ISO/IEC 9075-9 (SQL/MED).

## SEE ALSO
       ALTER SERVER (**ALTER**___**[SERVER**(7)](https://www.chedong.com/phpMan.php/man/SERVER/7/markdown)), DROP SERVER (**DROP**___**[SERVER**(7)](https://www.chedong.com/phpMan.php/man/SERVER/7/markdown)), CREATE FOREIGN DATA WRAPPER
       (**CREATE**___**FOREIGN**___**DATA**___**[WRAPPER**(7)](https://www.chedong.com/phpMan.php/man/WRAPPER/7/markdown)), CREATE FOREIGN TABLE (**CREATE**___**FOREIGN**___**[TABLE**(7)](https://www.chedong.com/phpMan.php/man/TABLE/7/markdown)), CREATE USER
       MAPPING (**CREATE**___**USER**___**[MAPPING**(7)](https://www.chedong.com/phpMan.php/man/MAPPING/7/markdown))



PostgreSQL 14.23                                2026                                CREATE [SERVER(7)](https://www.chedong.com/phpMan.php/man/SERVER/7/markdown)
