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
c6e657fa
Commit
c6e657fa
authored
Sep 30, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update for 6.2 release.
parent
6238d836
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
128 additions
and
151 deletions
+128
-151
doc/FAQ
doc/FAQ
+20
-15
doc/TODO
doc/TODO
+108
-136
No files found.
doc/FAQ
View file @
c6e657fa
Frequently Asked Questions (FAQ) for PostgreSQL
Last updated:
Sat Sep 13 22:00:02
EDT 1997
Version: 6.2
beta
Last updated:
Mon Sep 29 22:45:58
EDT 1997
Version: 6.2
Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
...
...
@@ -413,6 +413,10 @@ Section 2: Installation Questions
this parameter too high, the process will not start or crash
unexpectedly. Each buffer is 8K and the defualt is 64 buffers.
You can also use the postmaster -S option to increase the maximum
amount of memory used by each backend process for temporary sorts.
Each buffer is 1K and the defualt is 512 buffers.
2.12) What debugging features are available in PostgreSQL?
PostgreSQL has several features that report status information that
...
...
@@ -434,28 +438,29 @@ Section 2: Installation Questions
This file can contain useful information about problems or errors
encountered by the server. Postmaster has a -d option that allows even
more detailed information to be reported. The -d option takes a number
1-3 that specifies the debug level. The query plans in a verbose debug
file can be formatted using the 'indent' program. Be warned that a
debug level of three generates large log files.
1-3 that specifies the debug level. Be warned that a debug level of 3
generates large log files.
You can actuall run the postgres backend from the command line, and
type your SQL statement directly. This is recommended ONLY for
debugging purposes. Note that a newline terminates the query, not a
semicolon. If you have compiled with debugging symbols, you can
perhaps use a debugger to see what is happening. Because the backen
d
was not started from the postmaster, it is not running in an identical
environment and locking/backend interaction problems may not b
e
duplicated. Some operating system can attach to a running backend
directly to diagnose
problems.
semicolon. If you have compiled with debugging symbols, you can
use a
debugger to see what is happening. Because the backend was not starte
d
from the postmaster, it is not running in an identical environment and
locking/backend interaction problems may not be duplicated. Som
e
operating system can attach to a running backend directly to diagnose
problems.
The postgres program has a -s, -A, -t options that can be very usefull
for debugging and performance measurements.
The EXPLAIN command (see this FAQ) allows you to see how PostgreSQL is
iterpreting your query.
You can also compile with profiling to see what functions are taking
execution time.
execution time. The backend profile files will be deposited in the
pgsql/data/base/dbname directory. The client profile file will be put
in the current directory.
The EXPLAIN command (see this FAQ) allows you to see how PostgreSQL is
interpreting your query.
2.13) How do I enable more than 32 concurrent backends?
...
...
doc/TODO
View file @
c6e657fa
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