I keep getting this error:
more is not a recognized internal or external command.
when I run this command,
SELECT * FROM users;
I am new to Postgres. I had to set my path multiple times to: C:\Program Files\PostgreSQL\11\bins
I keep getting this error:
more is not a recognized internal or external command.
when I run this command,
SELECT * FROM users;
I am new to Postgres. I had to set my path multiple times to: C:\Program Files\PostgreSQL\11\bins
Assuming you are using psql
.
When the result of query exceeds the size of the console window, psql tries to use a pager to provide some basic scrolling facility in the result. By default this is the command more
. Although I find it hard to believe that your system has no "more" command, you can turn off its usage.
Inside psql
run:
arthur=> \pset pager off
Pager usage is off.
arthur=>
More details in the manual
Related question: