SlideShare une entreprise Scribd logo
1  sur  25
Quick & Easy SQL Tips Ike Ellis http://www.ellisteam.net ike@ellisteam.net Twitter: @ike_ellis 1
Assumptions @ You You are a new DBA You don’t want to rewrite your entire application with a new schema, new DAL, or new queries You want to learn just enough so that your SQL apps are fast and maintainable 2
Tip #1 – Performance Problem: Check the low-hanging fruit  Long-running jobs Long-running transactions DBCC OPENTRAN Check for long-running queries/both in amount and in duration 3
Tip #2:  Prettify! 4 http://extras.sqlservercentral.com/prettifier/prettifier.aspx
Tip #3 – Performance Problem : Identify hardware performance bottlenecks. Memory Disk* Processor Network I/O *Most common bottleneck.  It’s the Disk I/O, Stupid.  (But it could be memory that’s causing it.) 5
Tip #4: The right way to find hardware problems Merging PerfMon and Tracing Get the Batch and Completed Events Only Never trace from the computer you are monitoring Always trace to a file and then load in a table after. 6
Tip #5: Files, Files Everywhere All need their own physical drive for space management and performance Master Data File (MDF) Log Files (LDF) TempDB Files O/S/SQL Files BAK Files 7
Tip #6: The Log File Fills sequentially, so no need for striping, mirror is fine. Don’t let it get filled up: Simple Mode or Backup. 8
Tip #7 - Good memory management Check for other applications running on the SQL Server Move anti-virus (or at least make sure it wasn't scanning the SQL ports or the SQL files) Move Exchange and F&P services (cluster) Turn off unneeded services SQL is I/O bound, so I would turn off any network/disk intensive services (DHCP, DNS, etc) 9
Tip #8 - Quick Indexing Tricks. check for clustered indexes SELECT t.[Name] FROM sys.Indexes i  	JOIN sys.Tables t  	ON t.Object_ID = i.Object_id 	WHERE i.type_desc = 'HEAP' 	ORDER BY t.[Name] check for nonclustered indexes on foreign key columns (ID Columns) select * from sys.columns c  	where c.name like '%id%' 		and c.object_id not in  			( 			select object_id from sys.index_columns 			) check for non-clustered covering indexes reads outnumber inserts/updates 5 to 10 to 1 10
Tip #9 - Run the Index Tuning Wizard (DB Tuning Advisor) Run it a really long time, it is more accurate the longer it runs Don’t drop existing objects It’s OK to over-index 11
Tip #10 – I don’t really know the symptoms, but SQL Doctor will find the cure. Idera Red Gate DB Artison Quest 12
Tip #11– Baseline the right way Idera Diagnostics Manager & RedGate 13
Tip #12 – Enforce Business Rules in the DB Foreign Keys Unique Constraints Check Constraints 14
Tip #13 - Eliminate Cursors Cursors focus on how, not why or what Cursors are expensive Cursors take up memory, which is usually a problem already Cursors can often be written using a set-based method 15
Easy Tip #14 - Avoid Deadlocking, Blocking Index Tune Keep transactions short Don’t lock when you don’t have to Hit the tables in the same order (create a table order document) Minimize the use of triggers 16
Tip #15: CTE’s A named temporary result set based on a SELECT query Common Table Expression ,[object Object]
Advantages of common table expressions:
Queries with derived tables become more readable
Provide traversal of recursive hierarchiesWITH TopSales (SalesPersonID, NumSales) AS ( SELECT SalesPersonID, Count(*)    FROM Sales.SalesOrderHeader GROUP BY SalesPersonId ) SELECT * FROM TopSales  WHERE SalesPersonID IS NOT NULL ORDER BY NumSales DESC
Tip #16: apply operator right parameter can be a table, but meant for tvf cross apply does inner join no output for row when udf produces no output udf can get its parameters from left input outer apply does left outer join all rows from left input returned may have nulls for columns returned by udf
Tip #17: temptables vs. table variables ,[object Object]
private to batch
avoids transaction affects
designed for smaller number of rows where scans are cheaper than seeks

Contenu connexe

En vedette

En vedette (9)

Ch1 2
Ch1 2Ch1 2
Ch1 2
 
Azure DocumentDB 101
Azure DocumentDB 101Azure DocumentDB 101
Azure DocumentDB 101
 
Key Lessons Learned Building Recommender Systems for Large-Scale Social Netw...
 Key Lessons Learned Building Recommender Systems for Large-Scale Social Netw... Key Lessons Learned Building Recommender Systems for Large-Scale Social Netw...
Key Lessons Learned Building Recommender Systems for Large-Scale Social Netw...
 
Introduction to Azure DocumentDB
Introduction to Azure DocumentDBIntroduction to Azure DocumentDB
Introduction to Azure DocumentDB
 
Hadoop for the Absolute Beginner
Hadoop for the Absolute BeginnerHadoop for the Absolute Beginner
Hadoop for the Absolute Beginner
 
SQL PASS BAC - 60 reporting tips in 60 minutes
SQL PASS BAC - 60 reporting tips in 60 minutesSQL PASS BAC - 60 reporting tips in 60 minutes
SQL PASS BAC - 60 reporting tips in 60 minutes
 
Top 10 sql server reporting services tips
Top 10 sql server reporting services tipsTop 10 sql server reporting services tips
Top 10 sql server reporting services tips
 
Employment law & Employee tax in the Netherlands
Employment law & Employee tax in the Netherlands Employment law & Employee tax in the Netherlands
Employment law & Employee tax in the Netherlands
 
11 Goals of High Functioning SQL Developers
11 Goals of High Functioning SQL Developers11 Goals of High Functioning SQL Developers
11 Goals of High Functioning SQL Developers
 

Similaire à Quick & Easy SQL Tips

Building scalable application with sql server
Building scalable application with sql serverBuilding scalable application with sql server
Building scalable application with sql server
Chris Adkin
 
Dev buchan 30 proven tips
Dev buchan 30 proven tipsDev buchan 30 proven tips
Dev buchan 30 proven tips
Bill Buchan
 
Hidden Gems of Performance Tuning: Hierarchical Profiler and DML Trigger Opti...
Hidden Gems of Performance Tuning: Hierarchical Profiler and DML Trigger Opti...Hidden Gems of Performance Tuning: Hierarchical Profiler and DML Trigger Opti...
Hidden Gems of Performance Tuning: Hierarchical Profiler and DML Trigger Opti...
Michael Rosenblum
 
The View - The top 30 Development tips
The View - The top 30 Development tipsThe View - The top 30 Development tips
The View - The top 30 Development tips
Bill Buchan
 

Similaire à Quick & Easy SQL Tips (20)

SQL Pass Architecture SQL Tips & Tricks
SQL Pass Architecture SQL Tips & TricksSQL Pass Architecture SQL Tips & Tricks
SQL Pass Architecture SQL Tips & Tricks
 
SQL Server Tips & Tricks
SQL Server Tips & TricksSQL Server Tips & Tricks
SQL Server Tips & Tricks
 
Tips & Tricks SQL in the City Seattle 2014
Tips & Tricks SQL in the City Seattle 2014Tips & Tricks SQL in the City Seattle 2014
Tips & Tricks SQL in the City Seattle 2014
 
Performance tuning
Performance tuningPerformance tuning
Performance tuning
 
7 Database Mistakes YOU Are Making -- Linuxfest Northwest 2019
7 Database Mistakes YOU Are Making -- Linuxfest Northwest 20197 Database Mistakes YOU Are Making -- Linuxfest Northwest 2019
7 Database Mistakes YOU Are Making -- Linuxfest Northwest 2019
 
Building scalable application with sql server
Building scalable application with sql serverBuilding scalable application with sql server
Building scalable application with sql server
 
Dev buchan 30 proven tips
Dev buchan 30 proven tipsDev buchan 30 proven tips
Dev buchan 30 proven tips
 
Golden Hammer - Shawn Oden
Golden Hammer - Shawn OdenGolden Hammer - Shawn Oden
Golden Hammer - Shawn Oden
 
Boosting the Performance of your Rails Apps
Boosting the Performance of your Rails AppsBoosting the Performance of your Rails Apps
Boosting the Performance of your Rails Apps
 
Rails Tips and Best Practices
Rails Tips and Best PracticesRails Tips and Best Practices
Rails Tips and Best Practices
 
Hidden Gems of Performance Tuning: Hierarchical Profiler and DML Trigger Opti...
Hidden Gems of Performance Tuning: Hierarchical Profiler and DML Trigger Opti...Hidden Gems of Performance Tuning: Hierarchical Profiler and DML Trigger Opti...
Hidden Gems of Performance Tuning: Hierarchical Profiler and DML Trigger Opti...
 
The View - The top 30 Development tips
The View - The top 30 Development tipsThe View - The top 30 Development tips
The View - The top 30 Development tips
 
Lotusphere 2007 AD505 DevBlast 30 LotusScript Tips
Lotusphere 2007 AD505 DevBlast 30 LotusScript TipsLotusphere 2007 AD505 DevBlast 30 LotusScript Tips
Lotusphere 2007 AD505 DevBlast 30 LotusScript Tips
 
Top 10 Developer Mistakes That Won't Scale with SQL Server
Top 10 Developer Mistakes That Won't Scale with SQL ServerTop 10 Developer Mistakes That Won't Scale with SQL Server
Top 10 Developer Mistakes That Won't Scale with SQL Server
 
ITARC15 Workshop - Architecting a Large Software Project - Lessons Learned
ITARC15 Workshop - Architecting a Large Software Project - Lessons LearnedITARC15 Workshop - Architecting a Large Software Project - Lessons Learned
ITARC15 Workshop - Architecting a Large Software Project - Lessons Learned
 
SQL Server Performance Tuning with DMVs
SQL Server Performance Tuning with DMVsSQL Server Performance Tuning with DMVs
SQL Server Performance Tuning with DMVs
 
Ad505 dev blast
Ad505 dev blastAd505 dev blast
Ad505 dev blast
 
Top 10 tips for Oracle performance (Updated April 2015)
Top 10 tips for Oracle performance (Updated April 2015)Top 10 tips for Oracle performance (Updated April 2015)
Top 10 tips for Oracle performance (Updated April 2015)
 
Architecting a Large Software Project - Lessons Learned
Architecting a Large Software Project - Lessons LearnedArchitecting a Large Software Project - Lessons Learned
Architecting a Large Software Project - Lessons Learned
 
Sql interview question part 8
Sql interview question part 8Sql interview question part 8
Sql interview question part 8
 

Plus de Ike Ellis

Plus de Ike Ellis (20)

Storytelling with Data with Power BI
Storytelling with Data with Power BIStorytelling with Data with Power BI
Storytelling with Data with Power BI
 
Storytelling with Data with Power BI.pptx
Storytelling with Data with Power BI.pptxStorytelling with Data with Power BI.pptx
Storytelling with Data with Power BI.pptx
 
Build a modern data platform.pptx
Build a modern data platform.pptxBuild a modern data platform.pptx
Build a modern data platform.pptx
 
Data Modeling on Azure for Analytics
Data Modeling on Azure for AnalyticsData Modeling on Azure for Analytics
Data Modeling on Azure for Analytics
 
Migrate a successful transactional database to azure
Migrate a successful transactional database to azureMigrate a successful transactional database to azure
Migrate a successful transactional database to azure
 
Data modeling trends for analytics
Data modeling trends for analyticsData modeling trends for analytics
Data modeling trends for analytics
 
Data modeling trends for Analytics
Data modeling trends for AnalyticsData modeling trends for Analytics
Data modeling trends for Analytics
 
Relational data modeling trends for transactional applications
Relational data modeling trends for transactional applicationsRelational data modeling trends for transactional applications
Relational data modeling trends for transactional applications
 
Power bi premium
Power bi premiumPower bi premium
Power bi premium
 
Move a successful onpremise oltp application to the cloud
Move a successful onpremise oltp application to the cloudMove a successful onpremise oltp application to the cloud
Move a successful onpremise oltp application to the cloud
 
Azure Databricks is Easier Than You Think
Azure Databricks is Easier Than You ThinkAzure Databricks is Easier Than You Think
Azure Databricks is Easier Than You Think
 
Pass 2018 introduction to dax
Pass 2018 introduction to daxPass 2018 introduction to dax
Pass 2018 introduction to dax
 
Pass the Power BI Exam
Pass the Power BI ExamPass the Power BI Exam
Pass the Power BI Exam
 
Slides for PUG 2018 - DAX CALCULATE
Slides for PUG 2018 - DAX CALCULATESlides for PUG 2018 - DAX CALCULATE
Slides for PUG 2018 - DAX CALCULATE
 
Introduction to DAX
Introduction to DAXIntroduction to DAX
Introduction to DAX
 
60 reporting tips in 60 minutes - SQLBits 2018
60 reporting tips in 60 minutes - SQLBits 201860 reporting tips in 60 minutes - SQLBits 2018
60 reporting tips in 60 minutes - SQLBits 2018
 
14 Habits of Great SQL Developers
14 Habits of Great SQL Developers14 Habits of Great SQL Developers
14 Habits of Great SQL Developers
 
14 Habits of Great SQL Developers
14 Habits of Great SQL Developers14 Habits of Great SQL Developers
14 Habits of Great SQL Developers
 
Dive Into Azure Data Lake - PASS 2017
Dive Into Azure Data Lake - PASS 2017Dive Into Azure Data Lake - PASS 2017
Dive Into Azure Data Lake - PASS 2017
 
A lap around microsofts business intelligence platform
A lap around microsofts business intelligence platformA lap around microsofts business intelligence platform
A lap around microsofts business intelligence platform
 

Dernier

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Dernier (20)

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 

Quick & Easy SQL Tips

  • 1. Quick & Easy SQL Tips Ike Ellis http://www.ellisteam.net ike@ellisteam.net Twitter: @ike_ellis 1
  • 2. Assumptions @ You You are a new DBA You don’t want to rewrite your entire application with a new schema, new DAL, or new queries You want to learn just enough so that your SQL apps are fast and maintainable 2
  • 3. Tip #1 – Performance Problem: Check the low-hanging fruit Long-running jobs Long-running transactions DBCC OPENTRAN Check for long-running queries/both in amount and in duration 3
  • 4. Tip #2: Prettify! 4 http://extras.sqlservercentral.com/prettifier/prettifier.aspx
  • 5. Tip #3 – Performance Problem : Identify hardware performance bottlenecks. Memory Disk* Processor Network I/O *Most common bottleneck. It’s the Disk I/O, Stupid. (But it could be memory that’s causing it.) 5
  • 6. Tip #4: The right way to find hardware problems Merging PerfMon and Tracing Get the Batch and Completed Events Only Never trace from the computer you are monitoring Always trace to a file and then load in a table after. 6
  • 7. Tip #5: Files, Files Everywhere All need their own physical drive for space management and performance Master Data File (MDF) Log Files (LDF) TempDB Files O/S/SQL Files BAK Files 7
  • 8. Tip #6: The Log File Fills sequentially, so no need for striping, mirror is fine. Don’t let it get filled up: Simple Mode or Backup. 8
  • 9. Tip #7 - Good memory management Check for other applications running on the SQL Server Move anti-virus (or at least make sure it wasn't scanning the SQL ports or the SQL files) Move Exchange and F&P services (cluster) Turn off unneeded services SQL is I/O bound, so I would turn off any network/disk intensive services (DHCP, DNS, etc) 9
  • 10. Tip #8 - Quick Indexing Tricks. check for clustered indexes SELECT t.[Name] FROM sys.Indexes i JOIN sys.Tables t ON t.Object_ID = i.Object_id WHERE i.type_desc = 'HEAP' ORDER BY t.[Name] check for nonclustered indexes on foreign key columns (ID Columns) select * from sys.columns c where c.name like '%id%' and c.object_id not in ( select object_id from sys.index_columns ) check for non-clustered covering indexes reads outnumber inserts/updates 5 to 10 to 1 10
  • 11. Tip #9 - Run the Index Tuning Wizard (DB Tuning Advisor) Run it a really long time, it is more accurate the longer it runs Don’t drop existing objects It’s OK to over-index 11
  • 12. Tip #10 – I don’t really know the symptoms, but SQL Doctor will find the cure. Idera Red Gate DB Artison Quest 12
  • 13. Tip #11– Baseline the right way Idera Diagnostics Manager & RedGate 13
  • 14. Tip #12 – Enforce Business Rules in the DB Foreign Keys Unique Constraints Check Constraints 14
  • 15. Tip #13 - Eliminate Cursors Cursors focus on how, not why or what Cursors are expensive Cursors take up memory, which is usually a problem already Cursors can often be written using a set-based method 15
  • 16. Easy Tip #14 - Avoid Deadlocking, Blocking Index Tune Keep transactions short Don’t lock when you don’t have to Hit the tables in the same order (create a table order document) Minimize the use of triggers 16
  • 17.
  • 18. Advantages of common table expressions:
  • 19. Queries with derived tables become more readable
  • 20. Provide traversal of recursive hierarchiesWITH TopSales (SalesPersonID, NumSales) AS ( SELECT SalesPersonID, Count(*) FROM Sales.SalesOrderHeader GROUP BY SalesPersonId ) SELECT * FROM TopSales WHERE SalesPersonID IS NOT NULL ORDER BY NumSales DESC
  • 21. Tip #16: apply operator right parameter can be a table, but meant for tvf cross apply does inner join no output for row when udf produces no output udf can get its parameters from left input outer apply does left outer join all rows from left input returned may have nulls for columns returned by udf
  • 22.
  • 25. designed for smaller number of rows where scans are cheaper than seeks
  • 28. prefer to use with small number of rows
  • 31. can be shared over sessions and scopes
  • 32. can participate in transactions
  • 34. can trigger frequent recompiles
  • 36. prefer to use when you have more rows
  • 37.
  • 38. where not exists vs. where not in the possible presence of a null generates different plans for not exists and not in select salesPersonID from sales.salesPersons where not exists( select managerID from humanresources.employee e where e.managerID = s.salesPersonID) select salesPersonID from sales.salesPerson where salesPersonID not in (select managerID from humanresources.employee)
  • 39. Tip #19: Statistics Update 22 From the query plan, estimated number of rows and the actual number of rows need to equal each other. If they don’t, you might have a statistics issue. Run sp_updatestats to rectify it.
  • 40. Tip #20: Big Rows from Query Plan When troubleshooting, thick rows means lots of data, thin rows mean not much data. You’re probably better off following the thick rows. 23
  • 41. Tip #21: Missing Index Details Just copy that, name the index something unique, and then run it. Remember, it doesn’t look for overlapping indexes, so check that before you run. 24
  • 42. Conclusion Have a great code camp! Ike Ellis ike@ellisteam.net 619.922.9801 Twitter: @ike_ellis www.ellisteam.net 25

Notes de l'éditeur

  1. DBCC OPENTRANselect s.plan_handle , t.text , sum(s.execution_count) as totalExecutionCount , sum(s.total_elapsed_time) as totalElapsedTime , sum(s.total_worker_time) as totalWorkerTime , sum(s.total_logical_reads) as totalLogicalReads , sum(s.total_logical_writes) as totalLogicalWrites from sys.dm_exec_query_stats s cross apply sys.dm_exec_sql_text(s.plan_handle) t group by s.plan_handle, t.text order by sum(s.execution_count) desc
  2. Case Statements, bad code, etc.
  3. Watch the actual execution plan for these statements:drop table dbo.t1drop table dbo.t2--create two test tablescreate table dbo.t1(c1 int, c2 int check(c2 between 10 and 20));insert into dbo.t1values (11,12);create table dbo.t2(c1 int, c2 int);goinsert into dbo.t2values(101, 102);go select t1.c1 , t2.c2 , t2.c2 from dbo.t1 join dbo.t2 on t1.c1 = t2.c2 and t1.c2 = 20;select t1.c1 , t1.c2 , t2.c2 from dbo.t1 join dbo.t2 on t1.c1 = t2.c2 and t1.c2 = 30;
  4. A common table expression (CTE) can be thought of as a temporary result set that is defined within the execution scope of a single SELECT, INSERT, UPDATE, DELETE, or CREATE VIEW statement. A CTE is similar to a derived table in that it is not stored as an object and lasts only for the duration of the query. Unlike a derived table, a CTE can be self-referencing and can be referenced multiple times in the same query.A CTE is made up of an expression name representing the CTE, an optional column list, and a query defining the CTE. After a CTE is defined, it can be referenced like a table or view can in a SELECT, INSERT, UPDATE, or DELETE statement. A CTE can also be used in a CREATE VIEW statement as part of its defining SELECT statement. A CTE can be used to: Create a recursive query.Substitute for a view when the general use of a view is not required; that is, you do not have to store the definition in metadata.Enable grouping by a column that is derived from a scalar subselect, or a function that is either not deterministic or has external access.Reference the resulting table multiple times in the same statement.ReferencesUsing Common Table Expressions: http://go.microsoft.com/fwlink/?LinkID=127330