From: | Michael Davis <mdavis(at)sevainc(dot)com> |
---|---|
To: | "'Tom Lane'" <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | "'pgsql-admin(at)postgresql(dot)org'" <pgsql-admin(at)postgresql(dot)org>, "'pgsql-general(at)postgresql(dot)org'" <pgsql-general(at)postgresql(dot)org> |
Subject: | RE: pg_dump/psql < db.out issue |
Date: | 2001-01-02 21:31:02 |
Message-ID: | 01C074C8.A7836020.mdavis@sevainc.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin pgsql-general |
Thanks for pointing this out. I tested this again and it works great. I
have been trying to make sure I understand how to recreate a database from
the dump files. The error I was seeing must have been caused by something
else. Sorry for the trouble and thanks for the response.
-----Original Message-----
From: Tom Lane [SMTP:tgl(at)sss(dot)pgh(dot)pa(dot)us]
Sent: Tuesday, January 02, 2001 9:45 AM
To: mdavis(at)sevainc(dot)com
Cc: 'pgsql-admin(at)postgresql(dot)org'; 'pgsql-general(at)postgresql(dot)org'
Subject: Re: pg_dump/psql < db.out issue
Michael Davis <mdavis(at)sevainc(dot)com> writes:
> I have several tables with text fields that contain single quotes (').
> Pg_dump exports these tables and the single quotes (') okay. Psql,
> however, will not import the data into the tables because of the single
> quote (') in one of the columns in one of the records.
Huh? That's worked just fine for a long time. What version are you
running?
play=> select * from foo;
f1
----------
I'm here
(1 row)
play=> \q
$ pg_dump -t foo play >quote.sql
$ cat quote.sql
\connect - tgl
CREATE TABLE "foo" (
"f1" text
);
COPY "foo" FROM stdin;
I'm here
\.
$ psql play
Welcome ...
play=> drop table foo;
DROP
play=> \i quote.sql
You are now connected as new user tgl.
CREATE
play=> select * from foo;
f1
----------
I'm here
(1 row)
play=>
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | jmoschet | 2001-01-02 22:55:30 | problem with mkMakefile.tcldefs.sh if USE_TCL=false |
Previous Message | SRINIVASARAGHAVAN, RAJESH (HP-Cupertino, ex1) | 2001-01-02 21:12:01 | programmatic interface into admin |
From | Date | Subject | |
---|---|---|---|
Next Message | Eric Mueller | 2001-01-02 22:47:05 | RE: Re: MySQL and PostgreSQL speed compare |
Previous Message | Alexander Jerusalem | 2001-01-02 21:15:48 | load-balancing and online backup |