It   is more than just a little system database.
  •Joe Hellsten
  •Senior DBA @ rackspace
It is installed by default but what is it?
   TEMPDB is the Junk Drawer of SQL Server “quoted by many”

      •   Temporary Objects
      •   User Objects – triggers, queries, temporary tables, variables, etc
      •   Internal Objects – sorts, triggers, work tables, XML variables or other LOB data type variables
      •   Version stores – Snapshot Isolation (SI), Read Committed Snapshot Isolation (RCSI), After
          triggers, Online index rebuilds
          •   RCSI is cheaper than SI why?
      •   SQL 2012 AlwaysOn Readable Secondary makes use of tempdb for statistics and enables SI,
          which leverages tempdb for row versioning.

      •   Other objects that use TEMPDB
           Service Broker, event notification, database mail, index creations, user-
            defined functions
   SELECT
   UserObjectPages =SUM(user_object_reserved_page_count),
   UserObjectsMB =SUM(user_object_reserved_page_count)/128.0,
   InternalObjectPages =SUM(internal_object_reserved_page_count),
   InternalObjectsMB =SUM(internal_object_reserved_page_count)/128.0,
   VersionStorePages =SUM(version_store_reserved_page_count),
   VersionStoreMB =SUM(version_store_reserved_page_count)/128.0,
   FreePages =SUM(unallocated_extent_page_count),
   FreeSpaceMB =SUM(unallocated_extent_page_count)/128.0
   FROM sys.dm_db_file_space_usage;
What makes this guy unique?
   It is recreated each time SQL Server is started
   It is modeled after the Model database
   If it has grown, it is reset to its default when recreated
   Can not have user defined file groups created
   Auto Shrink can not be used on TEMPDB (even though it is an option)
   A database snapshot can not be created on TEMPDB
   SQL 2012 can be on local disk for clusters

   THERE IS ONLY ONE TEMPDB FOR THE ENTIRE INSTANCE!
A good starting point for configuring TEMPDB

TEMPDB should reside on a different disk than system
and user dbs
Depending on disk IO you might need to split the data
and log file onto different disks as well
Size TEMPDB accordingly
Make sure instant file initialization is enabled (OS
Security Policy- enable volume maintenance)
Set auto grow to a fixed value, don’t use percentage
TEMPDB should be on a fast I/O subsystem
Multiple equal size data files depending on contention
Did I say CONTENTION?

What is contention?
    Wikipedia = “competition by users of a system for the facility at the same time”

•Latch contention on allocation pages
    • Extent allocations are tracked and managed in the data files by allocation pages.
        • PFS – Page Free Space. One PFS page per .5 GB of data file. Tracks how
           much free space each page has. Page 1 in the data file. Repeats every 8088
           pages.
        • GAM – Global Allocation Map. One GAM page per 4 GB of data file.
           Tracks extents. Page 2 in the data file. Repeats every 511,232 pages.
        • SGAM – Shared Global Allocation Map. One SGAM page per 4 GB of data
           file. Tracks extents being used as shared extents. Page 3 in the data file.
           Repeats every 511,232 pages
How to find contention in TEMPDB
•sys.dm_os_waiting_tasks
     •Any tasks waiting on PageLatch or PageIOLatch
          SELECT session_id AS sessionid,
                   wait_duration_ms AS wait_time_in_milliseconds,
                   resource_description AS type_of_allocation_contention
          FROM sys.dm_os_waiting_tasks
          WHERE wait_type LIKE ‘Page%latch_%’
                   AND (resource_description LIKE ‘2:%’)

  This query will give you the session, wait duration and resource
  description. Resource Description is <database ID>:<file ID>:<page
  number>.

  Formula for page type is
       GAM: Page ID = 2 or Page ID % 511232
        SGAM: Page ID = 3 or (Page ID – 1) % 511232
        PFS: Page ID = 1 or Page ID % 8088
Raise Error
If exists (SELECT session_id, wait_type, wait_duration_ms, blocking_session_id,
 resource_description,
 ResourceType = Case
  WHEN PageID = 1 OR PageID %8088 = 0 THEN 'Is PFS Page'
  WHEN PageID = 2 OR PageID % 511232 = 0 THEN 'Is GAM Page'
  WHEN PageID = 3 OR (PageID - 1) % 511232 = 0 THEN 'Is SGAM Page'
     END
FROM
(SELECT session_id, wait_type, wait_duration_ms, blocking_session_id, resource_description,
 CAST(RIGHT(resource_description, LEN(resource_description)
         - CHARINDEX(':', resource_description, 3)) AS INT) AS PageID
FROM sys.dm_os_waiting_tasks
WHERE wait_type LIKE 'PAGE%LATCH_%'
AND resource_description LIKE '2:%'
) AS tab)
DECLARE @StringVariable NVARCHAR(50)
Set @StringVariable = (Select
 ResourceType = Case
  WHEN PageID = 1 OR PageID %8088 = 0 THEN 'Contention On PFS Page'
  WHEN PageID = 2 OR PageID % 511232 = 0 THEN 'Contention On GAM Page'
  WHEN PageID = 3 OR (PageID - 1) % 511232 = 0 THEN 'Contention On SGAM Page'
    -- ELSE 'Is Not PFS, GAM, or SGAM page'
   END
FROM
(SELECT top 1
  CAST(RIGHT(resource_description, LEN(resource_description)
         - CHARINDEX(':', resource_description, 3)) AS INT) AS PageID
FROM sys.dm_os_waiting_tasks
WHERE wait_type LIKE 'PAGE%LATCH_%'
AND resource_description LIKE '2:%'
) as tab)
RAISERROR (@StringVariable, -- Message text.
        10, -- Severity,
        1 -- State
        ) with log
go 100
You have contention, now what?
Contention causes transactions to queue causing extended wait times.

•Add more data files
    • How many? 1 per core, 1 per 2 cores, 1 per 4 cores
    • Microsoft still states 1 data file per core
    • In real life it depends on concurrent processes On an 8 core system
      how many concurrent processes can there be?

•Don’t over do it - to many files can have negative impact

•Create equal size files. MSSQL uses proportional fill model meaning a
larger file will be used more than the others.

•Multiple data files help reduce contention since each file has its own GAM,
SGAM and PFS information.
• Troubleshoot TEMPDB I/O like you would any other database
• Put TEMPDB on your fastest possible drives
• Put TEMPDB on the fastest RAID you can support
• Avoid memory overflows that spill to tempdb.
• Avoid long running queries in the version store
• Pre-size Files to Avoid Auto-growth


Options for more IOPs
• Put data files and log file on different sets of disks
• Split the individual data files to different sets of disks


Need more IOPs
    Visit FUSIONIO.COM. GO with SSD’s, with over 100,000 IOPs
Were you paying attention?
How often should you back up TEMPDB?
How many data files per core?
How often should you shrink TEMPDB?
Where should you place your TEMPDB data and log files?
What does PFS, GAM and SGAM mean?
Tim Radney, Senior DBA for a top 40
  US Bank
President of “Columbus GA SQL Users
  Group”

Robert Davis, Idera ACE, MCM, MVP

More Related Content

PPSX
MS SQL Backups explained by a DBA
PPSX
Randomizing Data With SQL Server
PDF
Don’t give up, You can... Cache!
PPTX
Caching in drupal
PPT
Sql Server Basics
DOCX
Data replication
PDF
Sql server 2016 new features
PPTX
Investigate TempDB Like Sherlock Holmes
MS SQL Backups explained by a DBA
Randomizing Data With SQL Server
Don’t give up, You can... Cache!
Caching in drupal
Sql Server Basics
Data replication
Sql server 2016 new features
Investigate TempDB Like Sherlock Holmes

Similar to Tempdb Not your average Database (20)

PPTX
Sql server performance tuning
PPTX
Geek Sync | Guide to Understanding and Monitoring Tempdb
PDF
SQL Server Performance Analysis
PDF
Ajuste (tuning) del rendimiento de SQL Server 2008
PDF
Back2 Basic Tools
PDF
Back 2 basics - SSMS Tips (IDf)
PPTX
Managing SQLserver for the reluctant DBA
PDF
PPTX
SQL Server Wait Types Everyone Should Know
PPT
Sql Server Performance Tuning
PPTX
Inside tempdb
PPTX
Indy pass writing efficient queries – part 1 - indexing
PDF
SQLServer Database Structures
PPTX
Optimize TempDB
PPT
Managing SQLserver
PPTX
Investigate SQL Server Memory Like Sherlock Holmes
PDF
Tips and Tricks for SAP Sybase ASE
PPT
Troubleshooting SQL Server
PPTX
It Depends
PPTX
Sql Server
Sql server performance tuning
Geek Sync | Guide to Understanding and Monitoring Tempdb
SQL Server Performance Analysis
Ajuste (tuning) del rendimiento de SQL Server 2008
Back2 Basic Tools
Back 2 basics - SSMS Tips (IDf)
Managing SQLserver for the reluctant DBA
SQL Server Wait Types Everyone Should Know
Sql Server Performance Tuning
Inside tempdb
Indy pass writing efficient queries – part 1 - indexing
SQLServer Database Structures
Optimize TempDB
Managing SQLserver
Investigate SQL Server Memory Like Sherlock Holmes
Tips and Tricks for SAP Sybase ASE
Troubleshooting SQL Server
It Depends
Sql Server
Ad

Recently uploaded (20)

PDF
Developing a website for English-speaking practice to English as a foreign la...
PPTX
The various Industrial Revolutions .pptx
PPTX
Custom Battery Pack Design Considerations for Performance and Safety
PPTX
Configure Apache Mutual Authentication
PPTX
Microsoft Excel 365/2024 Beginner's training
PPTX
2018-HIPAA-Renewal-Training for executives
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
PPTX
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
PPT
Module 1.ppt Iot fundamentals and Architecture
PDF
Two-dimensional Klein-Gordon and Sine-Gordon numerical solutions based on dee...
PDF
1 - Historical Antecedents, Social Consideration.pdf
PDF
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
PDF
Hindi spoken digit analysis for native and non-native speakers
PDF
Five Habits of High-Impact Board Members
PPTX
Modernising the Digital Integration Hub
PDF
A contest of sentiment analysis: k-nearest neighbor versus neural network
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
PPTX
Chapter 5: Probability Theory and Statistics
PDF
NewMind AI Weekly Chronicles – August ’25 Week III
PDF
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
Developing a website for English-speaking practice to English as a foreign la...
The various Industrial Revolutions .pptx
Custom Battery Pack Design Considerations for Performance and Safety
Configure Apache Mutual Authentication
Microsoft Excel 365/2024 Beginner's training
2018-HIPAA-Renewal-Training for executives
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
Module 1.ppt Iot fundamentals and Architecture
Two-dimensional Klein-Gordon and Sine-Gordon numerical solutions based on dee...
1 - Historical Antecedents, Social Consideration.pdf
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
Hindi spoken digit analysis for native and non-native speakers
Five Habits of High-Impact Board Members
Modernising the Digital Integration Hub
A contest of sentiment analysis: k-nearest neighbor versus neural network
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
Chapter 5: Probability Theory and Statistics
NewMind AI Weekly Chronicles – August ’25 Week III
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
Ad

Tempdb Not your average Database

  • 1. It is more than just a little system database. •Joe Hellsten •Senior DBA @ rackspace
  • 2. It is installed by default but what is it?  TEMPDB is the Junk Drawer of SQL Server “quoted by many” • Temporary Objects • User Objects – triggers, queries, temporary tables, variables, etc • Internal Objects – sorts, triggers, work tables, XML variables or other LOB data type variables • Version stores – Snapshot Isolation (SI), Read Committed Snapshot Isolation (RCSI), After triggers, Online index rebuilds • RCSI is cheaper than SI why? • SQL 2012 AlwaysOn Readable Secondary makes use of tempdb for statistics and enables SI, which leverages tempdb for row versioning. • Other objects that use TEMPDB  Service Broker, event notification, database mail, index creations, user- defined functions  SELECT  UserObjectPages =SUM(user_object_reserved_page_count),  UserObjectsMB =SUM(user_object_reserved_page_count)/128.0,  InternalObjectPages =SUM(internal_object_reserved_page_count),  InternalObjectsMB =SUM(internal_object_reserved_page_count)/128.0,  VersionStorePages =SUM(version_store_reserved_page_count),  VersionStoreMB =SUM(version_store_reserved_page_count)/128.0,  FreePages =SUM(unallocated_extent_page_count),  FreeSpaceMB =SUM(unallocated_extent_page_count)/128.0  FROM sys.dm_db_file_space_usage;
  • 3. What makes this guy unique?  It is recreated each time SQL Server is started  It is modeled after the Model database  If it has grown, it is reset to its default when recreated  Can not have user defined file groups created  Auto Shrink can not be used on TEMPDB (even though it is an option)  A database snapshot can not be created on TEMPDB  SQL 2012 can be on local disk for clusters  THERE IS ONLY ONE TEMPDB FOR THE ENTIRE INSTANCE!
  • 4. A good starting point for configuring TEMPDB TEMPDB should reside on a different disk than system and user dbs Depending on disk IO you might need to split the data and log file onto different disks as well Size TEMPDB accordingly Make sure instant file initialization is enabled (OS Security Policy- enable volume maintenance) Set auto grow to a fixed value, don’t use percentage TEMPDB should be on a fast I/O subsystem Multiple equal size data files depending on contention
  • 5. Did I say CONTENTION? What is contention? Wikipedia = “competition by users of a system for the facility at the same time” •Latch contention on allocation pages • Extent allocations are tracked and managed in the data files by allocation pages. • PFS – Page Free Space. One PFS page per .5 GB of data file. Tracks how much free space each page has. Page 1 in the data file. Repeats every 8088 pages. • GAM – Global Allocation Map. One GAM page per 4 GB of data file. Tracks extents. Page 2 in the data file. Repeats every 511,232 pages. • SGAM – Shared Global Allocation Map. One SGAM page per 4 GB of data file. Tracks extents being used as shared extents. Page 3 in the data file. Repeats every 511,232 pages
  • 6. How to find contention in TEMPDB •sys.dm_os_waiting_tasks •Any tasks waiting on PageLatch or PageIOLatch SELECT session_id AS sessionid, wait_duration_ms AS wait_time_in_milliseconds, resource_description AS type_of_allocation_contention FROM sys.dm_os_waiting_tasks WHERE wait_type LIKE ‘Page%latch_%’ AND (resource_description LIKE ‘2:%’) This query will give you the session, wait duration and resource description. Resource Description is <database ID>:<file ID>:<page number>. Formula for page type is  GAM: Page ID = 2 or Page ID % 511232 SGAM: Page ID = 3 or (Page ID – 1) % 511232 PFS: Page ID = 1 or Page ID % 8088
  • 7. Raise Error If exists (SELECT session_id, wait_type, wait_duration_ms, blocking_session_id, resource_description, ResourceType = Case WHEN PageID = 1 OR PageID %8088 = 0 THEN 'Is PFS Page' WHEN PageID = 2 OR PageID % 511232 = 0 THEN 'Is GAM Page' WHEN PageID = 3 OR (PageID - 1) % 511232 = 0 THEN 'Is SGAM Page' END FROM (SELECT session_id, wait_type, wait_duration_ms, blocking_session_id, resource_description, CAST(RIGHT(resource_description, LEN(resource_description) - CHARINDEX(':', resource_description, 3)) AS INT) AS PageID FROM sys.dm_os_waiting_tasks WHERE wait_type LIKE 'PAGE%LATCH_%' AND resource_description LIKE '2:%' ) AS tab) DECLARE @StringVariable NVARCHAR(50) Set @StringVariable = (Select ResourceType = Case WHEN PageID = 1 OR PageID %8088 = 0 THEN 'Contention On PFS Page' WHEN PageID = 2 OR PageID % 511232 = 0 THEN 'Contention On GAM Page' WHEN PageID = 3 OR (PageID - 1) % 511232 = 0 THEN 'Contention On SGAM Page' -- ELSE 'Is Not PFS, GAM, or SGAM page' END FROM (SELECT top 1 CAST(RIGHT(resource_description, LEN(resource_description) - CHARINDEX(':', resource_description, 3)) AS INT) AS PageID FROM sys.dm_os_waiting_tasks WHERE wait_type LIKE 'PAGE%LATCH_%' AND resource_description LIKE '2:%' ) as tab) RAISERROR (@StringVariable, -- Message text. 10, -- Severity, 1 -- State ) with log go 100
  • 8. You have contention, now what? Contention causes transactions to queue causing extended wait times. •Add more data files • How many? 1 per core, 1 per 2 cores, 1 per 4 cores • Microsoft still states 1 data file per core • In real life it depends on concurrent processes On an 8 core system how many concurrent processes can there be? •Don’t over do it - to many files can have negative impact •Create equal size files. MSSQL uses proportional fill model meaning a larger file will be used more than the others. •Multiple data files help reduce contention since each file has its own GAM, SGAM and PFS information.
  • 9. • Troubleshoot TEMPDB I/O like you would any other database • Put TEMPDB on your fastest possible drives • Put TEMPDB on the fastest RAID you can support • Avoid memory overflows that spill to tempdb. • Avoid long running queries in the version store • Pre-size Files to Avoid Auto-growth Options for more IOPs • Put data files and log file on different sets of disks • Split the individual data files to different sets of disks Need more IOPs Visit FUSIONIO.COM. GO with SSD’s, with over 100,000 IOPs
  • 10. Were you paying attention? How often should you back up TEMPDB? How many data files per core? How often should you shrink TEMPDB? Where should you place your TEMPDB data and log files? What does PFS, GAM and SGAM mean?
  • 11. Tim Radney, Senior DBA for a top 40 US Bank President of “Columbus GA SQL Users Group” Robert Davis, Idera ACE, MCM, MVP

Editor's Notes

  • #6: Brand Transformation Presentation
  • #7: Brand Transformation Presentation
  • #9: Brand Transformation Presentation