(forw) problem with dumping as restoring

From: Christian Ruediger Bahls <christian(dot)bahls(at)stud(dot)uni-rostock(dot)de>
To: pgsql-hackers(at)postgresql(dot)org
Subject: (forw) problem with dumping as restoring
Date: 2003-09-15 16:55:55
Message-ID: 20030915165555.GA15494@qb352.homeip.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

as suggested by Andreas Pflug <pgadmin(at)pse-consulting(dot)de>
i send this to psql-hackers

----- Forwarded message from Christian Ruediger Bahls <christian(dot)bahls(at)stud(dot)uni-rostock(dot)de> -----
Date: Mon, 15 Sep 2003 18:43:17 +0200
Subject: Re: [BUGS] problem with libpq/encrypted
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>

hello tom ..
.. i am sorry for not replying any earlier
.. i was taken up by our project, which is now finished
(that much work for a 1 week congress)
.. today i took the time to get the top of the 7.3 branch
and recompiled everything ..
.. i can now confirm the top of the 7.3 branch does fix my problem
[2003-08-25 12:24] Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> Please also try 7.3 branch CVS tip to see if it resolves your problem.

while i am at it(i finally have enough time to write elaborate emails)
i ran into some problems while playing with 7.4beta2(from cvs)

i am not able to reload my database after dumping it
.. as fas as i realized that _is_ mandatory for upgrading to 7.4 .. isn't it ?

this problems _is not_ 7.4 specific
.. saving and restoring doesnt even work painless for version 7.3.4

several problems:
* schema definitions are not restored correctly
CREATE SCHEMA AUTHORIZATION person;
will be dumped as:
SET SESSION AUTHORIZATION 'person';
CREATE SCHEMA 'person';
which of course will not work
because person will not have the right to create schemas
* functions are not dumped in the right order
example:
FUNCTION lecture_bookings_intersection_p
requires
FUNCTION lecture_bookings_intersection
but is scheduled to be restored before it
most of the ERRORS in the log are generated by a cascade
(function doesn't get created -> table doesn't -> view doesnt -> access can not be restored)
* views that are in different schemas
but have certain access restrictions
do not get created because of privileges
(VIEW mafing in SCHEMA strauss for example)
[couldn't identify the source of that problem]

if you have any pointer
* something that i could improve in my database design
* some options i forgot to specify on pg_dumps commandline
* a different place where i should ask my question
* some patches that i could try for you

thank you very much in advance
yours christian bahls
maths student

PS: i put all the files in the download directory of our project-server
(please append .gz to get smaller gzipped files)

http://dmv.math.uni-rostock.de/downloads/global.sql -> users definition

http://dmv.math.uni-rostock.de/downloads/database.orig.sql -> original database dump
http://dmv.math.uni-rostock.de/downloads/database.new.sql -> edited databasedump with CREATE SCHEMA AUTHORIZATION
http://dmv.math.uni-rostock.de/downloads/database.orig-new.diff -> the diff between above files

http://dmv.math.uni-rostock.de/downloads/error.new.log -> the original error log
http://dmv.math.uni-rostock.de/downloads/error.orig.log -> the smaller one after the change mentioned above

----- End forwarded message -----

Browse pgsql-hackers by date

  From Date Subject
Next Message Andrew Dunstan 2003-09-15 16:56:54 Re: massive quotes?
Previous Message Tom Lane 2003-09-15 16:05:19 Re: massive quotes?