mirror of
https://github.com/postgres/postgres.git
synced 2025-04-27 22:56:53 +03:00
FAQ updates --- This is a small cosmetic patch that adds pt_BR IRC
channel to the lists of IRC channels, fixes a typo in the OID's question, and corrects the PGCluster's project name. Euler Taveira de Oliveira
This commit is contained in:
parent
1314983fd3
commit
fdbe9facdc
11
doc/FAQ
11
doc/FAQ
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
Frequently Asked Questions (FAQ) for PostgreSQL
|
Frequently Asked Questions (FAQ) for PostgreSQL
|
||||||
|
|
||||||
Last updated: Mon Oct 9 20:28:14 EDT 2006
|
Last updated: Sat Oct 14 19:08:19 EDT 2006
|
||||||
|
|
||||||
Current maintainer: Bruce Momjian (bruce@momjian.us)
|
Current maintainer: Bruce Momjian (bruce@momjian.us)
|
||||||
|
|
||||||
@ -184,8 +184,9 @@
|
|||||||
The major IRC channel is #postgresql on Freenode (irc.freenode.net).
|
The major IRC channel is #postgresql on Freenode (irc.freenode.net).
|
||||||
To connect you can use the Unix program irc -c '#postgresql' "$USER"
|
To connect you can use the Unix program irc -c '#postgresql' "$USER"
|
||||||
irc.freenode.net or use any other IRC clients. A Spanish one also
|
irc.freenode.net or use any other IRC clients. A Spanish one also
|
||||||
exists on the same network, (#postgresql-es), and a French one,
|
exists on the same network, (#postgresql-es), a French one,
|
||||||
(#postgresqlfr). There is also a PostgreSQL channel on EFNet.
|
(#postgresqlfr), and a Brazilian one, (#postgresql-br). There is also
|
||||||
|
a PostgreSQL channel on EFNet.
|
||||||
|
|
||||||
A list of commercial support companies is available at
|
A list of commercial support companies is available at
|
||||||
http://www.postgresql.org/support/professional_support.
|
http://www.postgresql.org/support/professional_support.
|
||||||
@ -732,7 +733,7 @@
|
|||||||
overflow at 4 billion, and then the OIDs start being duplicated.
|
overflow at 4 billion, and then the OIDs start being duplicated.
|
||||||
PostgreSQL uses OIDs to link its internal system tables together.
|
PostgreSQL uses OIDs to link its internal system tables together.
|
||||||
|
|
||||||
To uniquely number columns in user tables, it is best to use SERIAL
|
To uniquely number rows in user tables, it is best to use SERIAL
|
||||||
rather than OIDs because SERIAL sequences are unique only within a
|
rather than OIDs because SERIAL sequences are unique only within a
|
||||||
single table. and are therefore less likely to overflow. SERIAL8 is
|
single table. and are therefore less likely to overflow. SERIAL8 is
|
||||||
available for storing eight-byte sequence values.
|
available for storing eight-byte sequence values.
|
||||||
@ -823,7 +824,7 @@
|
|||||||
Multi-master replication allows read/write queries to be sent to
|
Multi-master replication allows read/write queries to be sent to
|
||||||
multiple replicated computers. This capability also has a severe
|
multiple replicated computers. This capability also has a severe
|
||||||
impact on performance due to the need to synchronize changes between
|
impact on performance due to the need to synchronize changes between
|
||||||
servers. Pgcluster is the most popular such solution freely available
|
servers. PGCluster is the most popular such solution freely available
|
||||||
for PostgreSQL.
|
for PostgreSQL.
|
||||||
|
|
||||||
There are also commercial and hardware-based replication solutions
|
There are also commercial and hardware-based replication solutions
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
alink="#0000ff">
|
alink="#0000ff">
|
||||||
<H1>Frequently Asked Questions (FAQ) for PostgreSQL</H1>
|
<H1>Frequently Asked Questions (FAQ) for PostgreSQL</H1>
|
||||||
|
|
||||||
<P>Last updated: Mon Oct 9 20:28:14 EDT 2006</P>
|
<P>Last updated: Sat Oct 14 19:08:19 EDT 2006</P>
|
||||||
|
|
||||||
<P>Current maintainer: Bruce Momjian (<A href=
|
<P>Current maintainer: Bruce Momjian (<A href=
|
||||||
"mailto:bruce@momjian.us">bruce@momjian.us</A>)
|
"mailto:bruce@momjian.us">bruce@momjian.us</A>)
|
||||||
@ -236,8 +236,9 @@
|
|||||||
(<I>irc.freenode.net</I>). To connect you can use the Unix
|
(<I>irc.freenode.net</I>). To connect you can use the Unix
|
||||||
program <CODE>irc -c '#postgresql' "$USER" irc.freenode.net</CODE>
|
program <CODE>irc -c '#postgresql' "$USER" irc.freenode.net</CODE>
|
||||||
or use any other IRC clients. A Spanish one also exists
|
or use any other IRC clients. A Spanish one also exists
|
||||||
on the same network, (<I>#postgresql-es</I>), and a French one,
|
on the same network, (<I>#postgresql-es</I>), a French one,
|
||||||
(<I>#postgresqlfr</I>). There is also a PostgreSQL channel on EFNet.</P>
|
(<I>#postgresqlfr</I>), and a Brazilian one, (<I>#postgresql-br</I>).
|
||||||
|
There is also a PostgreSQL channel on EFNet.</P>
|
||||||
|
|
||||||
<P>A list of commercial support companies is available at <A href=
|
<P>A list of commercial support companies is available at <A href=
|
||||||
"http://www.postgresql.org/support/professional_support">
|
"http://www.postgresql.org/support/professional_support">
|
||||||
@ -963,7 +964,7 @@ length</TD></TR>
|
|||||||
being duplicated. PostgreSQL uses <SMALL>OID</SMALL>s to link its
|
being duplicated. PostgreSQL uses <SMALL>OID</SMALL>s to link its
|
||||||
internal system tables together.</P>
|
internal system tables together.</P>
|
||||||
|
|
||||||
<P>To uniquely number columns in user tables, it is best to use
|
<P>To uniquely number rows in user tables, it is best to use
|
||||||
<SMALL>SERIAL</SMALL> rather than O<SMALL>ID</SMALL>s because
|
<SMALL>SERIAL</SMALL> rather than O<SMALL>ID</SMALL>s because
|
||||||
<SMALL>SERIAL</SMALL> sequences are unique only within a single
|
<SMALL>SERIAL</SMALL> sequences are unique only within a single
|
||||||
table. and are therefore less likely to overflow.
|
table. and are therefore less likely to overflow.
|
||||||
@ -1077,7 +1078,7 @@ length</TD></TR>
|
|||||||
<P>Multi-master replication allows read/write queries to be sent to
|
<P>Multi-master replication allows read/write queries to be sent to
|
||||||
multiple replicated computers. This capability also has a severe impact
|
multiple replicated computers. This capability also has a severe impact
|
||||||
on performance due to the need to synchronize changes between servers.
|
on performance due to the need to synchronize changes between servers.
|
||||||
<A href="http://pgfoundry.org/projects/pgcluster/">Pgcluster</a> is the
|
<A href="http://pgfoundry.org/projects/pgcluster/">PGCluster</a> is the
|
||||||
most popular such solution freely available for PostgreSQL.</P>
|
most popular such solution freely available for PostgreSQL.</P>
|
||||||
|
|
||||||
<P>There are also commercial and hardware-based replication solutions
|
<P>There are also commercial and hardware-based replication solutions
|
||||||
|
Loading…
x
Reference in New Issue
Block a user