Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

参数——设置方式

六种级别

  • 实例级

    修改
    postgresql.conf
    

    文件一般位于/var/postgres12/data/postgresql.conf 或者/usr/local/pgsql/data/

  • 数据库级

    ALTER DATABASE dbname SET 参数名=?;
    
  • 用户级

    ALTER ROLE rolename SET 参数名=?;
    
  • 会话session级

    SET 参数名=?;
    
  • 事务级

    BEGIN;
    SET LOCAL 参数名=?;
    ......
    COMMIT;
    
  • 函数级

    ALTER FUNCTION func() SET 参数名=?;