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
5530b0c6
Commit
5530b0c6
authored
Aug 22, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve wording of upgrade section.
parent
0f111292
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
38 deletions
+33
-38
doc/FAQ
doc/FAQ
+16
-18
doc/src/FAQ/FAQ.html
doc/src/FAQ/FAQ.html
+17
-20
No files found.
doc/FAQ
View file @
5530b0c6
Frequently Asked Questions (FAQ) for PostgreSQL
Frequently Asked Questions (FAQ) for PostgreSQL
Last updated: T
ue Jul 30 11:05:09
EDT 2002
Last updated: T
hu Aug 22 11:30:58
EDT 2002
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
...
@@ -53,7 +53,8 @@
...
@@ -53,7 +53,8 @@
3.7) What debugging features are available?
3.7) What debugging features are available?
3.8) Why do I get "Sorry, too many clients" when trying to connect?
3.8) Why do I get "Sorry, too many clients" when trying to connect?
3.9) What are the pg_sorttempNNN.NN files in my database directory?
3.9) What are the pg_sorttempNNN.NN files in my database directory?
3.10) Why do I need to do a dump and restore to upgrade PostgreSQL?
3.10) Why do I need to do a dump and restore to upgrade PostgreSQL
releases?
Operational Questions
Operational Questions
...
@@ -602,23 +603,20 @@
...
@@ -602,23 +603,20 @@
a backend crashes during a sort. If you have no backends running at
a backend crashes during a sort. If you have no backends running at
the time, it is safe to delete the pg_tempNNN.NN files.
the time, it is safe to delete the pg_tempNNN.NN files.
3.10) Why do I need to do a dump and restore to upgrade PostgreSQL?
3.10) Why do I need to do a dump and restore to upgrade between major
PostgreSQL releases?
The PostgreSQL team tries very heard to maintain compatability across
The PostgreSQL team makes only small changes between minor releases,
minor releases. So upgrading from 7.2 to 7.2.1 does not require a dump
so upgrading from 7.2 to 7.2.1 does not require a dump and restore.
a restore. However, new features are continuously being adding and
However, major releases often change the internal format of system
sometimes this requires new fields to be added to system tables.
tables and data files. These changes are often complex, so we don't
maintain backward compatability for data files. A dump outputs data in
a generic format that can then be loaded in using the new internal
format.
These changes may be across many tables and so maintaining backward
In releases where the on-disk format does not change, the pg_upgrade
compatability would be quite difficult. Thus, restoring from a dump is
script can be used to upgrade without a dump/restore. The release
required to make everything work.
notes mention whether pg_upgrade is available for the release.
Note that the actual on-disk file format does not change very often, a
feature the pg_upgrade script uses quite successfully. There the dump
is used create the necessary information in the system tables. The
data files are then just copied across. This method is not as
guarenteed as the dump/restore method but when it works it can make
upgrades very efficient.
_________________________________________________________________
_________________________________________________________________
Operational Questions
Operational Questions
...
...
doc/src/FAQ/FAQ.html
View file @
5530b0c6
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
alink=
"#0000ff"
>
alink=
"#0000ff"
>
<H1>
Frequently Asked Questions (FAQ) for PostgreSQL
</H1>
<H1>
Frequently Asked Questions (FAQ) for PostgreSQL
</H1>
<P>
Last updated: T
ue Jul 30 11:05:09
EDT 2002
</P>
<P>
Last updated: T
hu Aug 22 11:30:58
EDT 2002
</P>
<P>
Current maintainer: Bruce Momjian (
<A
href=
<P>
Current maintainer: Bruce Momjian (
<A
href=
"mailto:pgman@candle.pha.pa.us"
>
pgman@candle.pha.pa.us
</A>
)
<BR>
"mailto:pgman@candle.pha.pa.us"
>
pgman@candle.pha.pa.us
</A>
)
<BR>
...
@@ -82,7 +82,7 @@
...
@@ -82,7 +82,7 @@
<A
href=
"#3.9"
>
3.9
</A>
) What are the
<I>
pg_sorttempNNN.NN
</I>
<A
href=
"#3.9"
>
3.9
</A>
) What are the
<I>
pg_sorttempNNN.NN
</I>
files in my database directory?
<BR>
files in my database directory?
<BR>
<A
href=
"#3.10"
>
3.10
</A>
) Why do I need to do a dump and restore
<A
href=
"#3.10"
>
3.10
</A>
) Why do I need to do a dump and restore
to upgrade PostgreSQL?
<BR>
to upgrade PostgreSQL
releases
?
<BR>
<H2
align=
"center"
>
Operational Questions
</H2>
<H2
align=
"center"
>
Operational Questions
</H2>
...
@@ -787,23 +787,20 @@
...
@@ -787,23 +787,20 @@
files.
</P>
files.
</P>
<H4><A
name=
"3.10"
>
3.10
</A>
) Why do I need to do a dump and restore
<H4><A
name=
"3.10"
>
3.10
</A>
) Why do I need to do a dump and restore
to upgrade PostgreSQL?
</H4>
to upgrade between major PostgreSQL releases?
</H4>
<P>
The PostgreSQL team tries very heard to maintain compatability across
<P>
The PostgreSQL team makes only small changes between minor releases,
minor releases. So upgrading from 7.2 to 7.2.1 does not require a dump a
so upgrading from 7.2 to 7.2.1 does not require a dump and restore.
restore. However, new features are continuously being adding and
However, major releases often change the internal format of system
sometimes this requires new fields to be added to system tables.
tables and data files. These changes are often complex, so we don't
maintain backward compatability for data files. A dump outputs data
<P>
These changes may be across many tables and so maintaining backward
in a generic format that can then be loaded in using the new internal
compatability would be quite difficult. Thus, restoring from a dump is
format.
required to make everything work.
<P>
In releases where the on-disk format does not change, the
<P>
Note that the actual on-disk file format does not change very often,
<i>
pg_upgrade
</i>
script can be used to upgrade without a dump/restore.
a feature the pg_upgrade script uses quite successfully. There the dump
The release notes mention whether
<i>
pg_upgrade
</i>
is available for the
is used create the necessary information in the system tables. The data
release.
files are then just copied across. This method is not as guarenteed as
the dump/restore method but when it works it can make upgrades very
efficient.
<HR>
<HR>
...
...
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