├── Handouts ├── CountersUsefulForSQLServer.xlsx ├── JD_Accelerated_Database_Recovery.pdf ├── JD_IQP_2022.pdf ├── JD_Intro_Query_Store_2019.pdf ├── JD_Query_Optimze_2021.pdf ├── JD_TempDB_Improvement_2022.pdf ├── JD_Waits_Queues_2022.pdf ├── New_Features_SQL_2025.pdf ├── PTOLabTimes.pdf ├── Redeeming Training Key and Lab Setup.pdf └── make_big_adventure.zip ├── IQP_2022 └── IQP_2022 │ ├── .vs │ └── IQP_2022 │ │ └── v15 │ │ └── .ssms_suo │ ├── IQP_2022.ssmssln │ ├── IQP_2022 │ ├── IQP_2022.ssmssqlproj │ ├── iqp_Adaptive_Joins.sql │ ├── iqp_Approx_Count_Distinct.sql │ ├── iqp_BatchModeRowStore.sql │ ├── iqp_Interleaved_Execution.sql │ ├── iqp_Memory_Grant_Feedback_Row.sql │ ├── iqp_Scalar_UDF_Inlining.sql │ └── iqp_Table_Variable_Deferred.sql │ ├── iqp_Adaptive_Joins.sql │ ├── iqp_Approx_Count_Distinct.sql │ ├── iqp_BatchModeRowStore.sql │ ├── iqp_Interleaved_Execution.sql │ ├── iqp_Memory_Grant_Feedback_Row.sql │ ├── iqp_Scalar_UDF_Inlining.sql │ └── iqp_Table_Variable_Deferred.sql ├── InMemoryTables ├── .vs │ └── InMemoryTables │ │ └── v15 │ │ └── .ssms_suo ├── InMemoryTables.ssmssln └── InMemoryTables │ ├── 01_Database_01_CreatingDB.sql │ ├── 02_Create_Table_Proc.sql │ ├── 03_Test_Performance.sql │ └── InMemoryTables.ssmssqlproj ├── PDF ├── JD01 - SQL Server Architecture, Scheduling and Waits.pdf ├── JD02 - SQL Server Processor and Memory Management.pdf ├── JD03 - SQL Server IO and Database Structure.pdf ├── JD04 - SQL Server Transactions and Concurrency.pdf ├── JD05 - SQL Server Index Structure.pdf ├── JD06 - SQL Server Statistics Structure.pdf ├── JD07 - SQL Server Query Execution and Plans.pdf ├── JD08 - SQL Server Plan Caching and Query Store.pdf ├── JD09 - SQL Server Query Tuning.pdf ├── JDS10 - Optional Lessons.pdf └── PTOLabTimes.pdf └── SQL_PTO_Demos ├── .vs └── SQL_PTO_Demos │ ├── FileContentIndex │ ├── 8765f403-7fd2-4237-8372-e19a0e0533f7.vsidx │ ├── bf92ece4-4ef3-4e07-bf05-71c6b549aa67.vsidx │ ├── cab81b10-8167-4e79-a6a8-a368e31d9044.vsidx │ ├── cbdda471-d36b-4a00-89e4-58a964effeb3.vsidx │ └── ee9d5711-1249-46d3-8122-5bbea09d3b84.vsidx │ ├── v15 │ └── .ssms_suo │ └── v17 │ ├── .suo │ ├── DocumentLayout.backup.json │ └── DocumentLayout.json ├── 01_SQL_Architecture ├── .vs │ └── 01_SQL_Architecture │ │ ├── FileContentIndex │ │ └── 374c7d06-5556-4afc-bb68-74d3af37f14a.vsidx │ │ └── v17 │ │ └── .suo ├── 01_DMV_Intro.sql ├── 01_RCSI_Enable.sql ├── 01_SQL_Architecture.ssmssqlproj ├── 01_Waits.sql ├── Blocking_1.sql ├── Blocking_2.sql └── Execution_Session_DMV.sql ├── 02_Processors_Memory ├── 02_Processors_Memory.ssmssqlproj └── Examining_Memory_Usage.sql ├── 03_Database_Structure ├── .vs │ └── 03_Database_Structure │ │ ├── FileContentIndex │ │ ├── 2050bf1c-715b-479b-875d-fb44c8b48cfc.vsidx │ │ ├── 792d0685-0e9a-42c8-8526-ee725465b829.vsidx │ │ ├── dfb05cb5-c6b9-430a-bb2c-12a01885d203.vsidx │ │ └── e13dd7ec-b316-4462-a259-392fecaf6066.vsidx │ │ └── v17 │ │ ├── .suo │ │ ├── DocumentLayout.backup.json │ │ └── DocumentLayout.json ├── 01_Exec_OS_DMV.sql ├── 03_DBCC_Statements.sql ├── 03_Database_Structure.sln ├── 03_Database_Structure.ssmssqlproj ├── 03_Display_Statistics.sql ├── 03_Simplified_ADR_Demo.sql ├── 03_TransLog_Reading.sql └── Enable_ADR_All_Databases.sql ├── 04_Transacations_Concurrency ├── 04_Transacations_Concurrency.ssmssqlproj ├── 04a_Add_Records.sql ├── 04a_BankAccount_Select.sql ├── 04a_Demo_Setup.sql ├── 04b_LockingDemo.sql ├── 04c_DirtyRead1.sql ├── 04c_DirtyRead2.sql ├── 04c_LostUpdate1.sql ├── 04c_LostUpdate2.sql ├── 04c_Phantom1.sql ├── 04c_Phantom2.sql ├── 04c_RepeatRead1.sql ├── 04c_RepeatRead2.sql ├── 04d_BlockingDemo1.sql ├── 04d_BlockingDemo2.sql ├── 04d_DeadLockDemo2.sql ├── 04d_DeadlockDemo1.sql └── 04t_Transactions_Demo.sql ├── 05_Indexing_Strategy ├── .vs │ └── 05_Indexing_Strategy │ │ ├── FileContentIndex │ │ └── 644d93c1-2414-40d7-bc80-7f8422f2384f.vsidx │ │ └── v17 │ │ └── .suo ├── 05_FilteredIndex.sql ├── 05_Index_Fragmentation.sql ├── 05_Index_Operational_Stats.sql ├── 05_Index_Usage_01.sql ├── 05_Index_Usage_Script.sql ├── 05_Indexing_Strategy.ssmssqlproj ├── 05_NCI_Column_Order.sql ├── 05_NCI_Covering_Includes.sql ├── 05_NCI_Data_Type_Size.sql ├── 05_Seek_Scan_Tipping_Point.sql ├── 05_TableScan_ClusteredScan.sql ├── 05a_Add_Records.sql ├── 05a_Demo_Setup.sql ├── 05e_Partition_Database.sql └── 05e_Partition_Index.sql ├── 06_Statistics_Maintenance ├── 06_CardinalityEstimation.sql ├── 06_Display_Statistics.sql ├── 06_Stale_Statstics.sql └── 06_Statistics_Maintenance.ssmssqlproj ├── 07_Execution_Plans ├── 07_Exec_Plan_Join_Operators.sql ├── 07_Execution_Flow.sql ├── 07_Execution_Plans.ssmssqlproj ├── 07_Live_Query_Stats.sql ├── 07_Optimization_Phases.sql ├── 07_ShowPlan_All.sql ├── 08_Plan_Guides - Copy.sql └── 08_Plan_Guides.sql ├── 08_Plan_Cache_Query_Store ├── 08_Ad_Hoc_Workload.sql ├── 08_Loop_Product_Info.sql ├── 08_Parameter_Sniffing.sql ├── 08_PlanCache_QueryTunning.sql ├── 08_PlanCache_Top10.sql ├── 08_Plan_Cache_Query_Store.ssmssqlproj ├── 08_Plan_Guides.sql ├── 08_QueryStore_ADworks.sql ├── 08_QueryStore_ADworksLT.sql ├── 08_QueryStore_DMV.sql ├── 08_QueryStore_GetProductInfo.sql ├── 08_query_store_hints.sql ├── SQLQuery1.sql └── SQLQuery2.sql ├── 10_Indexing_Extra ├── .vs │ └── 04_Indexing_Extra │ │ └── v15 │ │ └── .ssms_suo ├── 04_Indexing_Extra.ssmssqlproj ├── 04e_Columnstore_Index.sql ├── 04e_Partition_ADWorks.sql ├── 04e_Partition_Database.sql ├── 04e_Partition_Index.sql └── 04e_WWI_Extend_Order_History.sql ├── IQP_2022 └── IQP_2022 │ ├── .vs │ └── IQP_2022 │ │ └── v15 │ │ └── .ssms_suo │ ├── IQP_2022.ssmssln │ ├── IQP_2022 │ ├── IQP_2022.ssmssqlproj │ ├── iqp_Adaptive_Joins.sql │ ├── iqp_Approx_Count_Distinct.sql │ ├── iqp_BatchModeRowStore.sql │ ├── iqp_Interleaved_Execution.sql │ ├── iqp_Memory_Grant_Feedback_Row.sql │ ├── iqp_Scalar_UDF_Inlining.sql │ └── iqp_Table_Variable_Deferred.sql │ ├── iqp_Adaptive_Joins.sql │ ├── iqp_Approx_Count_Distinct.sql │ ├── iqp_BatchModeRowStore.sql │ ├── iqp_Interleaved_Execution.sql │ ├── iqp_Memory_Grant_Feedback_Row.sql │ ├── iqp_Scalar_UDF_Inlining.sql │ └── iqp_Table_Variable_Deferred.sql ├── InMemoryTables ├── .vs │ └── InMemoryTables │ │ └── v15 │ │ └── .ssms_suo ├── InMemoryTables.ssmssln └── InMemoryTables │ ├── 01_Database_01_CreatingDB.sql │ ├── 02_Create_Table_Proc.sql │ ├── 03_Test_Performance.sql │ └── InMemoryTables.ssmssqlproj ├── Resource Governor ├── .vs │ └── Resource Governor │ │ └── v15 │ │ └── .ssms_suo ├── 01. Configure Resource Governor.sql ├── 02. Examine Resource Governor objects.sql ├── 03. Cleanup Resource Governor.sql ├── OStress │ ├── 02_tempstress.sql │ ├── 02_tempstress_ddl.sql │ ├── 14_CPU_Intensive_Loop01.sql │ ├── 14_CPU_Intensive_Loop02.sql │ ├── 14_CPU_Intensive_Loop03.sql │ ├── CPUSales01 │ │ ├── 14_CPU_Intensive_Loop01.out │ │ ├── 14_CPU_Intensive_Loop01_1.out │ │ ├── 14_CPU_Intensive_Loop01_10.out │ │ ├── 14_CPU_Intensive_Loop01_11.out │ │ ├── 14_CPU_Intensive_Loop01_12.out │ │ ├── 14_CPU_Intensive_Loop01_13.out │ │ ├── 14_CPU_Intensive_Loop01_14.out │ │ ├── 14_CPU_Intensive_Loop01_15.out │ │ ├── 14_CPU_Intensive_Loop01_16.out │ │ ├── 14_CPU_Intensive_Loop01_17.out │ │ ├── 14_CPU_Intensive_Loop01_18.out │ │ ├── 14_CPU_Intensive_Loop01_19.out │ │ ├── 14_CPU_Intensive_Loop01_2.out │ │ ├── 14_CPU_Intensive_Loop01_3.out │ │ ├── 14_CPU_Intensive_Loop01_4.out │ │ ├── 14_CPU_Intensive_Loop01_5.out │ │ ├── 14_CPU_Intensive_Loop01_6.out │ │ ├── 14_CPU_Intensive_Loop01_7.out │ │ ├── 14_CPU_Intensive_Loop01_8.out │ │ ├── 14_CPU_Intensive_Loop01_9.out │ │ └── ostress.log │ ├── CPUSales02 │ │ ├── 14_CPU_Intensive_Loop02.out │ │ ├── 14_CPU_Intensive_Loop02_1.out │ │ ├── 14_CPU_Intensive_Loop02_10.out │ │ ├── 14_CPU_Intensive_Loop02_11.out │ │ ├── 14_CPU_Intensive_Loop02_12.out │ │ ├── 14_CPU_Intensive_Loop02_13.out │ │ ├── 14_CPU_Intensive_Loop02_14.out │ │ ├── 14_CPU_Intensive_Loop02_15.out │ │ ├── 14_CPU_Intensive_Loop02_16.out │ │ ├── 14_CPU_Intensive_Loop02_17.out │ │ ├── 14_CPU_Intensive_Loop02_18.out │ │ ├── 14_CPU_Intensive_Loop02_19.out │ │ ├── 14_CPU_Intensive_Loop02_2.out │ │ ├── 14_CPU_Intensive_Loop02_3.out │ │ ├── 14_CPU_Intensive_Loop02_4.out │ │ ├── 14_CPU_Intensive_Loop02_5.out │ │ ├── 14_CPU_Intensive_Loop02_6.out │ │ ├── 14_CPU_Intensive_Loop02_7.out │ │ ├── 14_CPU_Intensive_Loop02_8.out │ │ ├── 14_CPU_Intensive_Loop02_9.out │ │ └── ostress.log │ ├── CPUSales03 │ │ ├── 14_CPU_Intensive_Loop03.out │ │ ├── 14_CPU_Intensive_Loop03_1.out │ │ ├── 14_CPU_Intensive_Loop03_10.out │ │ ├── 14_CPU_Intensive_Loop03_11.out │ │ ├── 14_CPU_Intensive_Loop03_12.out │ │ ├── 14_CPU_Intensive_Loop03_13.out │ │ ├── 14_CPU_Intensive_Loop03_14.out │ │ ├── 14_CPU_Intensive_Loop03_15.out │ │ ├── 14_CPU_Intensive_Loop03_16.out │ │ ├── 14_CPU_Intensive_Loop03_17.out │ │ ├── 14_CPU_Intensive_Loop03_18.out │ │ ├── 14_CPU_Intensive_Loop03_19.out │ │ ├── 14_CPU_Intensive_Loop03_2.out │ │ ├── 14_CPU_Intensive_Loop03_3.out │ │ ├── 14_CPU_Intensive_Loop03_4.out │ │ ├── 14_CPU_Intensive_Loop03_5.out │ │ ├── 14_CPU_Intensive_Loop03_6.out │ │ ├── 14_CPU_Intensive_Loop03_7.out │ │ ├── 14_CPU_Intensive_Loop03_8.out │ │ ├── 14_CPU_Intensive_Loop03_9.out │ │ └── ostress.log │ ├── QueryMKT1_CPU.bat │ ├── QueryOps_CPU.bat │ ├── QuerySales_CPU.bat │ ├── ostress.exe │ └── stresslog.sql ├── Resource Governor Introduction.pptx ├── Resource Governor.ssmssln └── Resource Governor.ssmssqlproj ├── RightJoinTest.sql ├── SQL_PTO_Demos.sln └── SQL_PTO_Demos.ssmssln /Handouts/CountersUsefulForSQLServer.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/Handouts/CountersUsefulForSQLServer.xlsx -------------------------------------------------------------------------------- /Handouts/JD_Accelerated_Database_Recovery.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/Handouts/JD_Accelerated_Database_Recovery.pdf -------------------------------------------------------------------------------- /Handouts/JD_IQP_2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/Handouts/JD_IQP_2022.pdf -------------------------------------------------------------------------------- /Handouts/JD_Intro_Query_Store_2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/Handouts/JD_Intro_Query_Store_2019.pdf -------------------------------------------------------------------------------- /Handouts/JD_Query_Optimze_2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/Handouts/JD_Query_Optimze_2021.pdf -------------------------------------------------------------------------------- /Handouts/JD_TempDB_Improvement_2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/Handouts/JD_TempDB_Improvement_2022.pdf -------------------------------------------------------------------------------- /Handouts/JD_Waits_Queues_2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/Handouts/JD_Waits_Queues_2022.pdf -------------------------------------------------------------------------------- /Handouts/New_Features_SQL_2025.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/Handouts/New_Features_SQL_2025.pdf -------------------------------------------------------------------------------- /Handouts/PTOLabTimes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/Handouts/PTOLabTimes.pdf -------------------------------------------------------------------------------- /Handouts/Redeeming Training Key and Lab Setup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/Handouts/Redeeming Training Key and Lab Setup.pdf -------------------------------------------------------------------------------- /Handouts/make_big_adventure.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/Handouts/make_big_adventure.zip -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/.vs/IQP_2022/v15/.ssms_suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/.vs/IQP_2022/v15/.ssms_suo -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/IQP_2022.ssmssln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/IQP_2022.ssmssln -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/IQP_2022/IQP_2022.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/IQP_2022/IQP_2022.ssmssqlproj -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/IQP_2022/iqp_Adaptive_Joins.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/IQP_2022/iqp_Adaptive_Joins.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/IQP_2022/iqp_Approx_Count_Distinct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/IQP_2022/iqp_Approx_Count_Distinct.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/IQP_2022/iqp_BatchModeRowStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/IQP_2022/iqp_BatchModeRowStore.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/IQP_2022/iqp_Interleaved_Execution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/IQP_2022/iqp_Interleaved_Execution.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/IQP_2022/iqp_Memory_Grant_Feedback_Row.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/IQP_2022/iqp_Memory_Grant_Feedback_Row.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/IQP_2022/iqp_Scalar_UDF_Inlining.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/IQP_2022/iqp_Scalar_UDF_Inlining.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/IQP_2022/iqp_Table_Variable_Deferred.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/IQP_2022/iqp_Table_Variable_Deferred.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/iqp_Adaptive_Joins.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/iqp_Adaptive_Joins.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/iqp_Approx_Count_Distinct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/iqp_Approx_Count_Distinct.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/iqp_BatchModeRowStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/iqp_BatchModeRowStore.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/iqp_Interleaved_Execution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/iqp_Interleaved_Execution.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/iqp_Memory_Grant_Feedback_Row.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/iqp_Memory_Grant_Feedback_Row.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/iqp_Scalar_UDF_Inlining.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/iqp_Scalar_UDF_Inlining.sql -------------------------------------------------------------------------------- /IQP_2022/IQP_2022/iqp_Table_Variable_Deferred.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/IQP_2022/IQP_2022/iqp_Table_Variable_Deferred.sql -------------------------------------------------------------------------------- /InMemoryTables/.vs/InMemoryTables/v15/.ssms_suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/InMemoryTables/.vs/InMemoryTables/v15/.ssms_suo -------------------------------------------------------------------------------- /InMemoryTables/InMemoryTables.ssmssln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/InMemoryTables/InMemoryTables.ssmssln -------------------------------------------------------------------------------- /InMemoryTables/InMemoryTables/01_Database_01_CreatingDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/InMemoryTables/InMemoryTables/01_Database_01_CreatingDB.sql -------------------------------------------------------------------------------- /InMemoryTables/InMemoryTables/02_Create_Table_Proc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/InMemoryTables/InMemoryTables/02_Create_Table_Proc.sql -------------------------------------------------------------------------------- /InMemoryTables/InMemoryTables/03_Test_Performance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/InMemoryTables/InMemoryTables/03_Test_Performance.sql -------------------------------------------------------------------------------- /InMemoryTables/InMemoryTables/InMemoryTables.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/InMemoryTables/InMemoryTables/InMemoryTables.ssmssqlproj -------------------------------------------------------------------------------- /PDF/JD01 - SQL Server Architecture, Scheduling and Waits.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/PDF/JD01 - SQL Server Architecture, Scheduling and Waits.pdf -------------------------------------------------------------------------------- /PDF/JD02 - SQL Server Processor and Memory Management.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/PDF/JD02 - SQL Server Processor and Memory Management.pdf -------------------------------------------------------------------------------- /PDF/JD03 - SQL Server IO and Database Structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/PDF/JD03 - SQL Server IO and Database Structure.pdf -------------------------------------------------------------------------------- /PDF/JD04 - SQL Server Transactions and Concurrency.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/PDF/JD04 - SQL Server Transactions and Concurrency.pdf -------------------------------------------------------------------------------- /PDF/JD05 - SQL Server Index Structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/PDF/JD05 - SQL Server Index Structure.pdf -------------------------------------------------------------------------------- /PDF/JD06 - SQL Server Statistics Structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/PDF/JD06 - SQL Server Statistics Structure.pdf -------------------------------------------------------------------------------- /PDF/JD07 - SQL Server Query Execution and Plans.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/PDF/JD07 - SQL Server Query Execution and Plans.pdf -------------------------------------------------------------------------------- /PDF/JD08 - SQL Server Plan Caching and Query Store.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/PDF/JD08 - SQL Server Plan Caching and Query Store.pdf -------------------------------------------------------------------------------- /PDF/JD09 - SQL Server Query Tuning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/PDF/JD09 - SQL Server Query Tuning.pdf -------------------------------------------------------------------------------- /PDF/JDS10 - Optional Lessons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/PDF/JDS10 - Optional Lessons.pdf -------------------------------------------------------------------------------- /PDF/PTOLabTimes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/PDF/PTOLabTimes.pdf -------------------------------------------------------------------------------- /SQL_PTO_Demos/.vs/SQL_PTO_Demos/FileContentIndex/8765f403-7fd2-4237-8372-e19a0e0533f7.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/.vs/SQL_PTO_Demos/FileContentIndex/8765f403-7fd2-4237-8372-e19a0e0533f7.vsidx -------------------------------------------------------------------------------- /SQL_PTO_Demos/.vs/SQL_PTO_Demos/FileContentIndex/bf92ece4-4ef3-4e07-bf05-71c6b549aa67.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/.vs/SQL_PTO_Demos/FileContentIndex/bf92ece4-4ef3-4e07-bf05-71c6b549aa67.vsidx -------------------------------------------------------------------------------- /SQL_PTO_Demos/.vs/SQL_PTO_Demos/FileContentIndex/cab81b10-8167-4e79-a6a8-a368e31d9044.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/.vs/SQL_PTO_Demos/FileContentIndex/cab81b10-8167-4e79-a6a8-a368e31d9044.vsidx -------------------------------------------------------------------------------- /SQL_PTO_Demos/.vs/SQL_PTO_Demos/FileContentIndex/cbdda471-d36b-4a00-89e4-58a964effeb3.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/.vs/SQL_PTO_Demos/FileContentIndex/cbdda471-d36b-4a00-89e4-58a964effeb3.vsidx -------------------------------------------------------------------------------- /SQL_PTO_Demos/.vs/SQL_PTO_Demos/FileContentIndex/ee9d5711-1249-46d3-8122-5bbea09d3b84.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/.vs/SQL_PTO_Demos/FileContentIndex/ee9d5711-1249-46d3-8122-5bbea09d3b84.vsidx -------------------------------------------------------------------------------- /SQL_PTO_Demos/.vs/SQL_PTO_Demos/v15/.ssms_suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/.vs/SQL_PTO_Demos/v15/.ssms_suo -------------------------------------------------------------------------------- /SQL_PTO_Demos/.vs/SQL_PTO_Demos/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/.vs/SQL_PTO_Demos/v17/.suo -------------------------------------------------------------------------------- /SQL_PTO_Demos/.vs/SQL_PTO_Demos/v17/DocumentLayout.backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/.vs/SQL_PTO_Demos/v17/DocumentLayout.backup.json -------------------------------------------------------------------------------- /SQL_PTO_Demos/.vs/SQL_PTO_Demos/v17/DocumentLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/.vs/SQL_PTO_Demos/v17/DocumentLayout.json -------------------------------------------------------------------------------- /SQL_PTO_Demos/01_SQL_Architecture/.vs/01_SQL_Architecture/FileContentIndex/374c7d06-5556-4afc-bb68-74d3af37f14a.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/01_SQL_Architecture/.vs/01_SQL_Architecture/FileContentIndex/374c7d06-5556-4afc-bb68-74d3af37f14a.vsidx -------------------------------------------------------------------------------- /SQL_PTO_Demos/01_SQL_Architecture/.vs/01_SQL_Architecture/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/01_SQL_Architecture/.vs/01_SQL_Architecture/v17/.suo -------------------------------------------------------------------------------- /SQL_PTO_Demos/01_SQL_Architecture/01_DMV_Intro.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/01_SQL_Architecture/01_DMV_Intro.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/01_SQL_Architecture/01_RCSI_Enable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/01_SQL_Architecture/01_RCSI_Enable.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/01_SQL_Architecture/01_SQL_Architecture.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/01_SQL_Architecture/01_SQL_Architecture.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/01_SQL_Architecture/01_Waits.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/01_SQL_Architecture/01_Waits.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/01_SQL_Architecture/Blocking_1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/01_SQL_Architecture/Blocking_1.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/01_SQL_Architecture/Blocking_2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/01_SQL_Architecture/Blocking_2.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/01_SQL_Architecture/Execution_Session_DMV.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/01_SQL_Architecture/Execution_Session_DMV.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/02_Processors_Memory/02_Processors_Memory.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/02_Processors_Memory/02_Processors_Memory.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/02_Processors_Memory/Examining_Memory_Usage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/02_Processors_Memory/Examining_Memory_Usage.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/FileContentIndex/2050bf1c-715b-479b-875d-fb44c8b48cfc.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/FileContentIndex/2050bf1c-715b-479b-875d-fb44c8b48cfc.vsidx -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/FileContentIndex/792d0685-0e9a-42c8-8526-ee725465b829.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/FileContentIndex/792d0685-0e9a-42c8-8526-ee725465b829.vsidx -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/FileContentIndex/dfb05cb5-c6b9-430a-bb2c-12a01885d203.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/FileContentIndex/dfb05cb5-c6b9-430a-bb2c-12a01885d203.vsidx -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/FileContentIndex/e13dd7ec-b316-4462-a259-392fecaf6066.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/FileContentIndex/e13dd7ec-b316-4462-a259-392fecaf6066.vsidx -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/v17/.suo -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/v17/DocumentLayout.backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/v17/DocumentLayout.backup.json -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/v17/DocumentLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/.vs/03_Database_Structure/v17/DocumentLayout.json -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/01_Exec_OS_DMV.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/01_Exec_OS_DMV.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/03_DBCC_Statements.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/03_DBCC_Statements.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/03_Database_Structure.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/03_Database_Structure.sln -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/03_Database_Structure.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/03_Database_Structure.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/03_Display_Statistics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/03_Display_Statistics.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/03_Simplified_ADR_Demo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/03_Simplified_ADR_Demo.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/03_TransLog_Reading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/03_TransLog_Reading.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/03_Database_Structure/Enable_ADR_All_Databases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/03_Database_Structure/Enable_ADR_All_Databases.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04_Transacations_Concurrency.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04_Transacations_Concurrency.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04a_Add_Records.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04a_Add_Records.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04a_BankAccount_Select.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04a_BankAccount_Select.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04a_Demo_Setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04a_Demo_Setup.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04b_LockingDemo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04b_LockingDemo.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04c_DirtyRead1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04c_DirtyRead1.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04c_DirtyRead2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04c_DirtyRead2.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04c_LostUpdate1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04c_LostUpdate1.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04c_LostUpdate2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04c_LostUpdate2.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04c_Phantom1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04c_Phantom1.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04c_Phantom2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04c_Phantom2.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04c_RepeatRead1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04c_RepeatRead1.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04c_RepeatRead2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04c_RepeatRead2.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04d_BlockingDemo1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04d_BlockingDemo1.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04d_BlockingDemo2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04d_BlockingDemo2.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04d_DeadLockDemo2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04d_DeadLockDemo2.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04d_DeadlockDemo1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04d_DeadlockDemo1.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/04_Transacations_Concurrency/04t_Transactions_Demo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/04_Transacations_Concurrency/04t_Transactions_Demo.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/.vs/05_Indexing_Strategy/FileContentIndex/644d93c1-2414-40d7-bc80-7f8422f2384f.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/.vs/05_Indexing_Strategy/FileContentIndex/644d93c1-2414-40d7-bc80-7f8422f2384f.vsidx -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/.vs/05_Indexing_Strategy/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/.vs/05_Indexing_Strategy/v17/.suo -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05_FilteredIndex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05_FilteredIndex.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05_Index_Fragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05_Index_Fragmentation.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05_Index_Operational_Stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05_Index_Operational_Stats.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05_Index_Usage_01.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05_Index_Usage_01.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05_Index_Usage_Script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05_Index_Usage_Script.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05_Indexing_Strategy.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05_Indexing_Strategy.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05_NCI_Column_Order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05_NCI_Column_Order.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05_NCI_Covering_Includes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05_NCI_Covering_Includes.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05_NCI_Data_Type_Size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05_NCI_Data_Type_Size.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05_Seek_Scan_Tipping_Point.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05_Seek_Scan_Tipping_Point.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05_TableScan_ClusteredScan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05_TableScan_ClusteredScan.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05a_Add_Records.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05a_Add_Records.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05a_Demo_Setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05a_Demo_Setup.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05e_Partition_Database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05e_Partition_Database.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/05_Indexing_Strategy/05e_Partition_Index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/05_Indexing_Strategy/05e_Partition_Index.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/06_Statistics_Maintenance/06_CardinalityEstimation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/06_Statistics_Maintenance/06_CardinalityEstimation.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/06_Statistics_Maintenance/06_Display_Statistics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/06_Statistics_Maintenance/06_Display_Statistics.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/06_Statistics_Maintenance/06_Stale_Statstics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/06_Statistics_Maintenance/06_Stale_Statstics.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/06_Statistics_Maintenance/06_Statistics_Maintenance.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/06_Statistics_Maintenance/06_Statistics_Maintenance.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/07_Execution_Plans/07_Exec_Plan_Join_Operators.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/07_Execution_Plans/07_Exec_Plan_Join_Operators.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/07_Execution_Plans/07_Execution_Flow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/07_Execution_Plans/07_Execution_Flow.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/07_Execution_Plans/07_Execution_Plans.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/07_Execution_Plans/07_Execution_Plans.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/07_Execution_Plans/07_Live_Query_Stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/07_Execution_Plans/07_Live_Query_Stats.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/07_Execution_Plans/07_Optimization_Phases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/07_Execution_Plans/07_Optimization_Phases.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/07_Execution_Plans/07_ShowPlan_All.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/07_Execution_Plans/07_ShowPlan_All.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/07_Execution_Plans/08_Plan_Guides - Copy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/07_Execution_Plans/08_Plan_Guides - Copy.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/07_Execution_Plans/08_Plan_Guides.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/07_Execution_Plans/08_Plan_Guides.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_Ad_Hoc_Workload.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_Ad_Hoc_Workload.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_Loop_Product_Info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_Loop_Product_Info.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_Parameter_Sniffing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_Parameter_Sniffing.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_PlanCache_QueryTunning.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_PlanCache_QueryTunning.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_PlanCache_Top10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_PlanCache_Top10.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_Plan_Cache_Query_Store.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_Plan_Cache_Query_Store.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_Plan_Guides.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_Plan_Guides.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_QueryStore_ADworks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_QueryStore_ADworks.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_QueryStore_ADworksLT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_QueryStore_ADworksLT.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_QueryStore_DMV.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_QueryStore_DMV.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_QueryStore_GetProductInfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_QueryStore_GetProductInfo.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_query_store_hints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/08_Plan_Cache_Query_Store/08_query_store_hints.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/SQLQuery1.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SQL_PTO_Demos/08_Plan_Cache_Query_Store/SQLQuery2.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SQL_PTO_Demos/10_Indexing_Extra/.vs/04_Indexing_Extra/v15/.ssms_suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/10_Indexing_Extra/.vs/04_Indexing_Extra/v15/.ssms_suo -------------------------------------------------------------------------------- /SQL_PTO_Demos/10_Indexing_Extra/04_Indexing_Extra.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/10_Indexing_Extra/04_Indexing_Extra.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/10_Indexing_Extra/04e_Columnstore_Index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/10_Indexing_Extra/04e_Columnstore_Index.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/10_Indexing_Extra/04e_Partition_ADWorks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/10_Indexing_Extra/04e_Partition_ADWorks.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/10_Indexing_Extra/04e_Partition_Database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/10_Indexing_Extra/04e_Partition_Database.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/10_Indexing_Extra/04e_Partition_Index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/10_Indexing_Extra/04e_Partition_Index.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/10_Indexing_Extra/04e_WWI_Extend_Order_History.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/10_Indexing_Extra/04e_WWI_Extend_Order_History.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/.vs/IQP_2022/v15/.ssms_suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/.vs/IQP_2022/v15/.ssms_suo -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022.ssmssln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022.ssmssln -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/IQP_2022.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/IQP_2022.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Adaptive_Joins.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Adaptive_Joins.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Approx_Count_Distinct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Approx_Count_Distinct.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_BatchModeRowStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_BatchModeRowStore.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Interleaved_Execution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Interleaved_Execution.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Memory_Grant_Feedback_Row.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Memory_Grant_Feedback_Row.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Scalar_UDF_Inlining.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Scalar_UDF_Inlining.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Table_Variable_Deferred.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/IQP_2022/iqp_Table_Variable_Deferred.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Adaptive_Joins.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Adaptive_Joins.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Approx_Count_Distinct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Approx_Count_Distinct.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_BatchModeRowStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_BatchModeRowStore.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Interleaved_Execution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Interleaved_Execution.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Memory_Grant_Feedback_Row.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Memory_Grant_Feedback_Row.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Scalar_UDF_Inlining.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Scalar_UDF_Inlining.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Table_Variable_Deferred.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/IQP_2022/IQP_2022/iqp_Table_Variable_Deferred.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/InMemoryTables/.vs/InMemoryTables/v15/.ssms_suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/InMemoryTables/.vs/InMemoryTables/v15/.ssms_suo -------------------------------------------------------------------------------- /SQL_PTO_Demos/InMemoryTables/InMemoryTables.ssmssln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/InMemoryTables/InMemoryTables.ssmssln -------------------------------------------------------------------------------- /SQL_PTO_Demos/InMemoryTables/InMemoryTables/01_Database_01_CreatingDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/InMemoryTables/InMemoryTables/01_Database_01_CreatingDB.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/InMemoryTables/InMemoryTables/02_Create_Table_Proc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/InMemoryTables/InMemoryTables/02_Create_Table_Proc.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/InMemoryTables/InMemoryTables/03_Test_Performance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/InMemoryTables/InMemoryTables/03_Test_Performance.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/InMemoryTables/InMemoryTables/InMemoryTables.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/InMemoryTables/InMemoryTables/InMemoryTables.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/.vs/Resource Governor/v15/.ssms_suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/.vs/Resource Governor/v15/.ssms_suo -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/01. Configure Resource Governor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/01. Configure Resource Governor.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/02. Examine Resource Governor objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/02. Examine Resource Governor objects.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/03. Cleanup Resource Governor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/03. Cleanup Resource Governor.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/02_tempstress.sql: -------------------------------------------------------------------------------- 1 | SET NOCOUNT ON; 2 | GO 3 | EXEC jd_temp_demo; 4 | GO -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/02_tempstress_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/02_tempstress_ddl.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/14_CPU_Intensive_Loop01.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/14_CPU_Intensive_Loop01.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/14_CPU_Intensive_Loop02.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/14_CPU_Intensive_Loop02.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/14_CPU_Intensive_Loop03.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/14_CPU_Intensive_Loop03.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_1.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_10.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_10.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_11.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_11.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_12.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_12.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_13.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_13.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_14.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_14.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_15.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_15.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_16.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_16.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_17.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_17.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_18.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_18.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_19.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_19.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_2.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_3.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_4.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_5.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_6.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_6.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_7.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_7.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_8.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_8.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_9.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/14_CPU_Intensive_Loop01_9.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/ostress.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales01/ostress.log -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_1.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_10.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_10.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_11.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_11.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_12.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_12.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_13.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_13.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_14.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_14.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_15.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_15.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_16.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_16.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_17.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_17.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_18.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_18.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_19.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_19.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_2.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_3.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_4.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_5.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_6.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_6.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_7.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_7.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_8.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_8.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_9.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/14_CPU_Intensive_Loop02_9.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/ostress.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales02/ostress.log -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_1.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_10.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_10.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_11.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_11.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_12.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_12.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_13.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_13.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_14.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_14.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_15.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_15.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_16.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_16.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_17.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_17.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_18.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_18.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_19.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_19.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_2.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_3.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_4.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_5.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_6.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_6.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_7.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_7.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_8.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_8.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_9.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/14_CPU_Intensive_Loop03_9.out -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/ostress.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/CPUSales03/ostress.log -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/QueryMKT1_CPU.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/QueryMKT1_CPU.bat -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/QueryOps_CPU.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/QueryOps_CPU.bat -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/QuerySales_CPU.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/QuerySales_CPU.bat -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/ostress.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/ostress.exe -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/OStress/stresslog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/OStress/stresslog.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/Resource Governor Introduction.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/Resource Governor Introduction.pptx -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/Resource Governor.ssmssln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/Resource Governor.ssmssln -------------------------------------------------------------------------------- /SQL_PTO_Demos/Resource Governor/Resource Governor.ssmssqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/Resource Governor/Resource Governor.ssmssqlproj -------------------------------------------------------------------------------- /SQL_PTO_Demos/RightJoinTest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/RightJoinTest.sql -------------------------------------------------------------------------------- /SQL_PTO_Demos/SQL_PTO_Demos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/SQL_PTO_Demos.sln -------------------------------------------------------------------------------- /SQL_PTO_Demos/SQL_PTO_Demos.ssmssln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SQLMCT/SQL_Performance_Tuning/HEAD/SQL_PTO_Demos/SQL_PTO_Demos.ssmssln --------------------------------------------------------------------------------