Show all results in postgresql?

后端 未结 1 1688
执笔经年
执笔经年 2021-01-24 13:11

My postgres windows client, upon receiving a query with many results, only shows some of them initially, showing -- More -- at the bottom and making you hit \"ente

1条回答
  •  孤城傲影
    2021-01-24 13:28

    Assuming you mean psql with "my postgres windows client", you can turn off the use of the pager using the \pset command:

    \pset pager off
    

    If you want to permanently turn the pager off, add that line to your psqlrc.conf file.

    0 讨论(0)
提交回复
热议问题