1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add Toggling The Pager In PSQL as a postgres til.

This commit is contained in:
jbranchaud
2015-05-30 16:13:27 -05:00
parent 92a55071db
commit f5621a795a
2 changed files with 12 additions and 0 deletions

View File

@@ -53,6 +53,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
### postgres
- [Timestamp Functions](postgres/timestamp-functions.md)
- [Toggling The Pager In PSQL](postgres/toggling-the-pager-in-psql.md)
- [Turning Timing On](postgres/turning-timing-on.md)
- [Word Count for a Column](postgres/word-count-for-a-column.md)

View File

@@ -0,0 +1,11 @@
# Toggling The Pager In PSQL
When the pager is enabled in `psql`, commands that produce larger output
will be opened in a pager. The pager can be enabled within `psql` by running
`\pset pager on`.
If you'd like to retain the output of commands, perhaps as reference for
subsequent commands, you can turn the pager off. As you might expect, the
pager can be disabled with `\pset pager off`.
[source](http://stackoverflow.com/questions/11180179/postgresql-disable-more-output)