0

I am very beginner to PostgreSQL. I have created database with tables in phppgadmin and now I need to upload it to the remove Postgres server. I knnow username and password. What do I need for doing that?

user245548
  • 11
  • 7

1 Answers1

0

Today I uploaded a .tar file to phpPgAdmin following this command:

` user:-$ pg_restore --host localhost --port 5432 --username "postgres" 
  --dbname "your-database-name" --role "postgres" --no-password --verbose
  "/home/your-username/Desktop/your-file.tar"`

Update the last path to the current location of your backup file.

By using this command, I upload my files in remote Postgres servers.

Domiserver
  • 441
  • 6
  • 11