├── Installers ├── PivotedWaitStats_Installer.ps1 ├── PivotedWaitStats_Test.sql ├── PlanMiner_Installer.ps1 ├── QDSCacheCleanup_Installer.ps1 ├── QDSCacheCleanup_Test.sql ├── QDSToolBox_Installer.ps1 ├── QueryReport_Installer.ps1 ├── QueryReport_Test.sql ├── QueryVariation_Installer.ps1 ├── QueryVariation_Test.sql ├── QueryWaits_Installer.ps1 ├── QueryWaits_Test.sql ├── README.md ├── ServerTopObjects_Installer.ps1 ├── ServerTopObjects_Test.sql ├── ServerTopQueries_Installer.ps1 ├── ServerTopQueries_Test.sql ├── StatisticsUsed_Installer.ps1 ├── WaitsVariation_Installer.ps1 └── WaitsVariation_Test.sql ├── LICENSE ├── PivotedWaitStats ├── 0-schema.sql ├── 1-dbo.query_store_wait_stats_pivoted.View.sql └── README.md ├── PlanMiner ├── 00-schema.sql ├── 01-dbo.PlanMiner_PlanList.Table.sql ├── 02-dbo.vPlanMiner_PlanList.View.sql ├── 03-dbo.PlanMiner_Statements.Table.sql ├── 04-dbo.vPlanMiner_Statements.View.sql ├── 05-dbo.PlanMiner_IndexOperations.Table.sql ├── 06-dbo.PlanMiner_MissingIndexes.Table.sql ├── 07-dbo.PlanMiner_UnmatchedIndexes.Table.sql ├── 08-dbo.PlanMiner_Cursors.Table.sql ├── 09-dbo.PlanMiner_Statistics.Table.sql ├── 10-dbo.PlanMiner_Nodes.Table.sql ├── 11-dbo.PlanMiner_Columns.Table.sql ├── 20-dbo.PlanMiner.Procedure.sql └── README.md ├── QDSCacheCleanup ├── 0-schema.sql ├── 1-dbo.QDSCacheCleanupIndex.Table.sql ├── 2-dbo.QDSCacheCleanupDetails.Table.sql ├── 3-dbo.QDSCacheCleanup.Procedure.sql ├── 4-dbo.vQDSCacheCleanupIndex.View.sql ├── 5-dbo.vQDSCacheCleanupDetails.View.sql └── README.md ├── QueryReport ├── 0-schema.sql ├── 1-dbo.QueryReport.sql └── README.md ├── QueryVariation ├── 0-schema.sql ├── 1-dbo.QDSMetricArchive.Table.sql ├── 2-dbo.QueryVariationIndex.Table.sql ├── 3-dbo.QueryVariationStore.Table.sql ├── 4-dbo.QueryVariation.Procedure.sql ├── 5-dbo.vQueryVariationIndex.View.sql ├── 6-dbo.vQueryVariationStore.View.sql └── README.md ├── QueryWaits ├── 0-schema.sql ├── 1-dbo.QueryWaitsIndex.Table.sql ├── 2-dbo.QueryWaitsStore.Table.sql ├── 3-dbo.QueryWaits.Procedure.sql ├── 4-dbo.vQueryWaitsIndex.View.sql ├── 5-dbo.vQueryWaitsStore.View.sql └── README.md ├── README.md ├── ServerTopObjects ├── 0-schema.sql ├── 1-dbo.ServerTopObjectsIndex.Table.sql ├── 2-dbo.ServerTopObjectsStore.Table.sql ├── 3-dbo.vServerTopObjectsIndex.View.sql ├── 4-dbo.vServerTopObjectsStore.View.sql ├── 5-dbo.ServerTopObjects.Procedure.sql └── README.md ├── ServerTopQueries ├── 0-schema.sql ├── 1-dbo.ServerTopQueriesIndex.Table.sql ├── 2-dbo.ServerTopQueriesStore.Table.sql ├── 3-dbo.vServerTopQueriesIndex.View.sql ├── 4-dbo.vServerTopQueriesStore.View.sql ├── 5-dbo.ServerTopQueries.Procedure.sql └── README.md ├── StatisticsUsed ├── 0-schema.sql ├── 1-dbo.StatisticsSamplePercent.Function.sql ├── 2-dbo.StatisticsUsed.Procedure.sql └── README.md ├── WaitsVariation ├── 0-schema.sql ├── 1-dbo.WaitsVariationIndex.Table.sql ├── 2-dbo.WaitsVariationStore.Table.sql ├── 3-dbo.vWaitsVariationIndexView.sql ├── 4-dbo.vWaitsVariationStore.View.sql ├── 5-dbo.WaitsVariation.Procedure.sql ├── 6-dbo.WaitsVariationFromStore.Procedure.sql └── README.md └── qdstoolbox.svg /Installers/PivotedWaitStats_Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/PivotedWaitStats_Installer.ps1 -------------------------------------------------------------------------------- /Installers/PivotedWaitStats_Test.sql: -------------------------------------------------------------------------------- 1 | SELECT TOP(0) FROM [dbo].[query_store_wait_stats_pivoted] -------------------------------------------------------------------------------- /Installers/PlanMiner_Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/PlanMiner_Installer.ps1 -------------------------------------------------------------------------------- /Installers/QDSCacheCleanup_Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/QDSCacheCleanup_Installer.ps1 -------------------------------------------------------------------------------- /Installers/QDSCacheCleanup_Test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/QDSCacheCleanup_Test.sql -------------------------------------------------------------------------------- /Installers/QDSToolBox_Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/QDSToolBox_Installer.ps1 -------------------------------------------------------------------------------- /Installers/QueryReport_Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/QueryReport_Installer.ps1 -------------------------------------------------------------------------------- /Installers/QueryReport_Test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/QueryReport_Test.sql -------------------------------------------------------------------------------- /Installers/QueryVariation_Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/QueryVariation_Installer.ps1 -------------------------------------------------------------------------------- /Installers/QueryVariation_Test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/QueryVariation_Test.sql -------------------------------------------------------------------------------- /Installers/QueryWaits_Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/QueryWaits_Installer.ps1 -------------------------------------------------------------------------------- /Installers/QueryWaits_Test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/QueryWaits_Test.sql -------------------------------------------------------------------------------- /Installers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/README.md -------------------------------------------------------------------------------- /Installers/ServerTopObjects_Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/ServerTopObjects_Installer.ps1 -------------------------------------------------------------------------------- /Installers/ServerTopObjects_Test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/ServerTopObjects_Test.sql -------------------------------------------------------------------------------- /Installers/ServerTopQueries_Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/ServerTopQueries_Installer.ps1 -------------------------------------------------------------------------------- /Installers/ServerTopQueries_Test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/ServerTopQueries_Test.sql -------------------------------------------------------------------------------- /Installers/StatisticsUsed_Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/StatisticsUsed_Installer.ps1 -------------------------------------------------------------------------------- /Installers/WaitsVariation_Installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/WaitsVariation_Installer.ps1 -------------------------------------------------------------------------------- /Installers/WaitsVariation_Test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/Installers/WaitsVariation_Test.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /PivotedWaitStats/0-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PivotedWaitStats/0-schema.sql -------------------------------------------------------------------------------- /PivotedWaitStats/1-dbo.query_store_wait_stats_pivoted.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PivotedWaitStats/1-dbo.query_store_wait_stats_pivoted.View.sql -------------------------------------------------------------------------------- /PivotedWaitStats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PivotedWaitStats/README.md -------------------------------------------------------------------------------- /PlanMiner/00-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/00-schema.sql -------------------------------------------------------------------------------- /PlanMiner/01-dbo.PlanMiner_PlanList.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/01-dbo.PlanMiner_PlanList.Table.sql -------------------------------------------------------------------------------- /PlanMiner/02-dbo.vPlanMiner_PlanList.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/02-dbo.vPlanMiner_PlanList.View.sql -------------------------------------------------------------------------------- /PlanMiner/03-dbo.PlanMiner_Statements.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/03-dbo.PlanMiner_Statements.Table.sql -------------------------------------------------------------------------------- /PlanMiner/04-dbo.vPlanMiner_Statements.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/04-dbo.vPlanMiner_Statements.View.sql -------------------------------------------------------------------------------- /PlanMiner/05-dbo.PlanMiner_IndexOperations.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/05-dbo.PlanMiner_IndexOperations.Table.sql -------------------------------------------------------------------------------- /PlanMiner/06-dbo.PlanMiner_MissingIndexes.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/06-dbo.PlanMiner_MissingIndexes.Table.sql -------------------------------------------------------------------------------- /PlanMiner/07-dbo.PlanMiner_UnmatchedIndexes.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/07-dbo.PlanMiner_UnmatchedIndexes.Table.sql -------------------------------------------------------------------------------- /PlanMiner/08-dbo.PlanMiner_Cursors.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/08-dbo.PlanMiner_Cursors.Table.sql -------------------------------------------------------------------------------- /PlanMiner/09-dbo.PlanMiner_Statistics.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/09-dbo.PlanMiner_Statistics.Table.sql -------------------------------------------------------------------------------- /PlanMiner/10-dbo.PlanMiner_Nodes.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/10-dbo.PlanMiner_Nodes.Table.sql -------------------------------------------------------------------------------- /PlanMiner/11-dbo.PlanMiner_Columns.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/11-dbo.PlanMiner_Columns.Table.sql -------------------------------------------------------------------------------- /PlanMiner/20-dbo.PlanMiner.Procedure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/20-dbo.PlanMiner.Procedure.sql -------------------------------------------------------------------------------- /PlanMiner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/PlanMiner/README.md -------------------------------------------------------------------------------- /QDSCacheCleanup/0-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QDSCacheCleanup/0-schema.sql -------------------------------------------------------------------------------- /QDSCacheCleanup/1-dbo.QDSCacheCleanupIndex.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QDSCacheCleanup/1-dbo.QDSCacheCleanupIndex.Table.sql -------------------------------------------------------------------------------- /QDSCacheCleanup/2-dbo.QDSCacheCleanupDetails.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QDSCacheCleanup/2-dbo.QDSCacheCleanupDetails.Table.sql -------------------------------------------------------------------------------- /QDSCacheCleanup/3-dbo.QDSCacheCleanup.Procedure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QDSCacheCleanup/3-dbo.QDSCacheCleanup.Procedure.sql -------------------------------------------------------------------------------- /QDSCacheCleanup/4-dbo.vQDSCacheCleanupIndex.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QDSCacheCleanup/4-dbo.vQDSCacheCleanupIndex.View.sql -------------------------------------------------------------------------------- /QDSCacheCleanup/5-dbo.vQDSCacheCleanupDetails.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QDSCacheCleanup/5-dbo.vQDSCacheCleanupDetails.View.sql -------------------------------------------------------------------------------- /QDSCacheCleanup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QDSCacheCleanup/README.md -------------------------------------------------------------------------------- /QueryReport/0-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryReport/0-schema.sql -------------------------------------------------------------------------------- /QueryReport/1-dbo.QueryReport.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryReport/1-dbo.QueryReport.sql -------------------------------------------------------------------------------- /QueryReport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryReport/README.md -------------------------------------------------------------------------------- /QueryVariation/0-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryVariation/0-schema.sql -------------------------------------------------------------------------------- /QueryVariation/1-dbo.QDSMetricArchive.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryVariation/1-dbo.QDSMetricArchive.Table.sql -------------------------------------------------------------------------------- /QueryVariation/2-dbo.QueryVariationIndex.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryVariation/2-dbo.QueryVariationIndex.Table.sql -------------------------------------------------------------------------------- /QueryVariation/3-dbo.QueryVariationStore.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryVariation/3-dbo.QueryVariationStore.Table.sql -------------------------------------------------------------------------------- /QueryVariation/4-dbo.QueryVariation.Procedure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryVariation/4-dbo.QueryVariation.Procedure.sql -------------------------------------------------------------------------------- /QueryVariation/5-dbo.vQueryVariationIndex.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryVariation/5-dbo.vQueryVariationIndex.View.sql -------------------------------------------------------------------------------- /QueryVariation/6-dbo.vQueryVariationStore.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryVariation/6-dbo.vQueryVariationStore.View.sql -------------------------------------------------------------------------------- /QueryVariation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryVariation/README.md -------------------------------------------------------------------------------- /QueryWaits/0-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryWaits/0-schema.sql -------------------------------------------------------------------------------- /QueryWaits/1-dbo.QueryWaitsIndex.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryWaits/1-dbo.QueryWaitsIndex.Table.sql -------------------------------------------------------------------------------- /QueryWaits/2-dbo.QueryWaitsStore.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryWaits/2-dbo.QueryWaitsStore.Table.sql -------------------------------------------------------------------------------- /QueryWaits/3-dbo.QueryWaits.Procedure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryWaits/3-dbo.QueryWaits.Procedure.sql -------------------------------------------------------------------------------- /QueryWaits/4-dbo.vQueryWaitsIndex.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryWaits/4-dbo.vQueryWaitsIndex.View.sql -------------------------------------------------------------------------------- /QueryWaits/5-dbo.vQueryWaitsStore.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryWaits/5-dbo.vQueryWaitsStore.View.sql -------------------------------------------------------------------------------- /QueryWaits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/QueryWaits/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/README.md -------------------------------------------------------------------------------- /ServerTopObjects/0-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopObjects/0-schema.sql -------------------------------------------------------------------------------- /ServerTopObjects/1-dbo.ServerTopObjectsIndex.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopObjects/1-dbo.ServerTopObjectsIndex.Table.sql -------------------------------------------------------------------------------- /ServerTopObjects/2-dbo.ServerTopObjectsStore.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopObjects/2-dbo.ServerTopObjectsStore.Table.sql -------------------------------------------------------------------------------- /ServerTopObjects/3-dbo.vServerTopObjectsIndex.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopObjects/3-dbo.vServerTopObjectsIndex.View.sql -------------------------------------------------------------------------------- /ServerTopObjects/4-dbo.vServerTopObjectsStore.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopObjects/4-dbo.vServerTopObjectsStore.View.sql -------------------------------------------------------------------------------- /ServerTopObjects/5-dbo.ServerTopObjects.Procedure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopObjects/5-dbo.ServerTopObjects.Procedure.sql -------------------------------------------------------------------------------- /ServerTopObjects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopObjects/README.md -------------------------------------------------------------------------------- /ServerTopQueries/0-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopQueries/0-schema.sql -------------------------------------------------------------------------------- /ServerTopQueries/1-dbo.ServerTopQueriesIndex.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopQueries/1-dbo.ServerTopQueriesIndex.Table.sql -------------------------------------------------------------------------------- /ServerTopQueries/2-dbo.ServerTopQueriesStore.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopQueries/2-dbo.ServerTopQueriesStore.Table.sql -------------------------------------------------------------------------------- /ServerTopQueries/3-dbo.vServerTopQueriesIndex.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopQueries/3-dbo.vServerTopQueriesIndex.View.sql -------------------------------------------------------------------------------- /ServerTopQueries/4-dbo.vServerTopQueriesStore.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopQueries/4-dbo.vServerTopQueriesStore.View.sql -------------------------------------------------------------------------------- /ServerTopQueries/5-dbo.ServerTopQueries.Procedure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopQueries/5-dbo.ServerTopQueries.Procedure.sql -------------------------------------------------------------------------------- /ServerTopQueries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/ServerTopQueries/README.md -------------------------------------------------------------------------------- /StatisticsUsed/0-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/StatisticsUsed/0-schema.sql -------------------------------------------------------------------------------- /StatisticsUsed/1-dbo.StatisticsSamplePercent.Function.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/StatisticsUsed/1-dbo.StatisticsSamplePercent.Function.sql -------------------------------------------------------------------------------- /StatisticsUsed/2-dbo.StatisticsUsed.Procedure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/StatisticsUsed/2-dbo.StatisticsUsed.Procedure.sql -------------------------------------------------------------------------------- /StatisticsUsed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/StatisticsUsed/README.md -------------------------------------------------------------------------------- /WaitsVariation/0-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/WaitsVariation/0-schema.sql -------------------------------------------------------------------------------- /WaitsVariation/1-dbo.WaitsVariationIndex.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/WaitsVariation/1-dbo.WaitsVariationIndex.Table.sql -------------------------------------------------------------------------------- /WaitsVariation/2-dbo.WaitsVariationStore.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/WaitsVariation/2-dbo.WaitsVariationStore.Table.sql -------------------------------------------------------------------------------- /WaitsVariation/3-dbo.vWaitsVariationIndexView.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/WaitsVariation/3-dbo.vWaitsVariationIndexView.sql -------------------------------------------------------------------------------- /WaitsVariation/4-dbo.vWaitsVariationStore.View.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/WaitsVariation/4-dbo.vWaitsVariationStore.View.sql -------------------------------------------------------------------------------- /WaitsVariation/5-dbo.WaitsVariation.Procedure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/WaitsVariation/5-dbo.WaitsVariation.Procedure.sql -------------------------------------------------------------------------------- /WaitsVariation/6-dbo.WaitsVariationFromStore.Procedure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/WaitsVariation/6-dbo.WaitsVariationFromStore.Procedure.sql -------------------------------------------------------------------------------- /WaitsVariation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/WaitsVariation/README.md -------------------------------------------------------------------------------- /qdstoolbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/channeladvisor/qdstoolbox/HEAD/qdstoolbox.svg --------------------------------------------------------------------------------