Vous voulez voir cette page en français ? Cliquez ici.


or
Sign in to turn on 1-Click ordering.
More Buying Choices
Have one to sell? Sell yours here
A Guide to SQL Standard
 
See larger image
 

A Guide to SQL Standard [Paperback]

C. J. Date , Hugh Darwen
3.6 out of 5 stars  See all reviews (9 customer reviews)
List Price: CDN$ 49.95
Price: CDN$ 40.71 & this item ships for FREE with Super Saver Shipping. Details
You Save: CDN$ 9.24 (18%)
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
Temporarily out of stock.
Order now and we'll deliver when available. We'll e-mail you with an estimated delivery date as soon as we have more information. Your account will only be charged when we ship the item.
Ships from and sold by Amazon.ca. Gift-wrap available.

Product Details


Product Description

Book Description

The SQL language has established itself as the linqua franca database management; it provides the basis for systems interoperability, application portability, client/server operation, distributed database, and more, and is supported by just about every DBMS on the market today. SQL2 - or, to give it its official name, the International Standard Database language SQL (1992) - represents a major set of extensions to the earlier SQL standard. For a start, the new specification is well over 600 pages, compared with less than 100 for the original version. No database professional can afford to ignore it.
Errata
Known errors in first printing
Date of this list- March 5th, 1997


Page 31, Section 3.3- PAD and SPACE are reserved key words, not nonreserved; MESSAGE_TEXT is an additional nonreserved key word.
Page 112, first paragraph- Replace the last sentence ("Omitting the parenthesized ... within that table.") by the following-
The parenthesized commalist of column names, if included, must not specify the same column twice; omitting that commalist -- the practice is not recommended -- is equivalent to including one that specifies all of the columns of the target table, in their left-to-right order within that table.
Page 113, last paragraph- Insert the following immediately before the sentence "The rows of T ... in the SET clause."-
The assignment-commalist must not include two assignments to the same column.
Page 160- Replace the first block of cp text on this page by the following-

SELECT DISTINCT SP.PNO, ( SELECT MAX ( SPX.QTY )

FROM SP AS SPX

WHERE SPX.PNO = SP.PNO

AND SPX.SNO 'S1' ) AS XXX,

( SELECT MIN ( SPX.QTY )

FROM SP AS SPX

WHERE SPX.PNO = SP.PNO

AND SPX.SNO 'S1' ) AS YYY

FROM SP

WHERE SP.SNO 'S1'
Page 161- Replace the sole block of cp text on this page by the following-

SELECT ZZZ AS PNO, ( SELECT MAX ( QTY )

FROM SP

WHERE PNO = ZZZ

AND SNO 'S1' ) AS XXX,

( SELECT MIN ( QTY )

FROM SP

WHERE PNO = ZZZ

AND SNO 'S1' ) AS YYY

FROM ( SELECT DISTINCT PNO AS ZZZ

FROM SP

WHERE SNO 'S1' ) AS POINTLESS
Page 269, sentence beginnining "Observe" (immediately below first figure)- The final period should be outside the closing parenthesis, not inside it.

ERRATA

The Persistent Stored Modules feature (PSM) was ratified in late 1996. As a consequence, the text of Appendix E requires a number of technical revisions and clarifications (most of them fairly minor in nature). The most significant are summarized below, with an indication of those pages primarily affected.
Passim- PSM parameter and SQL variable names do not include a colon prefix. References to names are resolved according to the sequence column (highest precedence), variable, parameter (lowest precedence).
Pages 465-466- Module definitions do not contain a LANGUAGE specification, routine definitions do. LANGUAGE SQL is the default.
Page 466- The prohibition against recursion described in the footnote is now in dispute.
Pages 467ff- The [NOT] DETERMINISTIC and READS or MODIFIES SQL DATA specifications (see pages 489-490) apply not only to external routines but to SQL routines as well.
Pages 469 and 480- SQL routines cannot contain SQL dynamic statements; server modules cannot contain temporary table, cursor, or dynamic cursor definitions.
Page 471- The situation discussed in the first bullet item (in which a PSM routine invocation appears in a DEFAULT clause) cannot occur.
Pages 481-482- PSM does include the FOR statement.
Page 483- SQL domains cannot be used to specify the data type of SQL variables, nor can statement labels be used as high-level qualifiers on references to such variables.
Page 491- The following are additional key words-

CONDITION_IDENTIFIER, CONTAINS,

