Home > Store

Guru's Guide to Transact-SQL, The

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

Guru's Guide to Transact-SQL, The

eBook (Watermarked)

  • Sorry, this book is no longer in print.
  • Includes EPUB and PDF
  • About eBook Formats
  • This eBook includes the following formats, accessible from your Account page after purchase:

    ePub EPUB The open industry format known for its reflowable content and usability on supported mobile devices.

    Adobe Reader PDF The popular standard, used most often with the free Adobe® Reader® software.

    This eBook requires no passwords or activation to read. We customize your eBook by discreetly watermarking it with your name, making it uniquely yours.

Not for Sale

Description

  • Copyright 2000
  • Edition: 1st
  • eBook (Watermarked)
  • ISBN-10: 0-13-265213-7
  • ISBN-13: 978-0-13-265213-1

Since its introduction over a decade ago, the Microsoft SQL Server query language, Transact-SQL, has become increasingly popular and more powerful. The current version sports such advanced features as OLE Automation support, cross-platform querying facilities, and full-text search management.

This book is the consummate guide to Microsoft Transact-SQL. From data type nuances to complex statistical computations to the bevy of undocumented features in the language, The Guru's Guide to Transact-SQL imparts the knowledge you need to become a virtuoso of the language as quickly as possible.

In this book, you will find the information, explanations, and advice you need to master Transact-SQL and develop the best possible Transact-SQL code. Some 600 code examples not only illustrate important concepts and best practices, but also provide working Transact-SQL code that can be incorporated into your own real-world DBMS applications.

Your journey begins with an introduction explaining language fundamentals such as database and table creation, inserting and updating data, queries, joins, data presentation, and managing transactions. Moving on to more advanced topics, the journey continues with in-depth coverage of:

  • Transact-SQL performance tuning using tools such as Query Analyzer and Performance Monitor
  • Nuances of the various T-SQL data types
  • Complex statistical calculations such as medians, modes, and sliding aggregates
  • Run, sequence, and series identification and interrogation
  • Advanced Data Definition Language (DDL) and Data Management Language (DML) techniques
  • Stored procedure and trigger best practices and coding methods
  • Transaction management
  • Optimal cursor use and caveats to look out for
  • Full-text search
  • Hierarchies and arrays
  • Administrative Transact-SQL
  • OLE Automation
  • More than 100 undocumented commands and language features, including numerous unpublished DBCC command verbs, trace flags, stored procedures, and functions

Comprehensive, written in understandable terms, and full of practical information and examples, The Guru's Guide to Transact-SQL is an indispensable reference for anyone working with this database development language. The accompanying CD-ROM includes the complete set of code examples found in the book as well as a SQL programming environment that will speed the development of your own top-notch Transact-SQL code.

Sample Content

Table of Contents



Foreword.


Preface.

About the Sample Databases.

Results Abridged.

On Formality.

Acknowledgments.



1. Introductory Transact-SQL.

Choosing a SQL Editor.

Creating a Database.

Creating Tables.

Inserting Data.

Updating Data.

Deleting Data.

Querying Data.

Column Lists.

SELECTing Variables and Expressions.

Functions.

Converting Data Types.

CASE.

Aggregate Columns.

Filtering Data.

Joins.

Outer Joins.

Other Types of Joins.

Subqueries.

Grouping Data.

HAVING.

Ordering Data.

Column Aliases.

Table Aliases.

Managing Transactions.

Summary.



2. Transact-SQL Data Type Nuances.

Dates.

Y2K and Other Date Problems.

Date Functions.

Dates and Simple Arithmetic.

Determining Time Gaps.

Building Calendars.

Strings.

Concatenation.

Char vs. Varchar.

SET ANSI_PADDING.

String Functions.

CHARINDEX().

SOUNDEX().

A Better SOUNDEX().

DIFFERENCE().

Xp_sprintf.

Xp_sscanf.

Masks.

Executing Strings.

Unicode.

Numerics.

