ALTER SERVER

用于修改外部服务器属性的 SQL 命令

ALTER SERVER 是一个 DDL 命令,用于修改外部服务器的属性。

ALTER SERVER 添加于 PostgreSQL 8.4

更改历史

示例

使用 ALTER SERVER 修改外部服务器的选项 (此处:postgres_fdw)

postgres=# ALTER SERVER pg_fdw_test OPTIONS (ADD use_remote_estimate 'true');
ALTER SERVER

postgres=# ALTER SERVER pg_fdw_test OPTIONS (SET use_remote_estimate 'false');
ALTER SERVER

postgres=# ALTER SERVER pg_fdw_test OPTIONS (DROP use_remote_estimate);
ALTER SERVER

请注意,只有在执行 CREATE SERVER 时显式指定了选项或随后使用 ADD 指定了选项时,才会接受 SET 子句。

postgres=# ALTER SERVER pg_fdw_test OPTIONS (SET use_remote_estimate 'true');
ERROR:  option "use_remote_estimate" not found

分类

DDL外部数据包装器 (FDW)SQL 命令

另请参阅

CREATE SERVERDROP SERVERpg_foreign_server

反馈

提交任何关于“ALTER SERVER”的评论、建议或更正 此处