Re: restoring from a dump

From: "Burgholzer, Robert (DEQ)" <Robert(dot)Burgholzer(at)deq(dot)virginia(dot)gov>
To: "pgsql-admin(at)postgresql(dot)org" <pgsql-admin(at)postgresql(dot)org>
Subject: Re: restoring from a dump
Date: 2013-01-07 13:11:19
Message-ID: 77F5F8FA4B407F43BFCFD3FC347896913CC16D@COVMSGCES-MBX01
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

The other quick item to consider is whether or not your database is on a *nix system or a windows machine, and if your workstation is *nix or windows.

Cases/suggestions:
1. Windows workstation / *nix DB Server: use putty.exe to ssh into the DB server (a second option would be to use PGAdmin, a GUI db management package for PostgreSQL)
2. Windows workstation / Windows DB Server: use CMD.com and enter psql command line (may have to add "C:/Program Files/PostgreSQLX.YY/bin" to your PATH). Could also use PGAdmin in this case
3. *nix client / *nix server: command line psql (ssh to server if not the same as your workstation)

________________________________________
From: pgsql-admin-owner(at)postgresql(dot)org [pgsql-admin-owner(at)postgresql(dot)org] on behalf of CS DBA [cs_dba(at)consistentstate(dot)com]
Sent: Sunday, January 06, 2013 2:48 PM
To: pgsql-admin(at)postgresql(dot)org
Subject: Re: [ADMIN] restoring from a dump

On 1/5/13 1:54 PM, J Rouse wrote:
> Stupid person here. Just got PostgresSQL today. Have text dump
> file. Need to restore.
>
> I think I need to use psql, but do not even know how to get to it.
> Need exact instructions on where to enter the command line, setting up
> paths if necessary, etc.
>
> Jim
>
>
>
to restore from a text (sql) file:

1) ensure you have a target database:
- you might need to set your path, i.e. you need to know where psql is
- if you did an rpm / package install it's probably in /usr/bin

# connect to the cluster (database instance):
$ psql

# then create your target database:
postgres# create database my_target_db;

Then exit from psql (exit; or ctl-d)
postgres# exit;

2) import the sql text file

- cd to the directory where the text file is:
$ cd /home/postgres/Downloads

- Import the file
$ psql -ef ./import_file.sql my_target_db

You could also point to the sql file without being in the directory:
$ psql -ef /home/postgres/Downloads/import_file.sql my_target_db

Note the -f is the psql flag to import (or run) a specified sql file
from the command line, the -e flag says to push all SQL statements as
well as normal output to STDOUT

See the psql command docs for more info here:

http://www.postgresql.org/docs/9.2/interactive/app-psql.html

Hope this helps,

/Kevin

--
Sent via pgsql-admin mailing list (pgsql-admin(at)postgresql(dot)org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Tom Lane 2013-01-07 16:01:54 Re: Mapping a Data File Back to a Table
Previous Message CS DBA 2013-01-06 19:48:23 Re: restoring from a dump