Re: Migration from 7.1.3. to 7.4.7.

From: Chris Browne <cbbrowne(at)acm(dot)org>
To: pgsql-admin(at)postgresql(dot)org
Subject: Re: Migration from 7.1.3. to 7.4.7.
Date: 2005-03-21 19:56:30
Message-ID: 60wts0u61d.fsf@dba2.int.libertyrms.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

smarlowe(at)g2switchworks(dot)com (Scott Marlowe) writes:
> On Wed, 2005-03-16 at 06:07, Dr. Roger Wießner wrote:
>> Can anyone tell me how to successfully migrate from 7.1.3. to 7.4.7.? I get
>> lots of errors...
>
> Try to have both installed at once (separate dirs, or separate machines)
> and dump the 7.1.3 db with the 7.4.7 pg_dump. You might want to do a
> file system backup and an upgrade of 7.1.3 to the last version of 7.1.3.
>
> On rare occasions, an intermediate upgrade to something in between may
> help, but I've not used 7.1 in a VERY long time.

7.1 is _mighty_ old, which gives a pretty considerable chance of there
being data type changes that may break.

I seem to recall doing an upgrade of some databases to 7.2 and
discovering that the date type being used in the "ancient" version
(which might well have been 6.5 or 7.0, even older than 7.1!) not
existing in more modern versions.

We wound up splitting the conversion into two pieces:

- A schema conversion, where the types of fields were updated to
those available in more modern versions. This is where most of
the fiddling took place.

- A data copy, where (if memory serves) we dumped the data as a set of
INSERT statements rather than via COPY 'dumps'.

Careful addition of BEGIN/COMMIT allowed the load to be acceptably
fast, and the use of INSERT avoided differences between COPY
formats...

I'd do some "dry runs" (where you don't expect the results to
necessarily be useful) to see what problems fall out.
--
let name="cbbrowne" and tld="cbbrowne.com" in String.concat "@" [name;tld];;
http://www.ntlug.org/~cbbrowne/linuxxian.html
A VAX is virtually a computer, but not quite.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Steve Crawford 2005-03-21 20:35:22 Re: Excessive growth of pg_attribute and other system tables
Previous Message Tom Lane 2005-03-21 19:40:30 Re: Excessive growth of pg_attribute and other system tables