PARAMETER_NAME, ROUTINE_CATALOG,

ROUTINE_NAME, ROUTINE_SCHEMA,

SPECIFIC_NAME. Of these, CONTAINS (only) is reserved.

REDO is not a key word.
Page 492- CALL is the only preparable SQL control statement. FOR is transaction-initiating and LEAVE is not; the other statements are "possibly" transaction-initiating.
Page 493- Support for server modules is optional.

From the Inside Flap

Several changes have occurred in the SQL standards world since the previous edition of this book was published. First of all, a major new component, the Call-Level Interface (SQL/CLI), was added to the standard in 1995. Second, another major new component, the Persistent Stored Modules feature (SQL/PSM), is currently under development (and indeed nearing completion); SQL/PSM is not yet part of the standard but is virtually certain to become so in the near future. Third, the original standard itself has been significantly changed and corrected through the publication of two Technical Corrigenda, one in 1994 and one in 1996. Taken together, these changes are more than sufficient to justify this new (fourth) edition. At the same time, I have taken the opportunity to extend and improve the text throughout in numerous ways, and in particular to correct a few errors. It is not an exaggeration to say that scarcely a sentence survives intact from the third edition.

Acknowledgments

Once again I must thank my coauthor Hugh Darwen for his invaluable contribution (especially in connection with the SQL/PSM and SQL3 appendixes). I would also like to thank Paul Cotton and Frank Pellow for their help with the material on SQL/CLI; Peter Pistor for pointing out an error in the treatment of foreign keys in the previous edition; Mike Sykes for assistance with questions regarding SQL's date and time support (especially in connection with time zones); and Mel Zimowski for assistance with questions regarding SQL's "global transaction" support. I am also indebted to Nelson Mattos, Frank Pellow, and Jeff Richey for their careful reviews of the manuscript.

Finally, I am (as always) deeply indebted to my wife, Lindy, for her support throughout this project; to my editor, Elydia Davis, for her usual sterling job; and to the staff at Addison-Wesley for their usual help and professionalism. Once again it has been a pleasure to work with them.

Healdsburg, California
C. J. Date
1996

0201964260P04062001

Tag this product

 (What's this?)
Think of a tag as a keyword or label you consider is strongly related to this product.
Tags will help all customers organize and find favorite items.
Your tags: Add your first tag
 

 

Customer Reviews

9 Reviews
5 star:
 (4)
4 star:
 (1)
3 star:
 (1)
2 star:
 (2)
1 star:
 (1)
 
 
 
 
 
Average Customer Review
3.6 out of 5 stars (9 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most helpful customer reviews

5.0 out of 5 stars SQL For Real Programmers, Sep 28 2003
By 
William G. Ryan "Uber Book Nerd" (Atlanta, GA) - See all my reviews
(REAL NAME)   
This review is from: A Guide to SQL Standard (Paperback)
If you are a newbie looking how to make a Select statement work, this probably isn't for you. On the other hand, if you are experienced and want a book to help you understand how and why many DB's function like they do...buy this
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


1.0 out of 5 stars This book is incomplete, Feb 12 2003
This review is from: A Guide to SQL Standard (Paperback)
The word index at the end of the book is a poor joke, for example words like "TRIGGER" and "PROCEDURE" are missing, but you can find completely useless references to expressions used as identifiers.

Examples given are most trivial, for example I didn't manage to find how to return a recordset from a stored procedure.

Save your money, download free stuff floating around in the net.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2.0 out of 5 stars Rather narrow in scope, and for experts only, Dec 30 2000
This review is from: A Guide to SQL Standard (Paperback)
If you are looking for a book that will take you through the SQL standard, explaining what each part means and how to use each feature, then you need to look elsewhere. If you are an expert SQL user, and interested in some of the intimate detail of the standard, for example the way time and dates work, and why they work the way they do, this may well be the book for you, but it?s still expensive for the number of pages. If you known the basics well already, and want to become a power SQL user, then I?d recommend Joe Celko's SQL for Smarties
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
Want to see more reviews on this item?
 Go to Amazon.com to see all 11 reviews  3.7 out of 5 stars 
 
 
Most recent customer reviews







Only search this product's reviews



Listmania!

Create a Listmania! list

Look for similar items by category


Look for similar items by subject


Feedback


Amazon.ca Privacy Statement Amazon.ca Shipping Information Amazon.ca Returns & Exchanges