738

I have some .sql files with thousands of INSERT statements in them and need to run these inserts on my PostgreSQL database in order to add them to a table. The files are that large that it is impossible to open them and copy the INSERT statements into an editor window and run them there. I found on the Internet that you can use the following by navigating to the bin folder of your PostgreSQL install:

psql -d myDataBase -a -f myInsertFile

In my case:

psql -d HIGHWAYS -a -f CLUSTER_1000M.sql

I am then asked for a password for my user, but I cannot enter anything and when I hit enter I get this error:

psql: FATAL: password authentication failed for user "myUsername"

Why won't it let me enter a password. Is there a way round this as it is critical that I can run these scripts?

I got around this issue by adding a new entry in my pg_hba.conf file with the following structure:

# IPv6 local connections:
host    myDbName    myUserName ::1/128    trust

The pg_hba.conf file can usually be found in the 'data' folder of your PostgreSQL install.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
CSharpened
  • 11,674
  • 14
  • 52
  • 86
  • 9
    You've already had your answer but just in case... "I cannot enter anything", might you be talking about the fact that typing your password doesn't show anything? That's normal in this case, normally typing the password and hitting Enter *should* work... – Évelyne Lachance Aug 24 '14 at 20:12
  • I had a similar problem installing a copy of ITIS (http://itis.gov). The database didn't exist, so I couldn't use its name. Because of the way PostgreSQL works, I could do this: psql --port=5554 --username=root --file=ITIS.sql template1 – Cyberknight Jan 16 '15 at 15:40
  • Does this answer your question? [How do I specify a password to 'psql' non-interactively?](https://stackoverflow.com/questions/6405127/how-do-i-specify-a-password-to-psql-non-interactively) – rogerdpack Mar 12 '21 at 18:30

17 Answers17

701

Of course, you will get a fatal error for authenticating, because you do not include a user name...

Try this one, it is OK for me :)

psql -U username -d myDataBase -a -f myInsertFile

If the database is remote, use the same command with host

psql -h host -U username -d myDataBase -a -f myInsertFile
Yash Sharma
  • 1,674
  • 2
  • 16
  • 23
pmverma
  • 7,011
  • 2
  • 13
  • 2
440

You should do it like this:

\i path_to_sql_file

See:

Enter image description here

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Rachid O
  • 13,013
  • 15
  • 66
  • 92
193

You have four choices to supply a password:

  1. Set the PGPASSWORD environment variable. For details see the manual:
    http://www.postgresql.org/docs/current/static/libpq-envars.html
  2. Use a .pgpass file to store the password. For details see the manual:
    http://www.postgresql.org/docs/current/static/libpq-pgpass.html
  3. Use "trust authentication" for that specific user: http://www.postgresql.org/docs/current/static/auth-methods.html#AUTH-TRUST
  4. Since PostgreSQL 9.1 you can also use a connection string:
    https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-CONNSTRING
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
  • Hi. I have now set the settings to trust but I notice that the software is trying to use my windows username in order to login. I want to use a role that I have setup in my Postgresql database. Is there a way of telling it which role to use to run the command? – CSharpened Mar 16 '12 at 11:17
  • 2
    @CSharpened: use the `-u` parameter as documented in the manual –  Mar 16 '12 at 11:18
  • 1
    #2 is extremely simple. Just add one line containing host:port:db:user:pass to a file and you're done. Nice work. – Kriil Jun 17 '16 at 14:23
80

Use this to execute *.sql files when the PostgreSQL server is located in a difference place:

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

Then you are prompted to enter the password of the user.

EDIT: updated based on the comment provided by @zwacky

cegas
  • 2,823
  • 3
  • 16
  • 16
GPrathap
  • 7,336
  • 7
  • 65
  • 83
80

If you are logged in into psql on the Linux shell the command is:

\i fileName.sql

for an absolute path and

\ir filename.sql

for the relative path from where you have called psql.

Florian
  • 980
  • 7
  • 9
  • As @Florian says, once logged in you can execute a file. Remember to mark any comment lines in your SQL as either of two ways ...-- comment to end of line a) -- one line comment OR b) /* multiple line comments */ – Sumit S Mar 19 '20 at 00:45
  • Wow, thank you very much, it ran very well. – Wellington Alves Jun 27 '22 at 23:25
54
export PGPASSWORD=<password>
psql -h <host> -d <database> -U <user_name> -p <port> -a -w -f <file>.sql
Alban
  • 3
  • 2
