Answers for "run all sql file from folder postgres command line"

SQL
0

run all sql file from folder postgres command line

psql -h localhost -d userstoreis -U admin -p 5432 -a -q -f /home/jobs/Desktop/resources/postgresql.sql

-h PostgreSQL server IP address
-d database name
-U user name
-p port which PostgreSQL server is listening on
-f path to SQL script
-a all echo
-q quiet
Posted by: Guest on April-11-2022

Code answers related to "run all sql file from folder postgres command line"

Code answers related to "SQL"

Browse Popular Code Answers by Language