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" 的评论、建议或更正 此处