Oracle PL/SQL Language Pocket Reference, 2nd Edition by Chip Dawes, Steven Feuerstein, Bill Pribyl The unconfirmed error reports are from readers. They have not yet been approved or disproved by the author or editor and represent solely the opinion of the reader. Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem ?page-number?: reader question or request for clarification This page was updated April 2, 2004. UNCONFIRMED errors and comments from readers: {18} Syntax for a variable declaration; The syntax for declaring a variable is shown as (in part): variable_name datatype [CONSTANT] [NOT NULL] ... This should read variable_name [CONSTANT] datatype [NOT NULL] ... The same error appears in the example of declaring a constant, in the middle of page 18: min_order_qty NUMBER(1) CONSTANT :=5; should read min_order_qty CONSTANT NUMBER(1) :=5;