Floating Point Fun.

Division by Zero.

Funny Money.

Formatting Numeric Data.

BLOBs.

Caveats.

Retrieving BLOB Data.

Updating BLOB Data.

BLOB Updates and the Transaction Log.

Bits.

UNIQUEIDENTIFIER.

Cursor Variables.

Timestamps.

Summary.

3. @AHEADS = Missing Values.

NULL and Expressions.

NULL and Functions.

NULL and ANSI SQL.

NULL and Stored Procedures.

NULL If You Must.



4. DDL Insights.

Create Table.

Some Thoughts on Referential Integrity.

Foreign Keys.

ANSI Referential Actions.

The NULL Exception.

Unique Index Requirement.

No Truncate Table.

Default Constraints.

Dropping Objects.

CREATE INDEX.

No Bit or BLOB Indexes.

No Computed Column Indexes.

Pad_Index.

Drop_Existing.

Temporary Objects.

No More Unusable Temporary Objects.

Can't Create Objects in Other Databases.

Temporary Stored Procedures.

Increased Temporary Table Name Length.

Global Temporary Status Tables.

Object Naming and Dependencies.

Changing the Database Context Temporarily.

Temporary Table Indexes.

Be Wary of Unusable Views.

Object Dependencies.

Summary.



5. DML Insights.

Insert.

Default and Null.

Set Identity_Insert.

Insert...Default Values.

Insert...Select.

Insert...Exec.

Extended Procedures.

Insert and Errors.

Using Insert to Remove Duplicate Rows.

Insert and Clustered Indexes.

Bulk Insert.

Bulk Insert and Triggers.

Bulk Insert and Constraints.

Bulk Insert and Identity Columns.

Update.

The Halloween Problem.

Update and Case.

Using Update to Check Constraints.

Limiting the Number of Rows Affected by an Update.

Swapping Column Values with Update.

Update and Cursors.

Delete.

Delete and Cursors.

Truncate Table.

Detecting DML Errors.

Summary.



6. The Mighty Select Statement.

Simple Selects.

Computational and Derived Fields.

Select Top.

Derived Tables.

Joins.

Outer Joins and Join Order.

Predicates.

Between.

Like.

Exists.

Nulls.

Exists and In.

Joins.

Result Set Emptiness.

Exists Outside Where and Having.

In.

Optimizing In.

Any and All.

Subqueries.

Where and Subqueries.

Correlated Subqueries.

Relational Division.

Aggregate Functions.

Group by and Having.

Pivot Tables.

Cube and Rollup.

Having.

Union.

Order by.

Summary.



7. Views.

Restrictions.

DML Restrictions.

ANSI SQL Schema Views.

Getting a View's Source Code.

Updatable View's.

With Check Option.

Derived Tables.

Dynamic View's.

Partitioning Data Using Views.

Summary.



8. Statistical Functions.

The Case for Case.

Efficiency Concerns.

Variance and Standard Deviation.

Medians.

The Identity Column Technique.

The Case Technique.

Vector Medians.

Duplicate Values.

Clipping.

Returning the Top n Rows.

Set Rowcount.

Rankings.

Modes.

Histograms.

Stratified Histograms.

Cumulative and Sliding Aggregates.

Sliding Aggregates.

Extremes.

Determining Extreme Attributes.

Summary.



9. Runs and Sequences.

Sequences.

Time Series Fluctuation.

Sampling Every nth Value.

Regions.

Relative Condition Regions.

Constraining Region Sizes.

Region Boundaries.

Runs.

Regions.

Region Boundaries.

Constrained Regions.

Intervals.

Partitioned Intervals.

Summary.



10. Arrays.

Arrays as Big Strings.

Modifying Array Elements.

Arrays as Tables.

Sorting.

Transposing Dimensions.

Ensuring Array Integrity.

Reshaping the Array.

Comparing Arrays.

Summary.



11. Sets.

Unions.

Differences.

Intersections.

Subsets.

