Home > Store

PostgreSQL, 2nd Edition

Register your product to gain access to bonus material or receive a coupon.

PostgreSQL, 2nd Edition

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2006
  • Dimensions: 7" x 9"
  • Pages: 1032
  • Edition: 2nd
  • Book
  • ISBN-10: 0-672-32756-2
  • ISBN-13: 978-0-672-32756-8

The second edition of the best-selling PostgreSQL has been updated to completely cover new features and capabilities of the 8.0 version of PostgreSQL. You will be lead through the internals of the powerful PostgreSQL open source database chapter, offering an easy-to-read, code-based approach that makes it easy to understand how each feature is implemented, how to best use each feature, and how to get more performance from database applications. This definitive guide to building, programming and administering the powerful PostgreSQL open-source database system will help you harness one of the most widely used open source, enterprise-level database systems.

Downloads

Downloads

All the example files developed for the book - 7.3 MB -- examples.tgz

Sample Content

Online Sample Chapters

PostgreSQL SQL Syntax and Use

PostgreSQL SQL Syntax and Use

Table of Contents

Introduction.

    PostgreSQL Features

    What Versions Does This Book Cover?

      Who Is This Book For?

    What Topics Does This Book Cover?

    What's New in the Second Edition?

I. GENERAL POSTGRESQL USE.

1. Introduction to PostgreSQL and SQL.

    A Sample Database

    Basic Database Terminology

    Prerequisites

      Installing PostgreSQL Using an RPM

    Connecting to a Database

      A (Very) Simple Query

    Creating Tables

    Viewing Table Descriptions

    Adding New Records to a Table

      Using the INSERT Command

      Using the COPY Command

    Installing the Sample Database

    Retrieving Data from the Sample Database

      SELECT Expression

      SELECT  FROM Table

      SELECT Single-Column FROM Table

      SELECT Column-List FROM Table

      SELECT Expression-List FROM Table

      Selecting Specific Rows

    The CASE Expression

      Formatting Column Results

      Matching Patterns

    Aggregates

      COUNT()

      SUM()

      AVG()

      MIN() and MAX()

      Other Aggregate Functions

      Grouping Results

    Multi-Table Joins

      Join Types

    UPDATE

    DELETE

    A (Very) Short Introduction to Transaction Processing

    Creating New Tables Using CREATE TABLE...AS

    Using VIEW

    Summary

2. Working with Data in PostgreSQL.

    NULL Values

    Character Values

      Syntax for Literal Values

      Supported Operators

    Numeric Values

      Size, Precision, and Range-of-Values

      Syntax for Literal Values

      Supported Operators

    Date/Time Values

      Syntax for Literal Values

      Supported Operators

    Boolean (Logical) Values

      Size and Valid Values

      Syntax for Literal Values

      Supported Operators

    Geometric Data Types

      Syntax for Literal Values

      Sizes and Valid Values

      Supported Operators

    Object IDs (OID)

      Syntax for Literal Values

      Size and Valid Values

      Supported Operators

    BLOBs

      Syntax for Literal Values

      Supported Operators

      Large-Objects

    Network Address Data Types

      MACADDR

      CIDR

      INET

      Syntax for Literal Values

      Supported Operators

    Sequences

    Arrays

    Column Constraints

      NULL/NOT NULL

      UNIQUE

      PRIMARY KEY

      REFERENCES

      CHECK()

    Expression Evaluation and Type Conversion

    Creating Your Own Data Types

      Refining Data Types with CREATE DOMAIN

      Creating and Using Composite Types

    Summary

3. PostgreSQL SQL Syntax and Use.

    PostgreSQL Naming Rules

      The Importance of the COMMENT Command

    Creating, Destroying, and Viewing Databases

      Tablespaces

      Creating New Databases

      Dropping a Database

      Viewing Databases

    Creating New Tables

      Temporary Tables

      Table Constraints

      Dropping Tables

      Inheritance

      ALTER TABLE

    Adding Indexes to a Table

      Tradeoffs

      Creating an Index

      Functional Indexes and Partial Indexes

      Creating Indexes on Array Values

      Indexes and Tablespaces

    Getting Information About Databases and Tables

    Transaction Processing

      Persistence

      Transaction Isolation

      Multi-Versioning and Locking

    Summary

4. Performance.

    How PostgreSQL Organizes Data

      Page Caching

      Summary

    Gathering Performance Information

      Dead Tuples

      Index Performance

    Understanding How PostgreSQL Executes a Query

      EXPLAIN

      Seq Scan

      Index Scan

      Sort

      Unique

      LIMIT

      Aggregate

      Append

      Result

      Nested Loop

      Merge Join

      Hash and Hash Join

      Group

      Subquery Scan and Subplan

      Tid Scan

      Materialize

      Setop (Intersect, Intersect All, Except, Except All)

    Execution Plans Generated by the Planner

    The ARC Buffer Manager

    Table Statistics

    Performance Tips

II. PROGRAMMING WITH POSTGRESQL.

5. Introduction to PostgreSQL Programming.

    Server-Side Programming

      PL/pgSQL

      Other Procedural Languages Supported by PostgreSQL

      Extending PostgreSQL Using External Languages

    Client-Side APIs

    General Structure of Client Applications

      Connection Properties

      LISTEN/NOTIFY

    Choosing an Application Environment

      Server-Side Code

      Client-Side Code

      Mixing Server-Side and Client-Side Code

    Summary

6. Extending PostgreSQL.

    Extending the PostgreSQL Server with Custom Functions

    Returning Multiple Values from an Extension Function

    The PostgreSQL SRF Interface

    Returning Complete Rows from an Extension Function

    Extending the PostgreSQL Server with Custom Data Types

    Internal and External Forms

    Defining a Simple Data Type in PostgreSQL

    Defining the Data Type in C

    Defining the Input and Output Functions in C

    Defining the Input and Output Functions in PostgreSQL

    Defining the Data Type in PostgreSQL

    Indexing Custom Data Types

    Summary

7. PL/pgSQL.

    Installing PL/pgSQL

    Language Structure

      Quoting Embedded Strings

      CREATE FUNCTION

      DROP FUNCTION

    Function Body

      Comments

      Variables

      PL/pgSQL Statement Types

    Cursors

      FETCH

      Parameterized Cursors

      Cursor References

    Triggers

      TRIGGER Return Values

      TRIGGER Function Arguments

    Polymorphic Functions

    PL/pgSQL and Security

    Summary

8. The PostgreSQL C API-libpq.

    Prerequisites

    Client 1-Connecting to the Server

      Compiling the Client

      Identifying the Server

    Client 2-Adding Error Checking

      Viewing Connection Attributes

    Client 3-Simple Processing-PQexec() and PQprint()

      Results Returned by PQexec()

      The Prepare/Execute Model

    Client 4-An Interactive Query Processor

      Processing Multiple Result Sets

      Asynchronous Processing

    Summary

9. A Simpler C API-libpgeasy.

    Prerequisites

    Client 1-Connecting to the Server

    Client 2-Adding Error Checking

    Client 3-Processing Queries

      Working with Binary Cursors

      Byte Ordering and NULL Values

    Client 4-An Interactive Query Processor

    Summary

10. The New PostgreSQL C++ API-libpqxx.

    Prerequisites

    Client 1-Connecting to the Server

      Using pqxx-config to Create a Simple Makefile

      connection Member Functions

    Client 2-Adding Error Checking

      Other Exceptions Thrown by libpqxx

      Handling Informational/Warning Messages with Notice Processor Objects

    Client 3-Processing Queries

      Working with Transactions

      Working with Result Sets

      Working with Large-Objects

      LISTEN/NOTIFY

      set_variable() and get_variable()

    Client 4-Working with transactors

    Summary

11. Embedding SQL Commands in C Programs-ecpg.

    Prerequisites

    Client 1-Connecting to the Server

      The ecpg Preprocessor

      Connection Strings

    Client 2-Adding Error Checking

      The sqlca Structure

    Client 3-Processing SQL Commands

      ecpg Data Types

    Client 4-An Interactive Query Processor

    Summary

12. Using PostgreSQL from an ODBC Client Application.

    ODBC Architecture Overview

      The ODBC Client Application

      The ODBC Driver Manager

      The ODBC Driver

      The ODBC-Compliant Database

      The Data Source

      Setting Up a Data Source on Unix Systems

      Setting Up a Data Source in Windows

      Datasource Connection Properties

    Prerequisites

    Client 1-Connecting to the Server

    Client 2-Adding Error Checking

    Client 3-Processing Queries

    Client 4-An Interactive Query Processor

    Summary

    Resources

13. Using PostgreSQL from a Java Client Application.

    JDBC Architecture Overview

      The JDBC DriverManager

      The JDBC Driver

      The JDBC-Compliant Database

    Prerequisites

    Client 1-Connecting to the Server

      JDBC URLs

    Client 2-Adding Error Checking

      JNDI and the DataSource Class

    Client 3-Processing Queries

      Statement Classes

      Metadata

    Client 4-An Interactive Query Processor

    Summary

14. Using PostgreSQL with Perl.

    DBI Architecture Overview

      The DBI

      The DBD Driver

      The DBI-Compliant Database

    Prerequisites

    Client 1-Connecting to the Server

      DBI URLs

    Client 2-Adding Error Checking

    Client 3-Processing Queries

      The Prepare/Execute Model

      Metadata and Result Set Processing

      Other Statement and Database Handle Attributes

    Client 4-An Interactive Query Processor

    Summary

15. Using PostgreSQL with PHP.

    PHP Architecture Overview

    Prerequisites

    Client 1-Connecting to the Server

    Client 2-Adding Error Checking

    Client 3-Query Processing

      Other Ways to Retrieve Result Set Values

      Metadata Access

    Client 4-An Interactive Query Processor

    Other Features

    Summary

16. Using PostgreSQL with Tcl and Tcl/Tk.

    Prerequisites

    Client 1-Connecting to the Server

      Making the Connection Dialog Reusable

    Client 2-Query Processing

      Result Set Processing

    Client 3-An Interactive Query Processor

    The libpgtcl Large-Object API

    Summary

17. Using PostgreSQL with Python.

    Python/PostgreSQL Interface Architecture

    Prerequisites

    Client 1-Connecting to the Server

    Client 2-Adding Error Checking

    Client 3-Query Processing

    Client 4-An Interactive Command Processor

    Summary

18. Npgsql: The .NET Data Provider.

    Prerequisites

    Preparing Visual Studio

    Understanding the ADO.NET Class Hierarchy

    Creating an Npgsql-enabled VB Project

    Client 1-Connecting to the Server

    Client 2-An Interactive Query Processor

    Client 3-Updating the Database with a DataSet

    Client 4-A More Robust Query Processor

    Client 5-Using a Typed DataSet

      Creating a Typed DataSet

    Summary

19. Other Useful Programming Tools.

    PL/Java-Writing Stored Procedures in Java

      Installing PL/Java

      Writing a Simple PL/Java Function

      Accessing the Database from a PL/Java Function

      Returning Multiple Results from a PL/Java Function

      Writing PL/Java Trigger Functions

      Adding Install/Uninstall Commands to a Jar File

    pgcurl-Web-enabling Your PostgreSQL Server

    pgbash-Writing PostgreSQL-enabled Shell Scripts

III. POSTGRESQL ADMINISTRATION.

20. Introduction to PostgreSQL Administration.

    Security

    User Accounts

    Backup and Restore

    Server Startup and Shutdown

    Running PostgreSQL on a Windows Host

    Tuning

    Installing Updates

    Localization

    Summary

21. PostgreSQL Administration.

    Roadmap (Where's All My Stuff?)

    Installing PostgreSQL

      Unix/Linux

      Windows

    Managing Databases

      Creating a New Cluster

      Creating a New Database

      Routine Maintenance

      Logfile Rotation

    The PostgreSQL BGWRITER Process

    Managing User Accounts

      CREATE USER

      Managing Groups

    Configuring Your PostgreSQL Runtime Environment

      File Locations

      Security-Related Parameters

      Connection-Related Parameters

      Operational Parameters

      Write-Ahead Log Parameters

      Optimizer Parameters

      Debugging/Logging Parameters

      Performance Statistics

      Per-session Parameters

      Miscellaneous Parameters

      Read-only Parameters

    Arranging for PostgreSQL Startup and Shutdown

      Using pg_ctl

      Shutdown Modes

      Configuring PostgreSQL Startup on Unix/Linux Hosts

    Backing Up and Copying Databases

      Using pg_dump

      Using pg_dumpall

      Using pg_restore

    Point-in-time Recovery

    Summary

22. Internationalization and Localization.

    Locale Support

      Enabling Locale Support

      Effects of Locale Support

      PostgreSQL Locale Summary

    Multi-Byte Character Sets

      Encodings Supported by PostgreSQL

      Enabling Multi-Byte Support

      Selecting an Encoding

      Client/Server Translation

    Summary

23. Security.

    Securing the PostgreSQL Data Files

      Securing PostgreSQL Data Files in Windows

    Securing Network Access

      local Connections

      host, hostssl, and hostnossl Connections

      The trust Authentication Method

      The ident Authentication Method

      The password Authentication Method

      The crypt Authentication Method

      The md5 Authentication Method

      The pam Authentication Method

      The krb4 and krb5 Authentication Methods

      The reject Authentication Method

    Securing Tables

    Securing Functions

    Summary

24. Replicating PostgreSQLData with Slony.

    Overview

    Requirements

    Creating a Replication Cluster

    Starting the Replication Daemons

    Creating a Replication Set

    Subscribing to a Replication Set

      Copying Table and Sequence Definitions

      Creating a Subscriber

    Changing the Cluster Topology (Re-mastering and Failover)

    Summary

25. Contributed Modules.

    Exchanging PostgreSQL Data with XML

      XPath Queries

      Converting XML Data with XSLT

    Using Full-text Search

      Searching Multiple Columns

      Simplifying tsearch2 with Customized Functions

      Searching for Phrases

      Configuring tsearch2

Index.

Updates

Errata

Get Adobe Acrobat ReaderNote: You will need the Free Adobe Acrobat Reader to view the file(s) for the book. If you do not already have Acrobat installed on your machine, click the "Get Acrobat Reader" button to download and install.


Click on the links below to display the PDF file in a new window. Right-click on the link and select Save As if you want to download it to your hard drive.

0672327562errata.pdf (49 KB)

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020