Postgresql (psql) .psqlrc技巧和窍门

Set all null fields to NULL:

\pset null 'NULL'

After this,the query results look like this:

select 'test' as test_text,null as test_null;
 test_text | test_null
-----------+-----------
 test| NULL
(1 row)

Set the command history file names for each host and database:

\set HISTFILE ~/.psql_history- :HOST - :dbnAME

After this,the history file naming look like this:

.psql_history-alpha-testdb
.psql_history-localhost-test
.psql_history-10.20.10.101-production
...

Set the number of commands to store in the command history:

\set HISTSIZE 2000

Set timing on and see how long query took:

\timing

psql prompt can be customized to your preference:

\set PROMPT1 '(%n@%M:%>) [%/] > ' \set PROMPT2 ''

After this,the PROMPT1 look like this:

(wwwuser@alpha:5432) [webdb] > 

And PROMPT2 is empty.
Complete information can be found here,under prompting.

Set client encoding:

\encoding unicode

Final .psqlrc file look like this:

'NULL' \set HISTFILE ~/.psql_history- :HOST - :dbnAME \set HISTSIZE 2000 \timing \set PROMPT1 '' \encoding unicode

One additional tip is to add less to PAGER environment variable if you want to use less rather than more. So simply add following row to profile (/etc/profile or ~/.profile):

export PAGER=less

相关文章

项目需要,有个数据需要导入,拿到手一开始以为是mysql,结果...
本文小编为大家详细介绍“怎么查看PostgreSQL数据库中所有表...
错误现象问题原因这是在远程连接时pg_hba.conf文件没有配置正...
因本地资源有限,在公共测试环境搭建了PGsql环境,从数据库本...
wamp 环境 这个提示就是说你的版本低于10了。 先打印ph...
psycopg2.OperationalError: SSL SYSCALL error: EOF detect...