Returning Every nth Row.

Summary.



12. Hierarchies.

Simple Hierarchies.

Multilevel Hierarchies.

Indenting a Hierarchy.

Another Approach.

Listing Leaf Nodes.

Indented Lists.

Summary.



13. Cursors.

On Cursors and Isams.

Types of Cursors.

Forward-Only Cursors.

Dynamic Cursors.

Static Cursors.

Keyset Cursors.

Appropriate Cursor Use.

Dynamic Queries.

Row-Oriented Operations.

Scrollable Forms.

T-SQL Cursor Syntax.

Declare Cursor.

Global vs. Local Cursors.

Open.

Fetch.

Close.

Deallocate.

Configuring Cursors.

Asynchronous Cursors.

ANSI/ISO Automatic Cursor Closing.

Defaulting to Global or Local Cursors.

Updating Cursors.

Cursor Variables.

Cursor Stored Procedures.

Optimizing Cursor Performance.

Summary.



14. Transactions.

Transactions Defined.

The ACID Test.

Atomicity.

Consistency.

Isolation.

Durability.

How SQL Server Transactions Work.

Transactions and Nonlogged Operations.

Transactions and Triggers.

Types of Transactions.

Automatic Transactions.

Implicit Transactions.

User-Defined Transactions.

Distributed Transactions.

Avoiding Transactions Altogether.

Commands That Minimize Logging.

Read-Only and Single-User Databases.

Automatic Transaction Management.

Transaction Isolation Levels.

Read Uncommitted.

Read Committed.

Repeatable Read.

Serializable.

Transaction Commands and Syntax.

Nested Transactions.

Save Tran and Save Points.

Avoid Accidental Rollbacks.

Invalid T-SQL Syntax in Transactions.

Debugging Transactions.

Optimizing Transactional Code.

Summary.



15. Stored Procedures and Triggers.

Stored Procedure Advantages.

Internals.

Creation.

User Execution.

Compilation.

Server Execution.

Creating Stored Procedures.

Creation Tips.

Temporary Procedures.

System Procedures.

Extended Procedures.

Faux Procedures.

Executing Stored Procedures.

Insert and Exec.

Environmental Concerns.

Parameters.

Output Parameters.

Result Codes.

Listing Procedure Parameters.

General Parameter Notes.

Important Automatic Variables.

Flow Control Language.

Errors.

@&commet;Error.

xp_logevent.

Nesting.

Recursion.

Autostart Procedures.

Encryption.

Triggers.

Debugging Procedures.

Summary.



16. Transact-SQL Performance Tuning.

General Performance Guidelines.

Database Design Performance Tips.

Index Performance Tips.

Select Performance Tips.

Insert Performance Tips.

Bulk Copy Performance Tips.

Delete and Update Performance Tips.

Cursor Performance Tips.

Stored Procedure Performance Tips.

Sargs.

Denormalization.

Basic Guidelines.

Basic Techniques.

Contrived Columns.

Redundant Data.

Summary Tables.

Vertical Partitioning.

Horizontal Partitioning.

The Query Optimizer.

The Index Tuning Wizard.

Profiler.

Perfmon.

Summary.



17. Administrative Transact-SQL.

GUI Administration.

System Stored Procedures.

Administrative Transact-SQL Commands.

Administrative Automatic Variables.

Where's the Beef?

Summary.



18. Full-Text Search.

Full-Text Predicates.

Rowset Functions.

Summary.



19. OLE Automation.

sp_exporttable.

sp_importtable.

sp_getsSQLregistry.

Summary.



20. Undocumented T-SQL.

Defining Undocumented.

Undocumented DBCC Commands.

Undocumented Functions and Variables.

Undocumented Trace Flags.

Undocumented Procedures.

Summary.



21. Potpourii.

Obscure Function.

Data Scrubbing.

Iteration Tables.

Summary.



Appendix: Suggested Resources.

Books.

Internet Resources. 0201615762T04062001

Updates

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