第二章 SQL命令参考-RESET

来源:互联网 发布:淘宝必买清单编辑器 编辑:程序博客网 时间:2024/06/06 19:15

RESET

Restores thevalue of a system configuration parameter to the default value.

概要

RESETconfiguration_parameter

RESET ALL

描述

RESET将系统配置参数恢复为默认值。 RESET是SETconfiguration_parameter TO DEFAULT的替代拼写。

默认值被定义为参数的值,在当前会话中没有为其发出SET。 该值的实际来源可能是编译默认值,masterpostgresql.conf配置文件,命令行选项或每个数据库或每个用户的默认设置。

parameter

configuration_parameter

系统配置参数的名称。 有关详细信息,请参阅Server Configuration参数

ALL

将所有可设置的配置参数重置为其默认值。.

示例

Set the statement_mem configuration parameter to its defaultvalue:

RESET statement_mem;

兼容性

reset is a Greenplum Database extension.

相关参考

SET