Index: FAQ.html =================================================================== RCS file: /projects/cvsroot/pgsql-server/doc/src/FAQ/FAQ.html,v retrieving revision 1.213 diff -c -r1.213 FAQ.html *** FAQ.html 12 Mar 2004 13:51:57 -0000 1.213 --- FAQ.html 28 Mar 2004 06:20:46 -0000 *************** *** 156,166 ****
PostgreSQL is pronounced Post-Gres-Q-L. The name "Postgres" is ! also used in conversation.
PostgreSQL is an enhancement of the POSTGRES database management ! system, a next-generation DBMS research prototype. While PostgreSQL retains the powerful data model and rich data types of POSTGRES, it replaces the PostQuel query language with an extended subset of SQL. PostgreSQL is free and the --- 156,169 ----
PostgreSQL is pronounced Post-Gres-Q-L. An audio file is ! available at http://www.postgresql.org/postgresql.mp3 for those ! would like to hear the pronunciation. !
PostgreSQL is an enhancement of the POSTGRES database management ! system (and is still sometimes reffered to as simply "Postgres"), ! a next-generation DBMS research prototype. While PostgreSQL retains the powerful data model and rich data types of POSTGRES, it replaces the PostQuel query language with an extended subset of SQL. PostgreSQL is free and the *************** *** 173,179 **** section 1.6 on how to join). This team is now responsible for all development of PostgreSQL. It is a community project and is not controlled by any company. To get involved, see ! the developer's FAQ,http://www.PostgreSQL.org/docs/faqs/FAQ_DEV.html
--- 176,182 ---- section 1.6 on how to join). This team is now responsible for all development of PostgreSQL. It is a community project and is not controlled by any company. To get involved, see ! the developer's FAQ at http://www.PostgreSQL.org/docs/faqs/FAQ_DEV.html *************** *** 197,203 ****PostgreSQL Data Base Management System
!Portions copyright (c) 1996-2002, PostgreSQL Global Development Group Portions Copyright (c) 1994-6 Regents of the University of California
--- 200,206 ----PostgreSQL Data Base Management System
!Portions copyright (c) 1996-2004, PostgreSQL Global Development Group Portions Copyright (c) 1994-6 Regents of the University of California
*************** *** 227,233 ****In general, a modern Unix-compatible platform should be able to run PostgreSQL. The platforms that had received explicit testing at the time of release are listed in the installation instructions.
--- 230,236 ----In general, any modern Unix-compatible platform should be able to run PostgreSQL. The platforms that had received explicit testing at the time of release are listed in the installation instructions.
*************** *** 563,569 **** href="http://sources.redhat.com/rhdb/">http://sources.redhat.com/rhdb/ ) and Rekall ( http://www.thekompany.com/products/rekall/, proprietary). There is ! also PHPPgAdmin ( http://phppgadmin.sourceforge.net/ ), a web-based interface to PostgreSQL. --- 566,572 ---- href="http://sources.redhat.com/rhdb/">http://sources.redhat.com/rhdb/ ) and Rekall ( http://www.thekompany.com/products/rekall/, proprietary). There is ! also PhpPgAdmin ( http://phppgadmin.sourceforge.net/ ), a web-based interface to PostgreSQL. *************** *** 651,657 ****By default, PostgreSQL only allows connections from the local machine using Unix domain sockets. Other machines will not be able ! to connect unless you add the -i flag to postmaster, and enable host-based authentication by modifying the file $PGDATA/pg_hba.conf accordingly. This will allow TCP/IP connections.
--- 654,660 ----By default, PostgreSQL only allows connections from the local machine using Unix domain sockets. Other machines will not be able ! to connect unless you turn on tcpip_sockets in the postgresql.conf and enable host-based authentication by modifying the file $PGDATA/pg_hba.conf accordingly. This will allow TCP/IP connections.
*************** *** 660,666 **** better performance?Certainly, indexes can speed up queries. The ! EXPLAIN command allows you to see how PostgreSQL is interpreting your query, and which indexes are being used.
If you are doing many INSERTs, consider doing --- 663,669 ---- better performance?
Certainly, indexes can speed up queries. The ! EXPLAIN ANALYZE command allows you to see how PostgreSQL is interpreting your query, and which indexes are being used.
If you are doing many INSERTs, consider doing *************** *** 837,848 ****
You can read the source code for psql in file ! pgsql/src/bin/psql/describe.c. It contains ! SQL commands that generate the output for psql's ! backslash commands. You can also start psql with the ! -E option so it will print out the queries it uses to ! execute the commands you give.
Use the \dt command to see tables in psql. For a complete list of ! commands inside psql you can use \?. Alternatively you can read the source ! code for psql in file pgsql/src/bin/psql/describe.c, it ! contains SQL commands that generate the output for ! psql's backslash commands. You can also start psql with the ! -E option so it will print out the queries it uses to execute the ! commands you give. PostgreSQL also provides an SQLi compliant ! INFORMATION SCHEMA interface you can query to get information about the ! database.