
# RESET
#### 功能描述
RESET将指定的运行时参数恢复为缺省值。这些参数的缺省值是指gaussdb.conf配置文件中所描述的参数缺省值。
当前版本不支持 RESET configuration_parameter，只支持RESET ALL。
#### 注意事项
- RESET ALL的事务性行为和SET相同，它的影响将会被事务回滚撤销。
- RESET ALL不能对role和session authorization恢复为缺省值。
 
#### 语法格式
```
RESET ALL;
```
#### 参数说明
- **ALL**
  所有运行时参数。
  
 
#### 示例
```
--把所有参数设置为缺省值。
m_db=# RESET ALL;
```
#### 相关链接
[SET](https://support.huaweicloud.com/distributed-m-comp-devg-v8-gaussdb/gaussdb-81-0130.html#ZH-CN_TOPIC_0000002558925235)，[SHOW](https://support.huaweicloud.com/distributed-m-comp-devg-v8-gaussdb/gaussdb-81-0134.html#ZH-CN_TOPIC_0000002558925237)
