Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
5b2ebe95
Commit
5b2ebe95
authored
Jan 13, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wow, it actually worked for the regression database. More testing needed.
parent
f5bbcfb0
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
370 additions
and
356 deletions
+370
-356
doc/src/sgml/ref/pg_upgrade.sgml
doc/src/sgml/ref/pg_upgrade.sgml
+20
-36
src/bin/pg_dump/pg_upgrade
src/bin/pg_dump/pg_upgrade
+350
-320
No files found.
doc/src/sgml/ref/pg_upgrade.sgml
View file @
5b2ebe95
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/Attic/pg_upgrade.sgml,v 1.
19 2002/01/11 20:48:47
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/Attic/pg_upgrade.sgml,v 1.
20 2002/01/13 01:13:59
momjian Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -23,9 +23,10 @@ PostgreSQL documentation
...
@@ -23,9 +23,10 @@ PostgreSQL documentation
<refsynopsisdivinfo>
<refsynopsisdivinfo>
<date>1999-07-31</date>
<date>1999-07-31</date>
</refsynopsisdivinfo>
</refsynopsisdivinfo>
<synopsis>
<cmdsynopsis>
pg_upgrade -s <replaceable class="parameter">filename</replaceable> <replaceable class="parameter">old_data_dir</replaceable>
<command>pg_upgrade</command>
</synopsis>
<group choice="plain"><arg>-1</arg><arg>-2</arg></group>
</cmdsynopsis>
</refsynopsisdiv>
</refsynopsisdiv>
<refsect1 id="R1-APP-PG-UPGRADE-1">
<refsect1 id="R1-APP-PG-UPGRADE-1">
...
@@ -56,31 +57,20 @@ pg_upgrade -s <replaceable class="parameter">filename</replaceable> <replaceable
...
@@ -56,31 +57,20 @@ pg_upgrade -s <replaceable class="parameter">filename</replaceable> <replaceable
<step performance="required">
<step performance="required">
<para>
<para>
Then do:
Copy the program <filename>pgsql/src/bin/pg_dump/pg_upgrade</filename>
<programlisting>
from the current PostgreSQL distribution into somewhere in your path.
$ pg_dumpall -s > schema.out
</programlisting>
to dump out your old database's table definitions without any data.
</para>
</step>
<step performance="required">
<para>
<command>VACUUM</command> your entire database using
<command>vacuumdb -a</command.>
</para>
</para>
</step>
</step>
<step performance="required">
<step performance="required">
<para>
<para>
Stop the old postmaster and all backends.
Change your working directory to the
</para>
pgsql main directory, and type:
</step>
<programlisting>
$ pg_upgrade -1
<step performance="required">
</programlisting>
<para>
to collect information about the old database needed for the
Rename (using mv) your old pgsql <filename>data/</filename> directory to
upgrade.
<filename>data.old/</filename>.
</para>
</para>
</step>
</step>
...
@@ -109,14 +99,15 @@ $ make install
...
@@ -109,14 +99,15 @@ $ make install
<step performance="required">
<step performance="required">
<para>
<para>
Run <application>initdb</application> to create a new template1 database
Run <application>initdb</application> to create a new template1 database
containing the system tables for the new release.
containing the system tables for the new release. Make sure you use
settings similar to those used in your previous version.
</para>
</para>
</step>
</step>
<step performance="required">
<step performance="required">
<para>
<para>
Start the new postmaster. (Note: it is critical that no users connect
Start the new postmaster. (Note: it is critical that no users connect
to the
database
until the upgrade is complete. You may wish to start
to the
server
until the upgrade is complete. You may wish to start
the postmaster without -i and/or alter <filename>pg_hba.conf</filename>
the postmaster without -i and/or alter <filename>pg_hba.conf</filename>
temporarily.)
temporarily.)
</para>
</para>
...
@@ -127,7 +118,7 @@ $ make install
...
@@ -127,7 +118,7 @@ $ make install
Change your working directory to the
Change your working directory to the
pgsql main directory, and type:
pgsql main directory, and type:
<programlisting>
<programlisting>
$ pg_upgrade -
s schema.out data.old
$ pg_upgrade -
2
</programlisting>
</programlisting>
The program will do some checking to make sure everything is properly
The program will do some checking to make sure everything is properly
configured, and will run your db.out script to recreate all the databases
configured, and will run your db.out script to recreate all the databases
...
@@ -149,7 +140,7 @@ $ pg_upgrade -s schema.out data.old
...
@@ -149,7 +140,7 @@ $ pg_upgrade -s schema.out data.old
<step performance="required">
<step performance="required">
<para>
<para>
<emphasis>Carefully</emphasis> examine the contents of the upgraded
<emphasis>Carefully</emphasis> examine the contents of the upgraded
database. If you detect problems, you'll need to recover by restoring
database
s
. If you detect problems, you'll need to recover by restoring
from your full pg_dump backup.
from your full pg_dump backup.
You can delete the <filename>data.old/</filename> directory when you
You can delete the <filename>data.old/</filename> directory when you
are satisfied.
are satisfied.
...
@@ -158,18 +149,11 @@ $ pg_upgrade -s schema.out data.old
...
@@ -158,18 +149,11 @@ $ pg_upgrade -s schema.out data.old
<step performance="required">
<step performance="required">
<para>
<para>
The upgraded database will be in an un-vacuumed state. You will probably
The upgraded database
s
will be in an un-vacuumed state. You will probably
want to run a <command>VACUUM ANALYZE</command> before beginning
want to run a <command>VACUUM ANALYZE</command> before beginning
production work.
production work.
</para>
</para>
</step>
</step>
<note>
<para>
pg_upgrade does not handle custom tables/indexes/sequences in template1.
It does handle other template1 object customizations.
</para>
</note>
</procedure>
</procedure>
</refsect1>
</refsect1>
</refentry>
</refentry>
...
...
src/bin/pg_dump/pg_upgrade
View file @
5b2ebe95
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment