SQL Server 2012 Query. Performance Tuning. Grant Fritchey. Apress*

Size: px
Start display at page:

Download "SQL Server 2012 Query. Performance Tuning. Grant Fritchey. Apress*"

Transcription

1 SQL Server 2012 Query Performance Tuning Grant Fritchey Apress*

2 Contents J About the Author About the Technical Reviewer Acknowledgments Introduction xxiii xxv xxvii xxix Chapter 1: SQL Query Performance Tuning 1 The Performance Tuning Process 2 The Core Process 2 Iterating the Process 4 Performance vs. Price 5 Performance Targets 5 "Good Enough" Tuning 8 Performance Baseline 8 Where to Focus Efforts 9 SQL Server Performance Killers 10 Poor Indexing 11 Inaccurate Statistics 11 Poor Query Design 11 Poor Execution Plans 12 Excessive Blocking and Deadlocks 12 Non-Set-Based Operations 12 Poor Database Design 12 Excessive Fragmentation 13

3 Nonreusable Execution Plans 13 Frequent Recompilation of Queries 13 Improper Use of Cursors 14 Improper Configuration of the Database Log 14 Excessive Use or Improper Configuration of tempdb 14 Summary 14 Chapter 2: System Performance Analysis...15 Performance Monitor Tool 15 Dynamic Management Objects 17 Hardware Resource Bottlenecks 18 Identifying Bottlenecks 18 Bottleneck Resolution 19 Memory Bottleneck Analysis 19 SQL Server Memory Management 19 Available Bytes 23 Pages/sec and Page Faults/sec 23 Paging File %Usage and Page File %Usage 23 Buffer Cache Hit Ratio 24 Page Life Expectancy 24 Checkpoint Pages/sec 24 Lazy writes/sec 24 Memory Grants Pending 25 Target Server Memory (KB) and Total Server Memory (KB) 25 Additional Memory Monitoring Tools 25 DBCC Memorystatus 25 Dynamic Management Objects 26 Memory Bottleneck Resolutions 27 Optimizing Application Workload 27 Allocating More Memory to SQL Server 29 Increasing System Memory 29 tri

4 Changing from a 32-bit to a 64-bit Processor 29 Data Compression 29 Enabling 3GB of Process Address Space 29 Disk Bottleneck Analysis 30 Disk Counters 30 % Disk Time 31 Current Disk Queue Length 31 Disk Transfers/sec 31 Disk Bytes/sec 32 Avg. Disk Sec/Read and Avg. Disk Sec/Write 32 Additional I/O Monitoring Tools 32 Sys.dm_io_virtuaLfile_stats 32 Sys.dm_os_wait_stats 33 Disk Bottleneck Resolutions 33 Optimizing Application Workload 33 Using a Faster I/O Path 34 Using a RAID Array 34 RaidO 34 Raid 1 35 Raid 5 35 Raid 6 35 RAID 1+0 (RAID 10) 36 Using a SAN System 36 Using SSD Disks 36 Aligning Disks Properly 36 Adding System Memory 37 Creating Multiple Files and Filegroups 37 Placing the Table and Index on Separate Disks 39 Moving the Log Files to a Separate Physical Disk 40 Partitioning Tables 40 vii

5 y. CONTENTS Processor Bottleneck Analysis 40 % Processor Time 41 % Privileged Time 41 Processor Queue Length 42 Context Switches/sec 42 Batch Requests/sec 42 SQL Compilations/sec 42 SQL Recompilations/sec 42 Other Tools for Measuring CPU Performance 43 Sys.dm_os_wait_stats 43 Sys.dm_os_workers and Sys.dm_os_schedulers 43 Processor Bottleneck Resolutions 43 Optimizing Application Workload 43 Eliminating Excessive Compiles/Recompiles 44 Using More or Faster Processors 44 Using a Large L2/L3 Cache 44 Running More Efficient Controllers/Drivers 44 Not Running Unnecessary Software 45 Network Bottleneck Analysis 45 Bytes Total/sec 45 % Net Utilization 45 Network Bottleneck Resolutions 46 Optimizing Application Workload 46 SQL Server Overall Performance 46 Missing Indexes 47 Database Blocking 48 Nonreusable Execution Plans 49 General Behavior 49 User Connections 49 Batch requests/sec 50 viii

6 Considerations for Monitoring Virtual Machines 50 Creating a Baseline 50 Creating a Reusable List of Performance Counters 51 Creating a Counter Log Using the List of Performance Counters 52 Performance Monitor Considerations 54 System Behavior Analysis Against Baseline 55 Summary 57 Chapter 3: SQL Query Performance Analysis 59 Extended Events Wizard 59 Extended Events Sessions 60 Events 61 Global Fields 64 Event Filters 66 Datastorage 66 Finishing the Wizard and Starting the Session 68 Extended Events Automation 70 Creating a Session Script Using the GUI 70 Defining a Session Using Stored Procedures 71 Extended Events Recommendations 72 Set Max File Size Appropriately 72 Avoid Debug Events 72 Partition Memory in the Sessions 72 Avoid Use of No_Event_Loss 73 Other Methods for Query Performance Metrics 73 Costly Queries 74 Identifying Costly Queries 75 Costly Queries with a Single Execution 75 Costly Queries with Multiple Executions 76 Identifying Slow-Running Queries 78 ix

7 Execution Plans 79 Analyzing a Query Execution Plan 81 Identifying the Costly Steps in an Execution Plan 83 Analyzing Index Effectiveness 85 Analyzing Join Effectiveness 86 Hash Join 87 Actual vs. Estimated Execution Plans 90 Plan Cache 92 Query Cost 93 Client Statistics 93 Execution Time 94 Statistics lo 95 Summary 97 Chapter 4: Index Analysis 99 What Is an Index? 99 The Benefit of Indexes 101 Index Overhead 103 Index Design Recommendations 105 Examine the WHERE Clause and JOIN Criteria Columns 105 Use Narrow Indexes 107 Examine Column Uniqueness 109 Examine the Column Data Type 112 Consider Column Order 112 Consider the Type of Index 115 Clustered Indexes 115 Heap Tables 115 Relationship with Nonclustered Indexes 116 Clustered Index Recommendations 118 When to Use a Clustered Index 120 Poor Design Practices for a Clustered Index 121 x

8 Nonclustered Indexes 122 Nonclustered Index Maintenance 123 Defining the Bookmark Lookup 123 Nonclustered Index Recommendations 123 Clustered vs. Nonclustered Indexes 124 Benefits of a Clustered Index over a Nonclustered Index 124 Benefits of a Nonclustered Index over a Clustered Index 126 Advanced Indexing Techniques 128 Covering Indexes 128 A Pseudoclustered Index 130 Recommendations 130 Index Intersections 130 Index Joins 132 Filtered Indexes 134 Indexed Views 136 Index Compression 141 ColumnStore Indexes 142 Special Index Types 144 Full-Text 144 Spatial 145 XML 145 Additional Characteristics of Indexes 145 Different Column Sort Order 145 Index on Computed Columns 146 Index on BIT Data Type Columns 146 CREATE INDEX Statement Processed As a Query 146 Parallel Index Creation 146 Online Index Creation 147 Considering the Database Engine Tuning Advisor 147 Summary 147

9 HCONTENTS Chapter 5: Database Engine Tuning Advisor 149 Database Engine Tuning Advisor Mechanisms 149 Database Engine Tuning Advisor Examples 154 Tuning a Query 154 Tuning a Trace Workload 158 Tuning from the Procedure Cache 161 Database Engine Tuning Advisor Limitations 161 Summary 162 Chapter 6: Lookup Analysis 163 Purpose of Lookups 163 Drawbacks of Lookups 165 Analyzing the Cause of a Lookup 166 Resolving Lookups 168 Using a Clustered Index 168 Using a Covering Index 168 Using an Index Join 172 Summary 174 Chapter 7: Statistics Analysis 175 The Role of Statistics in Query Optimization 175 Statistics on an Indexed Column 176 Benefits of Updated Statistics 176 Drawbacks of Outdated Statistics 179 Statistics on a Nonindexed Column 181 Benefits of Statistics on a Nonindexed Column 181 Drawback of Missing Statistics on a Nonindexed Column 186 Analyzing Statistics 188 Density 190 Statistics on a Multicolumn Index 191 Statistics on a Filtered Index 192 xii

10 Statistics Maintenance 193 Automatic Maintenance 194 Auto Create Statistics 194 Auto Update Statistics 195 Auto Update Statistics Asynchronously 195 Manual Maintenance 196 Manage Statistics Settings 197 Generate Statistics 198 Statistics Maintenance Status 199 Status of Auto Create Statistics 199 Status of Auto Update Statistics 200 Analyzing the Effectiveness of Statistics for a Query 200 Resolving a Missing Statistics Issue 200 Resolving an Outdated Statistics Issue 202 Recommendations 205 Backward Compatibility of Statistics 205 Auto Create Statistics 206 Auto Update Statistics 206 Automatic Update Statistics Asynchronously 206 Amount of Sampling to Collect Statistics 207 Summary 208 Chapter 8: Fragmentation Analysis 211 Causes of Fragmentation 211 Page Split by an UPDATE Statement 213 Page Split by an INSERT Statement 217 Fragmentation Overhead 218 Analyzing the Amount of Fragmentation 221 Analyzing the Fragmentation of a Small Table 223 xiii

11 Fragmentation Resolutions 225 Dropping and Re-creating the Index 225 Re-creating the Index with the DROP_EXISTING Clause 226 Executing the ALTER INDEX REBUILD Statement 227 Executing the ALTER INDEX REORGANIZE Statement 229 Significance of the Fill Factor 230 Automatic Maintenance 233 Summary 239 Chapter 9: Execution Plan Cache Analysis 241 Execution Plan Generation 241 Parser 243 Binding 243 Optimization 244 Execution Plan Caching 251 Components of the Execution Plan 251 Query Plan Execution Context Aging of the Execution Plan 251 Analyzing the Execution Plan Cache 252 Execution Plan Reuse 253 Ad Hoc Workload 254 Prepared Workload 254 Plan Reusability of an Ad Hoc Workload 255 Plan Reusability of a Prepared Workload 262 Parameter Sniffing 270 Query Plan Hash and Query Hash 273 Execution Plan Cache Recommendations 276 Explicitly Parameterize Variable Parts of a Query 277 Create Stored Procedures to Implement Business Functionality 277 xiv

12 Code with sp_executesql to Avoid Stored Procedure Maintenance 277 Implement the Prepare/Execute Model to Avoid Resending a Query String 277 Avoid Ad Hoc Queries 278 Prefer sp_executesql over EXECUTE for Dynamic Queries 278 Parameterize Variable Parts of Queries with Care 279 Do Not Allow Implicit Resolution of Objects in Queries 279 Summary 279 Chapter 10: Query Recompilation 281 Benefits and Drawbacks of Recompilation 281 Identifying the Statement Causing Recompilation 284 Analyzing Causes of Recompilation 285 Schema or Bindings Changes 287 Statistics Changes 287 Deferred Object Resolution 289 SET Options Changes 293 Execution Plan Aging 294 Explicit Call to sp_recompile 294 Explicit Use of RECOMPILE 295 Avoiding Recompilations 297 Don't Interleave DDL and DML Statements 297 Avoiding Recompilations Caused by Statistics Change 299 Using the KEEPFIXED PLAN Option 299 Disable Auto Update Statistics on the Table 301 Using Table Variables 301 Avoiding Changing SET Options Within a Stored Procedure 304 Using OPTIMIZE FOR Query Hint 305 Using Plan Guides 307 Summary 311 XV

13 Chapter 11: Query Design Analysis Query Design Recommendations 313 Operating on Small Result Sets 314 Limit the Number of Columns in selectjist 314 Use Highly Selective WHERE Clauses 315 Using Indexes Effectively 315 Avoid Nonsargable Search Conditions 316 BETWEEN vs. IN/OR 316 Avoid Arithmetic Operators on the WHERE Clause Column 319 Avoid Functions on the WHERE Clause Column 320 Avoiding Optimizer Hints 323 JOIN Hint 323 INDEX Hints 327 Using Domain and Referential Integrity 327 NOT NULL Constraint 328 Declarative Referential Integrity 331 Avoiding Resource-Intensive Queries 333 Avoid Data Type Conversion 333 Use EXISTS over C0UNT(*) to Verify Data Existence 335 Use UNION ALL Instead of UNION 336 Use Indexes foraggregate and Sort Conditions 337 Avoid Local Variables in a Batch Query 338 Be Careful When Naming Stored Procedures 341 Reducing the Number of Network Round-Trips 343 Execute Multiple Queries Together 343 Use SETN0C0UNT 343 Reducing the Transaction Cost 344 Reduce Logging Overhead 344 Reduce Lock Overhead 345 Summary 347 xvi

14 Chapter 12: Blocking Analysis 349 Blocking Fundamentals 349 Understanding Blocking 350 Atomicity 350 Consistency 353 Isolation 353 Durability 354 Locks 354 Lock Granularity 355 Row-Level Lock 355 Page-Level Lock 357 Extent-Level Lock 358 Heap or B-tree Lock 358 Table-Level Lock 358 Database-Level Lock 359 Lock Operations and Modes 359 Lock Escalation 359 Lock Modes 359 Exclusive (X) Mode 364 Intent Shared (IS), Intent Exclusive (IX), and Shared with Intent Exclusive (SIX) Modes 364 Schema Modification (Sch-M) and Schema Stability (Sch-S) Modes 365 Bulk Update (BU) Mode 365 Key-range Mode 365 Lock Compatibility 366 Isolation Levels 366 Read Uncommitted 366 Read Committed 367 Repeatable Read 368 Serializable 371 Snapshot 376 xvii

15 Effect of Indexes on Locking 376 Effect of a Nonclustered Index 377 Effect of a Clustered Index 379 Effect of Indexes on the Serializable Isolation Level 380 Capturing Blocking Information 380 Capturing Blocking Information with SQL 381 Extended Events and the blocked_process_report Event 383 Blocking Resolutions 385 Optimize the Queries 386 Decrease the Isolation Level 386 Partition the Contended Data 387 Recommendations to Reduce Blocking 388 Automation to Detect and Collect Blocking Information 389 Summary 392 Chapter 13: Deadlock Analysis 393 Deadlock Fundamentals 393 Choosing the Deadlock Victim 394 Using Error Handling to Catch a Deadlock 394 Deadlock Analysis 395 Collecting Deadlock Information 395 Analyzing the Deadlock 398 Avoiding Deadlocks 403 Accessing Resources in the Same Physical Order 403 Decreasing the Number of Resources Accessed 404 Convert a Nonclustered Index to a Clustered Index 404 Use a Covering Index for a SELECT Statement 404 Minimizing Lock Contention 404 Summary 406 xviii

16 Chapter 14: Cursor Cost Analysis 407 Cursor Fundamentals 407 Cursor Location 409 Cursor Concurrency 410 Cursor Types 411 Cursor Cost Comparison 414 Cost Comparison on Cursor Location 414 Cost Comparison on Cursor Concurrency 416 Read-Only 416 Cost Comparison on Cursor Type 417 Default Result Set 419 Benefits 420 Multiple Active Result Sets 420 Drawbacks 421 Cursor Overhead 423 Analyzing Overhead with T-SQL Cursors 423 Cursor Recommendations 427 Summary 428 Chapter 15: Database Performance Testing 429 Database Performance Testing 429 A Repeatable Process 430 Distributed Replay 430 Capturing Data with the Server Side Trace 431 Distributed Replay for Database Testing 434 Configuring the Client 435 Running the Distributed Tests 436 Conclusion 436 xix

17 Chapter 16: Database Workload Optimization Workload Optimization Fundamentals 437 Workload Optimization Steps 438 Sample Workload 439 Capturing the Workload 441 Analyzing the Workload 442 Identifying the Costliest Query 444 Determining the Baseline Resource Use of the Costliest Query 445 Overall Resource Use 445 Detailed Resource Use 446 Analyzing and Optimizing External Factors 448 Analyzing the Connection Options Used by the Application 449 Analyzing the Effectiveness of Statistics 449 Analyzing the Need for Defragmentation 450 Analyzing the Internal Behavior of the Costliest Query 453 Analyzing the Query Execution Plan 454 Identifying the Costly Steps in the Execution Plan 456 Analyzing the Processing Strategy 456 Optimizing the Costliest Query 457 Modifying an Existing Index 457 Analyzing the Application of a Join Hint 459 Avoiding the Clustered Index Scan Operation 461 Modifying the Procedure 462 Analyzing the Effect on Database Workload 464 Iterating Through Optimization Phases 466 Summary 468 XX

18 : CONTENTS Chapter 17: SQL Server Optimization Checklist 469 Database Design 469 Balancing Under- and Ovemormalization 470 Benefiting from Entity-Integrity Constraints 471 Benefiting from Domain and Referential Integrity Constraints 472 Adopting Index-Design Best Practices 474 Avoiding the Use of the sp_ Prefix for Stored Procedure Names 476 Minimizing the Use of Triggers 476 Query Design 476 Use the Command SET NOCOUNT ON 476 Explicitly Define the Owner of an Object 477 Avoid Nonsargable Search Conditions 477 Avoid Arithmetic Expressions on the WHERE Clause Column 477 Avoid Optimizer Hints 478 StayAway from Nesting Views 478 Ensure No Implicit Data Type Conversions 479 Minimize Logging Overhead 479 Adopt Best Practices for Reusing Execution Plans 479 Adopt Best Practices for Database Transactions 480 Eliminate or Reduce the Overhead of Database Cursors 481 Configuration Settings 481 Affinity Mask 481 Memory Configuration Options 482 Cost Threshold for Parallelism 482 Max Degree of Parallelism 482 Optimize for Ad Hoc Workloads 482 Query Governor Cost Limit 482 Fill Factor (%) 482 Blocked Process Threshold 483 xxi

19 Database File Layout 483 Database Compression 483 Database Administration 483 Keep the Statistics Up-to-Date 484 Maintain a Minimum Amount of Index Defrag mentation 484 Cycle the SQL Error Log File 485 Avoid Database Functions Such As AUTO_CLOSE or AUTO_SHRINK 485 Database Backup 485 Incremental and Transaction Log Backup Frequency 485 Backup Distribution 486 Backup Compression 486 Summary 487 Index. 489 xxii

Query Performance Tuning: Start to Finish. Grant Fritchey

Query Performance Tuning: Start to Finish. Grant Fritchey Query Performance Tuning: Start to Finish Grant Fritchey Who? Product Evangelist for Red Gate Software Microsoft SQL Server MVP PASS Chapter President Author: SQL Server Execution Plans SQL Server 2008

More information

SQL Server 2012 Optimization, Performance Tuning and Troubleshooting

SQL Server 2012 Optimization, Performance Tuning and Troubleshooting 1 SQL Server 2012 Optimization, Performance Tuning and Troubleshooting 5 Days (SQ-OPT2012-301-EN) Description During this five-day intensive course, students will learn the internal architecture of SQL

More information

Introduction. Part I: Finding Bottlenecks when Something s Wrong. Chapter 1: Performance Tuning 3

Introduction. Part I: Finding Bottlenecks when Something s Wrong. Chapter 1: Performance Tuning 3 Wort ftoc.tex V3-12/17/2007 2:00pm Page ix Introduction xix Part I: Finding Bottlenecks when Something s Wrong Chapter 1: Performance Tuning 3 Art or Science? 3 The Science of Performance Tuning 4 The

More information

MS SQL Performance (Tuning) Best Practices:

MS SQL Performance (Tuning) Best Practices: MS SQL Performance (Tuning) Best Practices: 1. Don t share the SQL server hardware with other services If other workloads are running on the same server where SQL Server is running, memory and other hardware

More information

W I S E. SQL Server 2008/2008 R2 Advanced DBA Performance & WISE LTD.

W I S E. SQL Server 2008/2008 R2 Advanced DBA Performance & WISE LTD. SQL Server 2008/2008 R2 Advanced DBA Performance & Tuning COURSE CODE: COURSE TITLE: AUDIENCE: SQSDPT SQL Server 2008/2008 R2 Advanced DBA Performance & Tuning SQL Server DBAs, capacity planners and system

More information

Server 2008 SQL. Administration in Action ROD COLLEDGE MANNING. Greenwich. (74 w. long.)

Server 2008 SQL. Administration in Action ROD COLLEDGE MANNING. Greenwich. (74 w. long.) SQL Server 2008 Administration in Action ROD COLLEDGE 11 MANNING Greenwich (74 w. long.) contents foreword xiv preface xvii acknowledgments xix about this book xx about the cover illustration about the

More information

SQL Server 2008 Designing, Optimizing, and Maintaining a Database Session 1

SQL Server 2008 Designing, Optimizing, and Maintaining a Database Session 1 SQL Server 2008 Designing, Optimizing, and Maintaining a Database Course The SQL Server 2008 Designing, Optimizing, and Maintaining a Database course will help you prepare for 70-450 exam from Microsoft.

More information

Solving Performance Problems In SQL Server by Michal Tinthofer

Solving Performance Problems In SQL Server by Michal Tinthofer Solving Performance Problems In SQL Server by Michal Tinthofer Michal.Tinthofer@Woodler.eu GOPAS: info@gopas,sk www.gopas.sk www.facebook.com/gopassr Agenda Analyze the overall Sql Server state Focus on

More information

SQL Server 2008 Administration

SQL Server 2008 Administration SQL Server 2008 Administration Real World Skills for ITP Certification and Beyond Tom Carpenter WILEY Wiley Publishing, Inc. Contents Introduction xxi Part i Introducing SQL Server 2008 1 Chapter 1 Understanding

More information

FHE DEFINITIVE GUIDE. ^phihri^^lv JEFFREY GARBUS. Joe Celko. Alvin Chang. PLAMEN ratchev JONES & BARTLETT LEARN IN G. y ti rvrrtuttnrr i t i r

FHE DEFINITIVE GUIDE. ^phihri^^lv JEFFREY GARBUS. Joe Celko. Alvin Chang. PLAMEN ratchev JONES & BARTLETT LEARN IN G. y ti rvrrtuttnrr i t i r : 1. FHE DEFINITIVE GUIDE fir y ti rvrrtuttnrr i t i r ^phihri^^lv ;\}'\^X$:^u^'! :: ^ : ',!.4 '. JEFFREY GARBUS PLAMEN ratchev Alvin Chang Joe Celko g JONES & BARTLETT LEARN IN G Contents About the Authors

More information

How To Improve Performance In A Database

How To Improve Performance In A Database 1 PHIL FACTOR GRANT FRITCHEY K. BRIAN KELLEY MICKEY STUEWE IKE ELLIS JONATHAN ALLEN LOUIS DAVIDSON 2 Database Performance Tips for Developers As a developer, you may or may not need to go into the database

More information

SOLIDWORKS Enterprise PDM - Troubleshooting Tools

SOLIDWORKS Enterprise PDM - Troubleshooting Tools SOLIDWORKS Enterprise PDM - Troubleshooting Tools This document is intended for the IT and Database Manager to help diagnose and trouble shoot problems for SOLIDWORKS Enterprise PDM. Below are suggested

More information

Microsoft SQL Database Administrator Certification

Microsoft SQL Database Administrator Certification Microsoft SQL Database Administrator Certification Training for Exam 70-432 Course Modules and Objectives www.sqlsteps.com 2009 ViSteps Pty Ltd, SQLSteps Division 2 Table of Contents Module #1 Prerequisites

More information

The Database is Slow

The Database is Slow The Database is Slow SQL Server Performance Tuning Starter Kit Calgary PASS Chapter, 19 August 2015 Randolph West, Born SQL Email: r@ndolph.ca Twitter: @rabryst Basic Internals Data File Transaction Log

More information

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress*

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress* Oracle Database 11 g Performance Tuning Recipes Sam R. Alapati Darl Kuhn Bill Padfield Apress* Contents About the Authors About the Technical Reviewer Acknowledgments xvi xvii xviii Chapter 1: Optimizing

More information

"Charting the Course... MOC 55144 AC SQL Server 2014 Performance Tuning and Optimization. Course Summary

Charting the Course... MOC 55144 AC SQL Server 2014 Performance Tuning and Optimization. Course Summary Description Course Summary This course is designed to give the right amount of Internals knowledge, and wealth of practical tuning and optimization techniques, that you can put into production. The course

More information

Dynamics NAV/SQL Server Configuration Recommendations

Dynamics NAV/SQL Server Configuration Recommendations Dynamics NAV/SQL Server Configuration Recommendations This document describes SQL Server configuration recommendations that were gathered from field experience with Microsoft Dynamics NAV and SQL Server.

More information

Mind Q Systems Private Limited

Mind Q Systems Private Limited MS SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques Module 1: SQL Server Architecture Introduction to SQL Server 2012 Overview on RDBMS and Beyond Relational Big picture of

More information

SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques

SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques Module: 1 Module: 2 Module: 3 Module: 4 Module: 5 Module: 6 Module: 7 Architecture &Internals of SQL Server Engine Installing,

More information

OPTIMIZING QUERIES IN SQL SERVER 2008

OPTIMIZING QUERIES IN SQL SERVER 2008 Scientific Bulletin Economic Sciences, Vol. 9 (15) - Information technology - OPTIMIZING QUERIES IN SQL SERVER 2008 Professor Ph.D. Ion LUNGU 1, Nicolae MERCIOIU 2, Victor VLĂDUCU 3 1 Academy of Economic

More information

MOC 20462C: Administering Microsoft SQL Server Databases

MOC 20462C: Administering Microsoft SQL Server Databases MOC 20462C: Administering Microsoft SQL Server Databases Course Overview This course provides students with the knowledge and skills to administer Microsoft SQL Server databases. Course Introduction Course

More information

Beginning SQL Server. 2012 Administration. Apress. Rob Walters Grant Fritchey

Beginning SQL Server. 2012 Administration. Apress. Rob Walters Grant Fritchey Beginning SQL Server 2012 Administration Rob Walters Grant Fritchey Apress Contents at a Glance About the Authors About the Technical Reviewer Acknowledgments Introduction xv xvi xvii xviii Chapter 1:

More information

PERFORMANCE TUNING IN MICROSOFT SQL SERVER DBMS

PERFORMANCE TUNING IN MICROSOFT SQL SERVER DBMS Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 6, June 2015, pg.381

More information

One of the database administrators

One of the database administrators THE ESSENTIAL GUIDE TO Database Monitoring By Michael Otey SPONSORED BY One of the database administrators (DBAs) most important jobs is to keep the database running smoothly, which includes quickly troubleshooting

More information

CHAPTER 8: OPTIMIZATION AND TROUBLESHOOTING

CHAPTER 8: OPTIMIZATION AND TROUBLESHOOTING Chapter 8: Optimization and Troubleshooting CHAPTER 8: OPTIMIZATION AND TROUBLESHOOTING Objectives Introduction The objectives are: Understand how to troubleshoot Microsoft Dynamics NAV 2009 Installation

More information

form approved June/2006 revised Nov. 2009 Page 1 of 7

form approved June/2006 revised Nov. 2009 Page 1 of 7 revised Nov. 2009 Page 1 of 7 Administrative - Master Syllabus I. Topical Outline Each offering of this course must include the following topics (be sure to include information regarding lab, practicum,

More information

Improving SQL Server Performance

Improving SQL Server Performance Informatica Economică vol. 14, no. 2/2010 55 Improving SQL Server Performance Nicolae MERCIOIU 1, Victor VLADUCU 2 1 Prosecutor's Office attached to the High Court of Cassation and Justice 2 Prosecutor's

More information

SQL Server Performance Tuning and Optimization

SQL Server Performance Tuning and Optimization 3 Riverchase Office Plaza Hoover, Alabama 35244 Phone: 205.989.4944 Fax: 855.317.2187 E-Mail: rwhitney@discoveritt.com Web: www.discoveritt.com SQL Server Performance Tuning and Optimization Course: MS10980A

More information

Microsoft SQL Server: MS-10980 Performance Tuning and Optimization Digital

Microsoft SQL Server: MS-10980 Performance Tuning and Optimization Digital coursemonster.com/us Microsoft SQL Server: MS-10980 Performance Tuning and Optimization Digital View training dates» Overview This course is designed to give the right amount of Internals knowledge and

More information

Optimizing Performance. Training Division New Delhi

Optimizing Performance. Training Division New Delhi Optimizing Performance Training Division New Delhi Performance tuning : Goals Minimize the response time for each query Maximize the throughput of the entire database server by minimizing network traffic,

More information

Administering Microsoft SQL Server 2012 Databases

Administering Microsoft SQL Server 2012 Databases Administering Microsoft SQL Server 2012 Databases Install and Configure (19%) Plan installation. May include but not limited to: evaluate installation requirements; design the installation of SQL Server

More information

Developing Microsoft SQL Server Databases 20464C; 5 Days

Developing Microsoft SQL Server Databases 20464C; 5 Days Developing Microsoft SQL Server Databases 20464C; 5 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Course Description

More information

Course 55144: SQL Server 2014 Performance Tuning and Optimization

Course 55144: SQL Server 2014 Performance Tuning and Optimization Course 55144: SQL Server 2014 Performance Tuning and Optimization Audience(s): IT Professionals Technology: Microsoft SQL Server Level: 200 Overview About this course This course is designed to give the

More information

Course 55144B: SQL Server 2014 Performance Tuning and Optimization

Course 55144B: SQL Server 2014 Performance Tuning and Optimization Course 55144B: SQL Server 2014 Performance Tuning and Optimization Course Outline Module 1: Course Overview This module explains how the class will be structured and introduces course materials and additional

More information

20464C: Developing Microsoft SQL Server Databases

20464C: Developing Microsoft SQL Server Databases 20464C: Developing Microsoft SQL Server Databases Course Details Course Code: Duration: Notes: 20464C 5 days This course syllabus should be used to determine whether the course is appropriate for the students,

More information

MS SQL Server 2014 New Features and Database Administration

MS SQL Server 2014 New Features and Database Administration MS SQL Server 2014 New Features and Database Administration MS SQL Server 2014 Architecture Database Files and Transaction Log SQL Native Client System Databases Schemas Synonyms Dynamic Management Objects

More information

Expert Oracle. Database Architecture. Techniques and Solutions. 10gr, and 11g Programming. Oracle Database 9/, Second Edition.

Expert Oracle. Database Architecture. Techniques and Solutions. 10gr, and 11g Programming. Oracle Database 9/, Second Edition. Expert Oracle Database Architecture Oracle Database 9/, Techniques and Solutions 10gr, and 11g Programming Second Edition TECHNiSCHE JNFORMATIONSBIBLIOTHEK UN!VERSITAT BIBLIOTHEK HANNOVER Thomas Kyte Apress

More information

VirtualCenter Database Performance for Microsoft SQL Server 2005 VirtualCenter 2.5

VirtualCenter Database Performance for Microsoft SQL Server 2005 VirtualCenter 2.5 Performance Study VirtualCenter Database Performance for Microsoft SQL Server 2005 VirtualCenter 2.5 VMware VirtualCenter uses a database to store metadata on the state of a VMware Infrastructure environment.

More information

About Me: Brent Ozar. Perfmon and Profiler 101

About Me: Brent Ozar. Perfmon and Profiler 101 Perfmon and Profiler 101 2008 Quest Software, Inc. ALL RIGHTS RESERVED. About Me: Brent Ozar SQL Server Expert for Quest Software Former SQL DBA Managed >80tb SAN, VMware Dot-com-crash experience Specializes

More information

Course 20464: Developing Microsoft SQL Server Databases

Course 20464: Developing Microsoft SQL Server Databases Course 20464: Developing Microsoft SQL Server Databases Type:Course Audience(s):IT Professionals Technology:Microsoft SQL Server Level:300 This Revision:C Delivery method: Instructor-led (classroom) Length:5

More information

Inside Microsoft SQL Server 2005: The Storage Engine

Inside Microsoft SQL Server 2005: The Storage Engine Inside Microsoft SQL Server 2005: The Storage Engine Kalen Delaney (Solid Quality Learning) To learn more about this book, visit Microsoft Learning at http://www.microsoft.com/mspress/books/7436.aspx 9780735621053

More information

Microsoft SQL Server 2012 Administration

Microsoft SQL Server 2012 Administration PROFESSION Microsoft SQL Server 2012 Administration Adam Jorgensen Steven Wort Ross LoForte Brian Knight WILEY John Wiley & Sons, Inc. INTRODUCTION xxxvii CHAPTER 1: SQL SERVER 2012 ARCHITECTURE 1 SQL

More information

Developing Microsoft SQL Server Databases

Developing Microsoft SQL Server Databases CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! Course 20464C: Developing Microsoft SQL Server Databases Length: 5 Days Audience: IT Professionals Level:

More information

Design and Implementation

Design and Implementation Pro SQL Server 2012 Relational Database Design and Implementation Louis Davidson with Jessica M. Moss Apress- Contents Foreword About the Author About the Technical Reviewer Acknowledgments Introduction

More information

The Complete Performance Solution for Microsoft SQL Server

The Complete Performance Solution for Microsoft SQL Server The Complete Performance Solution for Microsoft SQL Server Powerful SSAS Performance Dashboard Innovative Workload and Bottleneck Profiling Capture of all Heavy MDX, XMLA and DMX Aggregation, Partition,

More information

Microsoft SQL Server performance tuning for Microsoft Dynamics NAV

Microsoft SQL Server performance tuning for Microsoft Dynamics NAV Microsoft SQL Server performance tuning for Microsoft Dynamics NAV TechNet Evening 11/29/2007 1 Introductions Steven Renders Microsoft Certified Trainer Plataan steven.renders@plataan.be Check Out: www.plataan.be

More information

VMware vcenter 4.0 Database Performance for Microsoft SQL Server 2008

VMware vcenter 4.0 Database Performance for Microsoft SQL Server 2008 Performance Study VMware vcenter 4.0 Database Performance for Microsoft SQL Server 2008 VMware vsphere 4.0 VMware vcenter Server uses a database to store metadata on the state of a VMware vsphere environment.

More information

Microsoft SQL Server 2000 Index Defragmentation Best Practices

Microsoft SQL Server 2000 Index Defragmentation Best Practices Microsoft SQL Server 2000 Index Defragmentation Best Practices Author: Mike Ruthruff Microsoft Corporation February 2003 Summary: As Microsoft SQL Server 2000 maintains indexes to reflect updates to their

More information

Expert Oracle Exadata

Expert Oracle Exadata Expert Oracle Exadata Kerry Osborne Randy Johnson Tanel Poder Apress Contents J m About the Authors About the Technical Reviewer a Acknowledgments Introduction xvi xvii xviii xix Chapter 1: What Is Exadata?

More information

Storage and SQL Server capacity planning and configuration (SharePoint...

Storage and SQL Server capacity planning and configuration (SharePoint... 1 of 22 5/1/2011 5:34 PM Storage and SQL Server capacity planning and configuration (SharePoint Server 2010) Updated: January 20, 2011 This article describes how to plan for and configure the storage and

More information

ArcSDE for Microsoft SQL Server Administration. Rob Stauder, ESRI Rstauder@esri.com

ArcSDE for Microsoft SQL Server Administration. Rob Stauder, ESRI Rstauder@esri.com ArcSDE for Microsoft SQL Server Administration Rob Stauder, ESRI Rstauder@esri.com Agenda Setting up the DBMS and Server The Default Configuration Using the dbtune table Maintaining Performance Setting

More information

Performance Counters. Microsoft SQL. Technical Data Sheet. Overview:

Performance Counters. Microsoft SQL. Technical Data Sheet. Overview: Performance Counters Technical Data Sheet Microsoft SQL Overview: Key Features and Benefits: Key Definitions: Performance counters are used by the Operations Management Architecture (OMA) to collect data

More information

Best Practices. Best Practices for Installing and Configuring SQL Server 2005 on an LSI CTS2600 System

Best Practices. Best Practices for Installing and Configuring SQL Server 2005 on an LSI CTS2600 System Best Practices Best Practices for Installing and Configuring SQL Server 2005 on an LSI CTS2600 System 2010 LSI Corporation August 12, 2010 Table of Contents _Toc269370599 Introduction...4 Configuring Volumes

More information

PERFORMANCE TUNING FOR PEOPLESOFT APPLICATIONS

PERFORMANCE TUNING FOR PEOPLESOFT APPLICATIONS PERFORMANCE TUNING FOR PEOPLESOFT APPLICATIONS 1.Introduction: It is a widely known fact that 80% of performance problems are a direct result of the to poor performance, such as server configuration, resource

More information

SQL Server Performance Assessment and Optimization Techniques Jeffry A. Schwartz Windows Technology Symposium December 6, 2004 Las Vegas, NV

SQL Server Performance Assessment and Optimization Techniques Jeffry A. Schwartz Windows Technology Symposium December 6, 2004 Las Vegas, NV SQL Server Performance Assessment and Optimization Techniques Jeffry A. Schwartz Windows Technology Symposium December 6, 2004 Las Vegas, NV jeffstx3@frontiernet.net Emphasis of Presentation Interpretation

More information

SQL Server. DMVs in Action. Better Queries with. Dynamic Management Views MANNING IANW. STIRK. Shelter Island

SQL Server. DMVs in Action. Better Queries with. Dynamic Management Views MANNING IANW. STIRK. Shelter Island SQL Server DMVs in Action Better Queries with Dynamic Management Views IANW. STIRK II MANNING Shelter Island contents preface xix acknowledgements about this book xxii xx Part 1 Starting the journey 1

More information

Performance Tuning and Optimizing SQL Databases 2016

Performance Tuning and Optimizing SQL Databases 2016 Performance Tuning and Optimizing SQL Databases 2016 http://www.homnick.com marketing@homnick.com +1.561.988.0567 Boca Raton, Fl USA About this course This four-day instructor-led course provides students

More information

Developing Microsoft SQL Server Databases (20464) H8N64S

Developing Microsoft SQL Server Databases (20464) H8N64S HP Education Services course data sheet Developing Microsoft SQL Server Databases (20464) H8N64S Course Overview In this course, you will be introduced to SQL Server, logical table design, indexing, query

More information

Optimising SQL Server CPU performance

Optimising SQL Server CPU performance At a glance: Troubleshooting database performance issues Reviewing hardware causes Using PerfMon to track database bottlenecks Evaluating query performance Optimising SQL Server CPU performance Zach Nichter

More information

6231B: Maintaining a Microsoft SQL Server 2008 R2 Database

6231B: Maintaining a Microsoft SQL Server 2008 R2 Database 6231B: Maintaining a Microsoft SQL Server 2008 R2 Database Course Overview This instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2008 R2 database.

More information

The 5-minute SQL Server Health Check

The 5-minute SQL Server Health Check The 5-minute SQL Server Health Check Christian Bolton Technical Director, Coeo Ltd. Kevin Kline Technical Strategy Manager, Quest Software 2009 Quest Software, Inc. ALL RIGHTS RESERVED Agenda Introducing

More information

50238: Introduction to SQL Server 2008 Administration

50238: Introduction to SQL Server 2008 Administration 50238: Introduction to SQL Server 2008 Administration 5 days Course Description This five-day instructor-led course provides students with the knowledge and skills to administer SQL Server 2008. The course

More information

Microsoft SQL Server 2008 Administrator's Pocket Consultant

Microsoft SQL Server 2008 Administrator's Pocket Consultant Microsoft SQL Server 2008 Administrator's Pocket Consultant William R. Stanek To learn more about this book, visit Microsoft Learning at http://www.microsoft.com/mspress/books/12755.aspx 9780735625891

More information

System Administration of Windchill 10.2

System Administration of Windchill 10.2 System Administration of Windchill 10.2 Overview Course Code Course Length TRN-4340-T 3 Days In this course, you will gain an understanding of how to perform routine Windchill system administration tasks,

More information

NUTECH COMPUTER TRAINING INSTITUTE 1682 E. GUDE DRIVE #102, ROCKVILLE, MD 20850 WEB: www.nutechtraining.com TEL: 301-610-9300

NUTECH COMPUTER TRAINING INSTITUTE 1682 E. GUDE DRIVE #102, ROCKVILLE, MD 20850 WEB: www.nutechtraining.com TEL: 301-610-9300 NUTECH COMPUTER TRAINING INSTITUTE 1682 E. GUDE DRIVE #102, ROCKVILLE, MD 20850 WEB: www.nutechtraining.com TEL: 301-610-9300 MCTS SQL Server 2005 Developer Course Outlines Exam 70 431: TS: Microsoft SQL

More information

David Dye. Extract, Transform, Load

David Dye. Extract, Transform, Load David Dye Extract, Transform, Load Extract, Transform, Load Overview SQL Tools Load Considerations Introduction David Dye derekman1@msn.com HTTP://WWW.SQLSAFETY.COM Overview ETL Overview Extract Define

More information

SQL Server 200x Optimizing Stored Procedure Performance

SQL Server 200x Optimizing Stored Procedure Performance SQL Server 200x Optimizing Stored Procedure Performance Kimberly L. Tripp SQLskills.com Email: Kimberly@SQLskills.com Blog: http://www.sqlskills.com/blogs/kimberly http://www.sqlskills.com Speaker Kimberly

More information

WW TSS-02\03 MS SQL Server Extended Performance & Tuning

WW TSS-02\03 MS SQL Server Extended Performance & Tuning Slide 1 WW TSS-02\03 MS SQL Server Extended Performance & Tuning Pierluigi Iodice Regional Solution Support Engineer, Wonderware Invensys Software Email: pierluigi.iodice@invensys.com Javier Aldan social.invensys.com

More information

Developing Microsoft SQL Server Databases MOC 20464

Developing Microsoft SQL Server Databases MOC 20464 Developing Microsoft SQL Server Databases MOC 20464 Course Outline Module 1: Introduction to Database Development This module introduces database development and the key tasks that a database developer

More information

Understanding SQL Server Execution Plans. Klaus Aschenbrenner Independent SQL Server Consultant SQLpassion.at Twitter: @Aschenbrenner

Understanding SQL Server Execution Plans. Klaus Aschenbrenner Independent SQL Server Consultant SQLpassion.at Twitter: @Aschenbrenner Understanding SQL Server Execution Plans Klaus Aschenbrenner Independent SQL Server Consultant SQLpassion.at Twitter: @Aschenbrenner About me Independent SQL Server Consultant International Speaker, Author

More information

SQL Server Performance Tuning for DBAs

SQL Server Performance Tuning for DBAs ASPE IT Training SQL Server Performance Tuning for DBAs A WHITE PAPER PREPARED FOR ASPE BY TOM CARPENTER www.aspe-it.com toll-free: 877-800-5221 SQL Server Performance Tuning for DBAs DBAs are often tasked

More information

SQL Server 2016 New Features!

SQL Server 2016 New Features! SQL Server 2016 New Features! Improvements on Always On Availability Groups: Standard Edition will come with AGs support with one db per group synchronous or asynchronous, not readable (HA/DR only). Improved

More information

DBMS / Business Intelligence, SQL Server

DBMS / Business Intelligence, SQL Server DBMS / Business Intelligence, SQL Server Orsys, with 30 years of experience, is providing high quality, independant State of the Art seminars and hands-on courses corresponding to the needs of IT professionals.

More information

SQL Server 2008 Performance and Scale

SQL Server 2008 Performance and Scale SQL Server 2008 Performance and Scale White Paper Published: February 2008 Updated: July 2008 Summary: Microsoft SQL Server 2008 incorporates the tools and technologies that are necessary to implement

More information

AV-005: Administering and Implementing a Data Warehouse with SQL Server 2014

AV-005: Administering and Implementing a Data Warehouse with SQL Server 2014 AV-005: Administering and Implementing a Data Warehouse with SQL Server 2014 Career Details Duration 105 hours Prerequisites This career requires that you meet the following prerequisites: Working knowledge

More information

Users are Complaining that the System is Slow What Should I Do Now? Part 1

Users are Complaining that the System is Slow What Should I Do Now? Part 1 Users are Complaining that the System is Slow What Should I Do Now? Part 1 Jeffry A. Schwartz July 15, 2014 SQLRx Seminar jeffrys@isi85.com Overview Most of you have had to deal with vague user complaints

More information

The Guru's Guide to Transact-SQL

The Guru's Guide to Transact-SQL The Guru's Guide to Transact-SQL Ken Henderson HLuHB Darmstadt TT 15169877 ADDISON-WESLEY Boston San Francisco New York Toronto Montreal London Munich Paris Madrid Capetown Sydney Tokyo Singapore Mexico

More information

Sitecore Health. Christopher Wojciech. netzkern AG. christopher.wojciech@netzkern.de. Sitecore User Group Conference 2015

Sitecore Health. Christopher Wojciech. netzkern AG. christopher.wojciech@netzkern.de. Sitecore User Group Conference 2015 Sitecore Health Christopher Wojciech netzkern AG christopher.wojciech@netzkern.de Sitecore User Group Conference 2015 1 Hi, % Increase in Page Abondonment 40% 30% 20% 10% 0% 2 sec to 4 2 sec to 6 2 sec

More information

Enhancing SQL Server Performance

Enhancing SQL Server Performance Enhancing SQL Server Performance Bradley Ball, Jason Strate and Roger Wolter In the ever-evolving data world, improving database performance is a constant challenge for administrators. End user satisfaction

More information

Oracle Database 11g: SQL Tuning Workshop Release 2

Oracle Database 11g: SQL Tuning Workshop Release 2 Oracle University Contact Us: 1 800 005 453 Oracle Database 11g: SQL Tuning Workshop Release 2 Duration: 3 Days What you will learn This course assists database developers, DBAs, and SQL developers to

More information

Chapter 15: AppInsight for SQL

Chapter 15: AppInsight for SQL Chapter 15: AppInsight for SQL SAM offers a detailed view of your SQL databases' performance without the use of agents or templates by using the AppInsight for SQL embedded application. AppInsight for

More information

Dynamic Management Views: Available on SQL Server 2005 and above, using TSQL queries these views can provide a wide variety of information.

Dynamic Management Views: Available on SQL Server 2005 and above, using TSQL queries these views can provide a wide variety of information. SQL Server Performance Monitoring Tools: Third Party Tools: These tools (SQL Sentry, Toad, Embarcadero, SpotLight etc ) usually span all combination of environments and can produce valuable reports. Data

More information

MCTS 70-431 Microsoft SQL Server 2005 Implementation & Maintenance

MCTS 70-431 Microsoft SQL Server 2005 Implementation & Maintenance MCTS 70-431 Microsoft SQL Server 2005 Implementation & Maintenance Chapter 0 Introduction to RDBM & SQL Chapter 5 Introducing More Database Objects 0.1 Database Basics 5.1 Stored Procedures 0.2 SQL Basics

More information

Performance data collection and analysis process

Performance data collection and analysis process Microsoft Dynamics AX 2012 Performance data collection and analysis process White Paper This document outlines the core processes, techniques, and procedures that the Microsoft Dynamics AX product team

More information

Course 20464C: Developing Microsoft SQL Server Databases

Course 20464C: Developing Microsoft SQL Server Databases Course 20464C: Developing Microsoft SQL Server Databases Module 1: Introduction to Database DevelopmentThis module introduces database development and the key tasks that a database developer would typically

More information

Hardware Performance Optimization and Tuning. Presenter: Tom Arakelian Assistant: Guy Ingalls

Hardware Performance Optimization and Tuning. Presenter: Tom Arakelian Assistant: Guy Ingalls Hardware Performance Optimization and Tuning Presenter: Tom Arakelian Assistant: Guy Ingalls Agenda Server Performance Server Reliability Why we need Performance Monitoring How to optimize server performance

More information

Expert Oracle Exadata

Expert Oracle Exadata Expert Oracle Exadata Second Edition Martin Bach Karl Arao Andy Colvin Frits Hoogland Kerry Osborne Randy Johnson Tanel Poder (ioug)* A IndafMndentoracle u*cn group Apress Contents J About the Authors

More information

W I S E. SQL Server 2012 Database Engine Technical Update WISE LTD.

W I S E. SQL Server 2012 Database Engine Technical Update WISE LTD. Technical Update COURSE CODE: COURSE TITLE: LEVEL: AUDIENCE: SQSDBE SQL Server 2012 Database Engine Technical Update Beginner-to-intermediate SQL Server DBAs and/or system administrators PREREQUISITES:

More information

Oracle Database 11g: SQL Tuning Workshop

Oracle Database 11g: SQL Tuning Workshop Oracle University Contact Us: + 38516306373 Oracle Database 11g: SQL Tuning Workshop Duration: 3 Days What you will learn This Oracle Database 11g: SQL Tuning Workshop Release 2 training assists database

More information

Performance rule violations usually result in increased CPU or I/O, time to fix the mistake, and ultimately, a cost to the business unit.

Performance rule violations usually result in increased CPU or I/O, time to fix the mistake, and ultimately, a cost to the business unit. Is your database application experiencing poor response time, scalability problems, and too many deadlocks or poor application performance? One or a combination of zparms, database design and application

More information

WITH A FUSION POWERED SQL SERVER 2014 IN-MEMORY OLTP DATABASE

WITH A FUSION POWERED SQL SERVER 2014 IN-MEMORY OLTP DATABASE WITH A FUSION POWERED SQL SERVER 2014 IN-MEMORY OLTP DATABASE 1 W W W. F U S I ON I O.COM Table of Contents Table of Contents... 2 Executive Summary... 3 Introduction: In-Memory Meets iomemory... 4 What

More information

Analyzing & Optimizing T-SQL Query Performance Part1: using SET and DBCC. Kevin Kline Senior Product Architect for SQL Server Quest Software

Analyzing & Optimizing T-SQL Query Performance Part1: using SET and DBCC. Kevin Kline Senior Product Architect for SQL Server Quest Software Analyzing & Optimizing T-SQL Query Performance Part1: using SET and DBCC Kevin Kline Senior Product Architect for SQL Server Quest Software AGENDA Audience Poll Presentation (submit questions to the e-seminar

More information

Instant SQL Programming

Instant SQL Programming Instant SQL Programming Joe Celko Wrox Press Ltd. INSTANT Table of Contents Introduction 1 What Can SQL Do for Me? 2 Who Should Use This Book? 2 How To Use This Book 3 What You Should Know 3 Conventions

More information

Brad s Sure DBA Checklist

Brad s Sure DBA Checklist Contents General DBA Best Practices...2 Best Practices for Becoming an Exceptional SQL Server DBA...2 Day-to-Day...2 Installation...2 Upgrading...3 Security...3 Job Maintenance...4 SQL Server Configuration

More information

Microsoft SQL Server 2012 Administration. Real-World Skills for MCSA Certification and Beyond (Exams 70-461, 70-462, and 70-463)

Microsoft SQL Server 2012 Administration. Real-World Skills for MCSA Certification and Beyond (Exams 70-461, 70-462, and 70-463) Brochure More information from http://www.researchandmarkets.com/reports/2330969/ Microsoft SQL Server 2012 Administration. Real-World Skills for MCSA Certification and Beyond (Exams 70-461, 70-462, and

More information

Microsoft SharePoint 2010 on HP ProLiant DL380p Gen8 servers

Microsoft SharePoint 2010 on HP ProLiant DL380p Gen8 servers Technical white paper Microsoft SharePoint 2010 on HP ProLiant DL380p Gen8 servers Performance report Table of contents Executive summary... 2 Introduction... 2 Test topology... 2 Test methodology... 3

More information

SQL Server Version. Supported for SC2012 RTM*** Not supported for SC2012 SP1*** SQL Server 2008 SP1, SP2, SP3

SQL Server Version. Supported for SC2012 RTM*** Not supported for SC2012 SP1*** SQL Server 2008 SP1, SP2, SP3 Session Overview SQL Server Version SQL Server 2008 SP1, SP2, SP3 Supported for SC2012 RTM*** Not supported for SC2012 SP1*** SQL Server 2008 R2 RTM, SP1 Supported for SC2012 RTM*** and SC2012 SP1***

More information

Microsoft SQL Server for Oracle DBAs Course 40045; 4 Days, Instructor-led

Microsoft SQL Server for Oracle DBAs Course 40045; 4 Days, Instructor-led Microsoft SQL Server for Oracle DBAs Course 40045; 4 Days, Instructor-led Course Description This four-day instructor-led course provides students with the knowledge and skills to capitalize on their skills

More information

How to Guide: SQL Server 2005 Consolidation

How to Guide: SQL Server 2005 Consolidation How to Guide: SQL Server 2005 Consolidation By Randy Dyess Edited with permission from SQL Server Magazine. Copyright 2008 Penton Media, Inc. All rights reserved. Third-party information brought to you

More information

LearnFromGuru Polish your knowledge

LearnFromGuru Polish your knowledge SQL SERVER 2008 R2 /2012 (TSQL/SSIS/ SSRS/ SSAS BI Developer TRAINING) Module: I T-SQL Programming and Database Design An Overview of SQL Server 2008 R2 / 2012 Available Features and Tools New Capabilities

More information