vishu9219
  • 761
  • 6
  • 14
  • 1
    how can I do that without output – Lu32 Feb 08 '16 at 19:42
  • 2
    psql -h -d -U -p -a -q -w -f .sql – vishu9219 Feb 10 '16 at 07:43
  • 3
    @Lu32 You could also leave out the flag -a (which means "Print all nonempty input lines to standard output as they are read"). EDIT tested, without -a it prints out less, but still too much information. So the -q flag is correct, as vishu9219 said. – Rauni Lillemets Feb 17 '16 at 12:14
30

Via the terminal log on to your database and try this:

database-# >@pathof_mysqlfile.sql

or

database-#>-i pathof_mysqlfile.sql

or

database-#>-c pathof_mysqlfile.sql
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Satish Sharma
  • 3,284
  • 9
  • 38
  • 51
26

You can give both user name and PASSSWORD on the command line itself with the "-d" parameter

   psql -d "dbname='urDbName' user='yourUserName' password='yourPasswd' host='yourHost'" -f yourFileName.sql
juanpa
  • 3
  • 2
Deepu Sahni
  • 479
  • 5
  • 9
16

you could even do it in this way:

sudo -u postgres psql -d myDataBase -a -f myInsertFile

If you have sudo access on machine and it's not recommended for production scripts just for test on your own machine it's the easiest way.

Ravinder Reddy
  • 23,692
  • 6
  • 52
  • 82
MDK
  • 680
  • 1
  • 9
  • 20
14

2021 Solution

if your PostgreSQL database is on your system locally.

psql dbname < sqldump.sql username

If its hosted online

psql -h hostname dbname < sqldump.sql username

If you have any doubts or questions, please ask them in the comments.

wingman__7
  • 679
  • 13
  • 17
12
psql -h localhost -d userstoreis -U admin -p 5432 -a -q -f /home/jobs/Desktop/resources/postgresql.sql

Parameter explanations:

-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
blurfus
  • 13,485
  • 8
  • 55
  • 61
Amazigh Coder
  • 121
  • 1
  • 2
11

Walk through on how to run an SQL on the command line for PostgreSQL in Linux:

Open a terminal and make sure you can run the psql command:

psql --version
which psql

Mine is version 9.1.6 located in /bin/psql.

Create a plain textfile called mysqlfile.sql

Edit that file, put a single line in there:

select * from mytable;

Run this command on commandline (substituting your username and the name of your database for pgadmin and kurz_prod):

psql -U pgadmin -d kurz_prod -a -f mysqlfile.sql

The following is the result I get on the terminal (I am not prompted for a password):

select * from mytable;

test1
--------
hi
me too

(2 rows)
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Eric Leschinski
  • 146,994
  • 96
  • 417
  • 335
  • How do you set up a user? It's my first time installing and running -f on a new .sql file. Always says wrong password – mKane May 03 '18 at 01:00
4

You can open a command prompt and run as administrator. Then type

../bin>psql -f c:/...-h localhost -p 5432 -d databasename -U "postgres"

Password for user postgres: will show up.

Type your password and enter. I couldn't see the password what I was typing, but this time when I press enter it worked. Actually I was loading data into the database.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
abeginner
  • 41
  • 1
2

A small improvement in @wingman__7 's 2021 answer: if your username contains certain characters (an underscore in my case), you need to pass it with the -U flag.
This worked for me:

$ psql -h db.host -d db_name -U my_user < query.sql 
jmm
  • 1,044
  • 2
  • 12
  • 38
1

I achived that wrote (located in the directory where my script is)

::someguy@host::$sudo -u user psql -d my_database -a -f file.sql 

where -u user is the role who owns the database where I want to execute the script then the psql connects to the psql console after that -d my_database loads me in mydatabase finally -a -f file.sql where -a echo all input from the script and -f execute commands from file.sql into mydatabase, then exit.

I'm using: psql (PostgreSQL) 10.12 on (Ubuntu 10.12-0ubuntu0.18.04.1)

PaulShovan
  • 2,140
  • 1
  • 13
  • 22
Chars
  • 11
  • 1
1

Try using the following command in the command line console:

psql -h localhost -U postgres -f restore.sql 
lemon
  • 14,875
  • 6
  • 18
  • 38
p8ul
  • 2,212
  • 19
  • 19
1
sudo -u postgres -i .

postgres is username who you use to install postgres

psql -d demo -a -f demo.sql 

demo -is name db

demo.sql file sql backup

Alex
  • 11
  • 2