Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
9c1d2d66
Commit
9c1d2d66
authored
22 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update changes from Ian Barwick.
parent
44ddef3b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/FAQ
+9
-6
9 additions, 6 deletions
doc/FAQ
doc/src/FAQ/FAQ.html
+11
-9
11 additions, 9 deletions
doc/src/FAQ/FAQ.html
with
20 additions
and
15 deletions
doc/FAQ
+
9
−
6
View file @
9c1d2d66
Frequently Asked Questions (FAQ) for PostgreSQL
Frequently Asked Questions (FAQ) for PostgreSQL
Last updated:
Fri
Feb 1
4
0
9:03:00
EST 2003
Last updated:
Tue
Feb 1
8
0
0:06:42
EST 2003
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
...
@@ -194,7 +194,7 @@
...
@@ -194,7 +194,7 @@
The database server can run on Windows NT and Win2k using Cygwin, the
The database server can run on Windows NT and Win2k using Cygwin, the
Cygnus Unix/NT porting library. See pgsql/doc/FAQ_MSWIN in the
Cygnus Unix/NT porting library. See pgsql/doc/FAQ_MSWIN in the
distribution or the MS Windows FAQ at
distribution or the MS Windows FAQ at
http://www.PostgreSQL.org/docs/faq-mswin.html.
http://www.
ca.
PostgreSQL.org/docs/faq-mswin.html.
A native port to MS Win NT/2000/XP is currently being worked on.
A native port to MS Win NT/2000/XP is currently being worked on.
...
@@ -422,6 +422,9 @@
...
@@ -422,6 +422,9 @@
also PHPPgAdmin ( http://phppgadmin.sourceforge.net/ ), a web-based
also PHPPgAdmin ( http://phppgadmin.sourceforge.net/ ), a web-based
interface to PostgreSQL.
interface to PostgreSQL.
See http://techdocs.postgresql.org/guides/GUITools for a more detailed
list.
2.4) What languages are able to communicate with PostgreSQL?
2.4) What languages are able to communicate with PostgreSQL?
Most popular programming languages contain an interface to PostgreSQL.
Most popular programming languages contain an interface to PostgreSQL.
...
@@ -823,13 +826,13 @@ Type Internal Name Notes
...
@@ -823,13 +826,13 @@ Type Internal Name Notes
VARCHAR(n) varchar size specifies maximum length, no padding
VARCHAR(n) varchar size specifies maximum length, no padding
CHAR(n) bpchar blank padded to the specified fixed length
CHAR(n) bpchar blank padded to the specified fixed length
TEXT text no specific upper limit on length
TEXT text no specific upper limit on length
"char" char one character
BYTEA bytea variable-length byte array (null-byte safe)
BYTEA bytea variable-length byte array (null-byte safe)
"char" char one character
You will see the internal name when examining system catalogs and in
You will see the internal name when examining system catalogs and in
some error messages.
some error messages.
The
la
st four types above are "varlena" types (i.e., the first four
The
fir
st four types above are "varlena" types (i.e., the first four
bytes on disk are the length, followed by the data). Thus the actual
bytes on disk are the length, followed by the data). Thus the actual
space used is slightly greater than the declared size. However, these
space used is slightly greater than the declared size. However, these
data types are also subject to compression or being stored out-of-line
data types are also subject to compression or being stored out-of-line
...
@@ -841,8 +844,8 @@ BYTEA bytea variable-length byte array (null-byte safe)
...
@@ -841,8 +844,8 @@ BYTEA bytea variable-length byte array (null-byte safe)
CHAR(n) is for storing strings that are all the same length. CHAR(n)
CHAR(n) is for storing strings that are all the same length. CHAR(n)
pads with blanks to the specified length, while VARCHAR(n) only stores
pads with blanks to the specified length, while VARCHAR(n) only stores
the characters supplied. BYTEA is for storing binary data,
the characters supplied. BYTEA is for storing binary data,
particularly values that include NULL bytes.
Thes
e types
have similar
particularly values that include NULL bytes.
All th
e types
described
performance characteristics.
here have similar
performance characteristics.
4.15.1) How do I create a serial/auto-incrementing field?
4.15.1) How do I create a serial/auto-incrementing field?
...
...
This diff is collapsed.
Click to expand it.
doc/src/FAQ/FAQ.html
+
11
−
9
View file @
9c1d2d66
...
@@ -10,7 +10,7 @@
...
@@ -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:
Fri
Feb 1
4
0
9:03:00
EST 2003
</P>
<P>
Last updated:
Tue
Feb 1
8
0
0:06:42
EST 2003
</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>
...
@@ -245,8 +245,8 @@
...
@@ -245,8 +245,8 @@
<P>
The database server can run on Windows NT and Win2k using
<P>
The database server can run on Windows NT and Win2k using
Cygwin, the Cygnus Unix/NT porting library. See
Cygwin, the Cygnus Unix/NT porting library. See
<I>
pgsql/doc/FAQ_MSWIN
</I>
in the distribution or the MS Windows FAQ
<I>
pgsql/doc/FAQ_MSWIN
</I>
in the distribution or the MS Windows FAQ
at
<A
href=
"http://www.PostgreSQL.org/docs/faq-mswin.html"
>
at
<A
href=
"http://www.
ca.
PostgreSQL.org/docs/faq-mswin.html"
>
http://www.PostgreSQL.org/docs/faq-mswin.html
</A>
.
</P>
http://www.
ca.
PostgreSQL.org/docs/faq-mswin.html
</A>
.
</P>
<p>
A native port to MS Win NT/2000/XP is currently being worked
<p>
A native port to MS Win NT/2000/XP is currently being worked
on.
</p>
on.
</p>
...
@@ -535,7 +535,7 @@
...
@@ -535,7 +535,7 @@
<H4><A
name=
"2.3"
>
2.3
</A>
) Does PostgreSQL have a graphical user
<H4><A
name=
"2.3"
>
2.3
</A>
) Does PostgreSQL have a graphical user
interface?
</H4>
interface?
</H4>
Yes, there are several graphical interfaces to PostgreSQL available.
<P>
Yes, there are several graphical interfaces to PostgreSQL available.
These include PgAccess
<a
href=
"http://www.pgaccess.org"
>
These include PgAccess
<a
href=
"http://www.pgaccess.org"
>
http://www.pgaccess.org
</a>
), PgAdmin II (
<a
http://www.pgaccess.org
</a>
), PgAdmin II (
<a
href=
"http://www.pgadmin.org"
>
http://www.pgadmin.org
</a>
,
href=
"http://www.pgadmin.org"
>
http://www.pgadmin.org
</a>
,
...
@@ -545,7 +545,9 @@
...
@@ -545,7 +545,9 @@
http://www.thekompany.com/products/rekall/
</a>
, proprietary). There is
http://www.thekompany.com/products/rekall/
</a>
, proprietary). There is
also PHPPgAdmin (
<a
href=
"http://phppgadmin.sourceforge.net/"
>
also PHPPgAdmin (
<a
href=
"http://phppgadmin.sourceforge.net/"
>
http://phppgadmin.sourceforge.net/
</a>
), a web-based interface to
http://phppgadmin.sourceforge.net/
</a>
), a web-based interface to
PostgreSQL.
PostgreSQL.
</P>
<P>
See
<a
href=
"http://techdocs.postgresql.org/guides/GUITools"
>
http://techdocs.postgresql.org/guides/GUITools
</a>
for a more detailed list.
</P>
<H4><A
name=
"2.4"
>
2.4
</A>
) What languages are able to communicate with
<H4><A
name=
"2.4"
>
2.4
</A>
) What languages are able to communicate with
PostgreSQL?
</H4>
PostgreSQL?
</H4>
...
@@ -1037,14 +1039,14 @@ Type Internal Name Notes
...
@@ -1037,14 +1039,14 @@ Type Internal Name Notes
VARCHAR(n) varchar size specifies maximum length, no padding
VARCHAR(n) varchar size specifies maximum length, no padding
CHAR(n) bpchar blank padded to the specified fixed length
CHAR(n) bpchar blank padded to the specified fixed length
TEXT text no specific upper limit on length
TEXT text no specific upper limit on length
"char" char one character
BYTEA bytea variable-length byte array (null-byte safe)
BYTEA bytea variable-length byte array (null-byte safe)
"char" char one character
</PRE>
</PRE>
<P>
You will see the internal name when examining system catalogs
<P>
You will see the internal name when examining system catalogs
and in some error messages.
</P>
and in some error messages.
</P>
<P>
The
la
st four types above are "varlena" types (i.e., the first
<P>
The
fir
st four types above are "varlena" types (i.e., the first
four bytes on disk are the length, followed by the data). Thus the
four bytes on disk are the length, followed by the data). Thus the
actual space used is slightly greater than the declared size.
actual space used is slightly greater than the declared size.
However, these data types are also subject to compression or being
However, these data types are also subject to compression or being
...
@@ -1058,8 +1060,8 @@ BYTEA bytea variable-length byte array (null-byte safe)
...
@@ -1058,8 +1060,8 @@ BYTEA bytea variable-length byte array (null-byte safe)
same length.
<SMALL>
CHAR(n)
</SMALL>
pads with blanks to the specified
same length.
<SMALL>
CHAR(n)
</SMALL>
pads with blanks to the specified
length, while
<SMALL>
VARCHAR(n)
</SMALL>
only stores the characters
length, while
<SMALL>
VARCHAR(n)
</SMALL>
only stores the characters
supplied.
<SMALL>
BYTEA
</SMALL>
is for storing binary data,
supplied.
<SMALL>
BYTEA
</SMALL>
is for storing binary data,
particularly values that include
<SMALL>
NULL
</SMALL>
bytes.
Thes
e
particularly values that include
<SMALL>
NULL
</SMALL>
bytes.
All th
e
types have similar performance characteristics.
</P>
types
described here
have similar performance characteristics.
</P>
<H4><A
name=
"4.15.1"
>
4.15.1
</A>
) How do I create a
<H4><A
name=
"4.15.1"
>
4.15.1
</A>
) How do I create a
serial/auto-incrementing field?
</H4>
serial/auto-incrementing field?
</H4>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment