Errata


Print Print Icon

Submit your own errata for this product.


The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.


Color Key: Serious Technical Mistake Minor Technical Mistake Language or formatting error Typo Question



Version Location Description Submitted By Corrected
Printed Page xx
the URL to the book's page

http://www.oreilly.com/catalog/plsqldba
should be:
http://www.oreilly.com/catalog/9780596005870/

Anonymous 
Printed Page 78
code segment for show_parts_inventory

The test for the select statement is missing || after parts_table
current text

OPEN dyncur FOR
'SELECT * FROM ' || parts_table
'WHERE ' || where_in;

should be

OPEN dyncur FOR
'SELECT * FROM ' || parts_table ||
' WHERE ' || where_in;

Anonymous