File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
53
53
### postgres
54
54
55
55
- [ Timestamp Functions] ( postgres/timestamp-functions.md )
56
+ - [ Toggling The Pager In PSQL] ( postgres/toggling-the-pager-in-psql.md )
56
57
- [ Turning Timing On] ( postgres/turning-timing-on.md )
57
58
- [ Word Count for a Column] ( postgres/word-count-for-a-column.md )
58
59
Original file line number Diff line number Diff line change
1
+ # Toggling The Pager In PSQL
2
+
3
+ When the pager is enabled in ` psql ` , commands that produce larger output
4
+ will be opened in a pager. The pager can be enabled within ` psql ` by running
5
+ ` \pset pager on ` .
6
+
7
+ If you'd like to retain the output of commands, perhaps as reference for
8
+ subsequent commands, you can turn the pager off. As you might expect, the
9
+ pager can be disabled with ` \pset pager off ` .
10
+
11
+ [ source] ( http://stackoverflow.com/questions/11180179/postgresql-disable-more-output )
You can’t perform that action at this time.
0 commit comments