Hi Tom,
where can i find the -n option in pg_dump. Is there any special version?
I have 7.3.3.
Regards,
Daniel
-Ursprungliche Nachricht-
Von: Tom Lane [mailto:[EMAIL PROTECTED]
Gesendet: Dienstag, 1. Juli 2003 15:44
An: Curt Sampson
Cc: [EMAIL PROTECTED]
Betreff: Re: [BUGS] pg_dump -t
Hi,
i have following problem:
I created a database with encoding UNICODE
CREATE DATABASE elements
WITH ENCODING = 'UNICODE';
In this db there is a table "tblassets"
CREATE TABLE public.tblassets
(
id serial NOT NULL,
uri text NOT NULL,
CONSTRAINT tblassets_pkey PRIMARY KEY (id)
) WITH