SQL Performance Tuning

SQL Performance Tuning

5.0 3
by Peter Gulutzan, Trudy Pelzer
     
 

SQL Performance Tuning is a handbook of practical solutions for busy database professionals charged with managing an organization's critically important data. Covering today's most popular and widely installed database environments, this book is an indispensable resource for managing and tuning SQL across multiple platforms.

Packed with tips,

See more details below

Overview

SQL Performance Tuning is a handbook of practical solutions for busy database professionals charged with managing an organization's critically important data. Covering today's most popular and widely installed database environments, this book is an indispensable resource for managing and tuning SQL across multiple platforms.

Packed with tips, techniques, and best practices, this hands-on guide covers SQL commands and queries over a wide range of conditions and environments. Every facet of the SQL environment is covered, from concurrency control to optimization—and every issue in between. The book includes an overview of each of the most widely used database management systems (DBMS) and provides tuning tips for common day-to-day situations.

Topics covered include:

  • General and specific tuning
  • General sort considerations and options
  • Joins and subqueries
  • Columns and tables
  • Indexes, including B-trees and bitmaps
  • Constraints and stored procedures
  • ODBC and JDBC
  • Data changes and concurrency control (locking)
  • Clients, servers, and middleware
  • Whether you are a programmer, consultant, or user, you will find SQL Performance Tuning an indispensable guide to optimizing SQL performance across today's popular database environments.

    Throughout SQL Performance Tuning , ideas and techniques are tested on a variety of popular SQL environments, including IBM DB2, Informix, Ingres, InterBase, Microsoft SQL Server, MySQL, Oracle, and Sybase ASE. The book's practical examples are written in ANSI/ISO Standard SQL: 1999.

    0201791692B08082002

    Read More

    Product Details

    ISBN-13:
    9780201791693
    Publisher:
    Addison-Wesley
    Publication date:
    09/28/2002
    Pages:
    495
    Sales rank:
    1,286,690
    Product dimensions:
    7.30(w) x 10.88(h) x 1.00(d)

    Table of Contents

    Preface.

    You Don't Know that Your DBMS Is Good….

    You Know that Even Good Tools Work Better in Skilled Hands….

    Acknowledgments.

    1. Facilis Descensus Averni.

    This Subject Is Important.

    The Big Eight.

    Installation Parameters.

    Test Results.

    Portability.

    Terminology and Expectations.

    Conventions.

    Generalities.

    2. Simple Searches.

    General Tuning.

    Code for Points.

    Constant Propagation.

    Dead Code Elimination.

    Ensure You Use the Right DBMS.

    Constant Folding.

    Case-Insensitive Searches.

    Sargability.

    The Bottom Line: General Tuning.

    Specific Tuning.

    AND.

    OR.

    AND Plus OR.

    NOT.

    IN.

    LIKE.

    SIMILAR.

    UNION.

    EXCEPT.

    INTERSECT.

    CASE.

    The Bottom Line: Specific Tuning.

    Style Notes.

    Parting Shots.

    3. ORDER BY.

    General Sort Considerations.

    The ORDER BY Clause.

    To Sort or Not to Sort.

    The Bottom Line: General Sorts.

    Character Sorts.

    Character Sort Support.

    Collations.

    The Bottom Line: Character Sorts.

    Other Options.

    Sort Keys.

    Encouraging Index Use.

    Preordering.

    The Bottom Line: Other Options.

    Parting Shots.

    4. GROUP BY.

    Refresher.

    Optimal GROUP BY Clauses.

    HAVING.

    Alternatives to GROUP BY.

    The Bottom Line: Optimal GROUP BY Clauses.

    Sorting.

    Indexes.

    The Bottom Line: Sorting.

    Set Functions and Summary Aggregates.

    COUNT.

    SUM Trouble.

    Multiple Aggregation Levels.

    Expressions.

    The Bottom Line: Aggregates.

    Parting Shots.

    5. Joins.

    Join Plan Strategies.

    Nested-Loop Joins.

    Sort-Merge Joins.

    Hash Joins.

    Avoid the Join Strategies

    Join Indexes.

    Composite Tables.

    The Bottom Line: Avoiding Joins.

    Three-Way Joins and Beyond.

    Old Style versus ANSI Style.

    Outer Joins.

    Parting Shots.

    6. Subqueries.

    Refresher.

    Join versus Subquery.

    Flattening.

    The Bottom Line: Join versus Subquery.

    Syntax Choices.

    IN.

    DISTINCT.

    EXISTS.

    IN or EXISTS?

    Double INs.

    TOP.

    ALL.

    Set Operations.

    The Bottom Line: Syntax Choices.

    Parting Shots.

    7. Columns.

    How Big Is the Size Factor?

    Fixed or Variable?

    The Bottom Line: The Size Factor.

    Characters.

    Length Specification.

    Variant Character Sets.

    The Bottom Line: Characters.

    Temporals.

    The Bottom Line: Temporals.

    Numbers.

    Integers.

    Floats.

    Decimals.

    Serials.

    The Bottom Line: Numbers.

    Bits.

    The Bottom Line: Bits.

    Large Objects.

    The Bottom Line: LOBs.

    NULLs.

    The Bottom Line: NULLs.

    Column Order Within Rows.

    The Bottom Line: Column Order.

    Parting Shots.

    8. Tables.

    The Storage Hierarchy.

    Pages.

    Extents.

    Files.

    Partitions.

    Tablespaces.

    The Bottom Line: Storage Hierarchy.

    Heaps.

    ROWID.

    Migration.

    Fragmentation.

    Free Page Space.

    The Bottom Line: Heaps.

    Clusters.

    The Bottom Line: Clusters.

    The Normal Forms.

    Breaking Normalization Rules.

    The Bottom Line: Normalization.

    Views.

    Bottom Line: Views.

    Parting Shots.

    9. Indexes.

    Refresher.

    B-trees.

    Searching a B-tree.

    Inserting into a B-tree.

    Deleting from a B-tree.

    Fragmentation.

    Rebuilding a B-tree.

    The Bottom Line: B-trees.

    Types of Indexes.

    Compound Indexes.

    Covering Indexes.

    Unique Indexes.

    Clustered Indexes.

    The Bottom Line: Types of Indexes.

    Bitmap Indexes.

    The Bottom Line: Bitmap Indexes.

    Other Index Variations.

    Index Key Values.

    The Bottom Line: Index Key Values.

    Parting Shots.

    10. Constraints.

    NOT NULL.

    NULL Indicators.

    The Bottom Line: NOT NULL Constraints.

    CHECK.

    The Bottom Line: CHECK Constraints.

    FOREIGN KEY.

    The Bottom Line: FOREIGN KEY Constraints.

    PRIMARY KEY.

    The Bottom Line: PRIMARY KEY Constraints.

    UNIQUE.

    The Bottom Line: UNIQUE Constraints.

    Triggers.

    The Bottom Line: Triggers.

    Disabling Constraints.

    Defer.

    Disable.

    Drop.

    The Bottom Line: Disabling Constraints.

    Client Validations.

    The Bottom Line: Client Validations.

    Redundant SELECT Clauses.

    The Bottom Line: Redundant SELECTs.

    Parting Shots.

    11. Stored Procedures.

    Refresher.

    Determinism.

    Advantages of Stored Procedures.

    Less Traffic.

    Semiprecompilation.

    Parameters.

    Other Tips.

    The Bottom Line: Stored Procedures.

    Parting Shots.

    12. ODBC.

    Refresher.

    Tracing MS Query.

    SQLPrepare.

    The Bottom Line: SQLPrepare.

    Fetch Loops.

    The Bottom Line: Fetch Loops.

    Data-Change Statements.

    The Bottom Line: Data-Change Statements.

    Catalog Functions.

    The Bottom Line: Catalog Functions.

    Parting Shots.

    13. JDBC.

    Connections.

    Connection Pooling.

    Connection Settings.

    Connections and DBMS Info.

    The Bottom Line: Connections.

    Query Prepping.

    Query Statement.

    Query Syntax.

    getBestRowIdentifier.

    ResultSetMetaData.

    Query Settings

    The Bottom Line: Query Prepping.

    Result Sets.

    How Many Rows?

    getXXX methods.

    Close.

    The Bottom Line: Result Sets.

    Data Changes.

    The Bottom Line: Data Changes.

    Parting Shots.

    14. Data Changes.

    Logs.

    The Bottom Line: Logs.

    INSERT.

    Bulk INSERT.

    The Bottom Line: INSERT.

    UPDATE.

    Dependent UPDATE.

    Batch UPDATE.

    The Bottom Line: UPDATE.

    DELETE.

    The Bottom Line: DELETE.

    Ugly Updates.

    The Bottom Line: Ugly Updates.

    FETCH and Data Changes.

    The Bottom Line: FETCH and Data Changes.

    COMMIT and ROLLBACK.

    The Bottom Line: COMMIT and ROLLBACK.

    Parting Shots.

    15. Locks.

    What Is a Lock?

    Lock Modes.

    Granularity.

    Escalation.

    Intent Locks.

    The Bottom Line: Locks.

    Isolation Levels.

    Concurrency Problems and Isolation Levels.

    READ UNCOMMITTED Transactions.

    READ COMMITTED Transactions.

    REPEATABLE READ Transactions.

    SERIALIZABLE Transactions.

    READ ONLY or FOR UPDATE.

    Deadlocks.

    The Bottom Line: Isolation Levels.

    Index Locks.

    The Bottom Line: Index Locks.

    Hot Spots.

    The Bottom Line: Hot Spots.

    Optimistic Locking.

    The Bottom Line: Optimistic Locking.

    The Scan Trick.

    Parting Shots.

    16. Clients and Servers.

    Middleware.

    The Bottom Line: Middleware.

    Server Processes and Threads.

    System Processes/Threads.

    Per-Client Processes/Threads.

    Separateness and Parallelism.

    The Bottom Line: Server Processes and Threads.

    What Should the Client Do?

    Client Model.

    The Bottom Line: Client Tips.

    Parting Shots.

    17. Cost-Based Optimizers.

    Cost.

    Statistics and Histograms.

    Analyzing Statistics.

    EXPLAIN.

    Hints.

    Parting Shots.

    Appendix A. Further Reading.

    Appendix B. Glossary.

    Index. 0201791692T08272002

    Read More

    Customer Reviews

    Average Review:

    Write a Review

    and post it to your social network

         

    Most Helpful Customer Reviews

    See all customer reviews >