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
29c18bca
Commit
29c18bca
authored
Mar 18, 2003
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add mention of ANALYZE after object restore.
parent
ccfa6f1c
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
6 deletions
+37
-6
doc/src/sgml/backup.sgml
doc/src/sgml/backup.sgml
+8
-1
doc/src/sgml/ref/pg_dump.sgml
doc/src/sgml/ref/pg_dump.sgml
+12
-1
doc/src/sgml/ref/pg_dumpall.sgml
doc/src/sgml/ref/pg_dumpall.sgml
+10
-3
doc/src/sgml/ref/pg_restore.sgml
doc/src/sgml/ref/pg_restore.sgml
+7
-1
No files found.
doc/src/sgml/backup.sgml
View file @
29c18bca
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/backup.sgml,v 2.2
4 2002/11/11 20:14:02 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/backup.sgml,v 2.2
5 2003/03/18 00:02:11 momjian
Exp $
-->
<chapter id="backup">
<title>Backup and Restore</title>
...
...
@@ -125,6 +125,13 @@ psql <replaceable class="parameter">dbname</replaceable> < <replaceable class
authentication settings.
</para>
<para>
Once restored, it is wise to run <command>ANALYZE</> on each
database so the optimizer has useful statistics. You
can also run <command>vacuumdb -a -z</> to <command>ANALYZE</> all
databases.
</para>
<para>
The ability of <application>pg_dump</> and <application>psql</> to
write to or read from pipes makes it possible to dump a database
...
...
doc/src/sgml/ref/pg_dump.sgml
View file @
29c18bca
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_dump.sgml,v 1.5
6 2003/02/13 04:54:15
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_dump.sgml,v 1.5
7 2003/03/18 00:02:11
momjian Exp $
PostgreSQL documentation
-->
...
...
@@ -650,6 +650,11 @@ CREATE DATABASE foo WITH TEMPLATE template0;
</programlisting>
</para>
<para>
Once restored, it is wise to run <command>ANALYZE</> on each
restored object so the optimizer has useful statistics.
</para>
<para>
<application>pg_dump</application> has a few limitations:
...
...
@@ -682,6 +687,12 @@ CREATE DATABASE foo WITH TEMPLATE template0;
other output formats is not limited, except possibly by the
operating system.
</para>
<para>
Once restored, it is wise to run <command>ANALYZE</> on each
restored object so the optimizer has useful statistics.
</para>
</refsect1>
<refsect1 id="pg-dump-examples">
...
...
doc/src/sgml/ref/pg_dumpall.sgml
View file @
29c18bca
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_dumpall.sgml,v 1.3
6 2003/01/06 18:53:24 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_dumpall.sgml,v 1.3
7 2003/03/18 00:02:11 momjian
Exp $
PostgreSQL documentation
-->
...
...
@@ -258,10 +258,17 @@ PostgreSQL documentation
<application>pg_dumpall</application> will need to connect several
times to the <productname>PostgreSQL</productname> server. If password
authentication is configured, it will ask for a password each time. In
that case it would be convenient to set up a password file.
that case it would be convenient to set up a <filename>.pgpass</>
password file.
</para>
<para>
Once restored, it is wise to run <command>ANALYZE</> on each
database so the optimizer has useful statistics. You
can also run <command>vacuumdb -a -z</> to <command>ANALYZE</> all
databases.
</para>
<comment>But where is that password file documented?</comment>
</refsect1>
...
...
doc/src/sgml/ref/pg_restore.sgml
View file @
29c18bca
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_restore.sgml,v 1.3
5 2003/01/19 00:13:3
1 momjian Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_restore.sgml,v 1.3
6 2003/03/18 00:02:1
1 momjian Exp $ -->
<refentry id="APP-PGRESTORE">
<docinfo>
...
...
@@ -589,6 +589,12 @@ CREATE DATABASE foo WITH TEMPLATE = template0;
See also the <xref linkend="app-pgdump"> documentation for details on
limitations of <application>pg_dump</application>.
</para>
<para>
Once restored, it is wise to run <command>ANALYZE</> on each
restored object so the optimizer has useful statistics.
</para>
</refsect1>
...
...
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