├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Azure ├── Extended Events │ ├── cstore_XE_BatchMode.sql │ ├── cstore_XE_IndexCreation.sql │ ├── cstore_XE_Memory.sql │ ├── cstore_XE_RowGroupReading.sql │ └── setup_all_extended_events.sql ├── Readme ├── StoredProcs │ ├── cstore_GetAlignment.sql │ ├── cstore_GetDictionaries.sql │ ├── cstore_GetFragmentation.sql │ ├── cstore_GetRowGroups.sql │ ├── cstore_GetRowGroupsDetails.sql │ ├── cstore_SuggestedTables.sql │ ├── cstore_cleanup.sql │ ├── cstore_doMaintenance.sql │ ├── cstore_install_all_stored_procs.sql │ └── cstore_install_all_stored_procs_cmd.sql ├── alignment.sql ├── dictionaries.sql ├── fragmentation.sql ├── row_groups.sql ├── row_groups_details.sql └── suggested_tables.sql ├── CONTRIBUTING.md ├── IndexTypeSelector.sql ├── LICENSE ├── NOTICE.txt ├── README.md ├── SQL DW ├── alignment.sql ├── dictionaries.sql ├── fragmentation.sql ├── row_groups.sql └── row_groups_details.sql ├── SQL vNext ├── Extended Events │ ├── cstore_XE_BatchMode.sql │ ├── cstore_XE_Errors.sql │ ├── cstore_XE_IndexCreation.sql │ ├── cstore_XE_InternalObjects.sql │ ├── cstore_XE_Memory.sql │ ├── cstore_XE_RowGroupElimination.sql │ ├── cstore_XE_RowGroupReading.sql │ ├── cstore_XE_TupleMover.sql │ └── setup_all_extended_events.sql ├── Readme ├── StoredProcs │ ├── cstore_GetAlignment.sql │ ├── cstore_GetDictionaries.sql │ ├── cstore_GetFragmentation.sql │ ├── cstore_GetMemory.sql │ ├── cstore_GetRowGroups.sql │ ├── cstore_GetRowGroupsDetails.sql │ ├── cstore_GetSQLInfo.sql │ ├── cstore_SuggestedTables.sql │ ├── cstore_cleanup.sql │ ├── cstore_doMaintenance.sql │ └── cstore_install_all_stored_procs.sql ├── alignment.sql ├── dictionaries.sql ├── fragmentation.sql ├── memory.sql ├── row_groups.sql ├── row_groups_details.sql ├── sqlserver_instance_info.sql └── suggested_tables.sql ├── SQL-2012 ├── Extended Events │ ├── cstore_XE_Memory.sql │ ├── cstore_XE_RowGroupElimination.sql │ ├── cstore_XE_RowGroupReading.sql │ └── setup_all_extended_events.sql ├── Readme ├── StoredProcs │ ├── cstore_GetAlignment.sql │ ├── cstore_GetDictionaries.sql │ ├── cstore_GetMemory.sql │ ├── cstore_GetRowGroups.sql │ ├── cstore_GetRowGroupsDetails.sql │ ├── cstore_GetSQLInfo.sql │ ├── cstore_SuggestedTables.sql │ ├── cstore_cleanup.sql │ └── cstore_install_all_stored_procs.sql ├── alignment.sql ├── dictionaries.sql ├── memory.sql ├── row_groups.sql ├── row_groups_details.sql ├── sqlserver_instance_info.sql └── suggested_tables.sql ├── SQL-2014 ├── Extended Events │ ├── cstore_XE_BatchMode.sql │ ├── cstore_XE_IndexCreation.sql │ ├── cstore_XE_Memory.sql │ ├── cstore_XE_RowGroupElimination.sql │ ├── cstore_XE_RowGroupReading.sql │ ├── cstore_XE_TupleMover.sql │ └── setup_all_extended_events.sql ├── Readme ├── StoredProcs │ ├── cstore_GetAlignment.sql │ ├── cstore_GetDictionaries.sql │ ├── cstore_GetFragmentation.sql │ ├── cstore_GetMemory.sql │ ├── cstore_GetRowGroups.sql │ ├── cstore_GetRowGroupsDetails.sql │ ├── cstore_GetSQLInfo.sql │ ├── cstore_SuggestedTables.sql │ ├── cstore_cleanup.sql │ ├── cstore_doMaintenance.sql │ └── cstore_install_all_stored_procs.sql ├── alignment.sql ├── dictionaries.sql ├── fragmentation.sql ├── memory.sql ├── row_groups.sql ├── row_groups_details.sql ├── sqlserver_instance_info.sql └── suggested_tables.sql ├── SQL-2016 ├── Extended Events │ ├── cstore_XE_BatchMode.sql │ ├── cstore_XE_Errors.sql │ ├── cstore_XE_IndexCreation.sql │ ├── cstore_XE_InternalObjects.sql │ ├── cstore_XE_Memory.sql │ ├── cstore_XE_RowGroupElimination.sql │ ├── cstore_XE_RowGroupReading.sql │ ├── cstore_XE_TupleMover.sql │ └── setup_all_extended_events.sql ├── Readme ├── StoredProcs │ ├── cstore_GetAlignment.sql │ ├── cstore_GetDictionaries.sql │ ├── cstore_GetFragmentation.sql │ ├── cstore_GetMemory.sql │ ├── cstore_GetRowGroups.sql │ ├── cstore_GetRowGroupsDetails.sql │ ├── cstore_GetSQLInfo.sql │ ├── cstore_SuggestedTables.sql │ ├── cstore_cleanup.sql │ ├── cstore_doMaintenance.sql │ └── cstore_install_all_stored_procs.sql ├── alignment.sql ├── dictionaries.sql ├── fragmentation.sql ├── memory.sql ├── row_groups.sql ├── row_groups_details.sql ├── sqlserver_instance_info.sql └── suggested_tables.sql ├── SQL-2017 ├── Extended Events │ ├── cstore_XE_BatchMode.sql │ ├── cstore_XE_Errors.sql │ ├── cstore_XE_IndexCreation.sql │ ├── cstore_XE_InternalObjects.sql │ ├── cstore_XE_Memory.sql │ ├── cstore_XE_RowGroupElimination.sql │ ├── cstore_XE_RowGroupReading.sql │ ├── cstore_XE_TupleMover.sql │ └── setup_all_extended_events.sql ├── Readme ├── StoredProcs │ ├── cstore_GetAlignment.sql │ ├── cstore_GetDictionaries.sql │ ├── cstore_GetFragmentation.sql │ ├── cstore_GetMemory.sql │ ├── cstore_GetRowGroups.sql │ ├── cstore_GetRowGroupsDetails.sql │ ├── cstore_GetSQLInfo.sql │ ├── cstore_SuggestedTables.sql │ ├── cstore_cleanup.sql │ ├── cstore_doMaintenance.sql │ └── cstore_install_all_stored_procs.sql ├── alignment.sql ├── dictionaries.sql ├── fragmentation.sql ├── memory.sql ├── row_groups.sql ├── row_groups_details.sql ├── sqlserver_instance_info.sql └── suggested_tables.sql ├── Stored Procedures └── cstore_sp_estimate_columnstore_compression_savings.sql ├── Tests ├── Azure │ ├── 00_stored_procedures_installation.sql │ └── 03_Temporary_Table.sql ├── SQL-2012 │ ├── 00_create_test_classes.sql │ ├── 01_setup_tests.sql │ ├── Alignment_test1RowTable.sql │ ├── Alignment_testEmptyTable.sql │ ├── Dictionaries_test1RowTable.sql │ ├── Dictionaries_testEmptyTable.sql │ ├── RowGroupsDetails_test1RowTable.sql │ ├── RowGroupsDetails_testEmptyTable.sql │ ├── RowGroups_test1RowTable.sql │ ├── RowGroups_testEmptyTable.sql │ ├── SuggestedTables_testSimple500KTable_considerColumnsOver8K.sql │ ├── SuggestedTables_testSimple500KTable_indexLocation.sql │ ├── SuggestedTables_testSimple500KTable_minRowsToConsider.sql │ ├── SuggestedTables_testSimple500KTable_minSizeToConsiderInGB.sql │ ├── SuggestedTables_testSimple500KTable_schemaName.sql │ ├── SuggestedTables_testSimple500KTable_showReadyTablesOnly.sql │ └── XX_RunAllTests.sql ├── SQL-2014 │ ├── 00_create_test_classes.sql │ ├── 01_setup_tests.sql │ ├── Alignment_test1RowTable.sql │ ├── Alignment_testEmptyDeltaStore.sql │ ├── Alignment_testEmptyTable.sql │ ├── Alignment_testOneDeletedRowGroup.sql │ ├── Alignment_testRowGroupAndDelta.sql │ ├── Dictionaries_test1RowTable.sql │ ├── Dictionaries_testEmptyDeltaStore.sql │ ├── Dictionaries_testEmptyTable.sql │ ├── Dictionaries_testOneDeletedRowGroup.sql │ ├── Dictionaries_testRowGroupAndDelta.sql │ ├── Fragmentation_test1RowTable.sql │ ├── Fragmentation_testEmptyDeltaStore.sql │ ├── Fragmentation_testEmptyTable.sql │ ├── Fragmentation_testOneDeletedRowGroup.sql │ ├── Fragmentation_testRowGroupAndDelta.sql │ ├── Old │ │ ├── 00_stored_procedures_installation.sql │ │ ├── 02_indexes_test.sql │ │ └── 03_temp_tables.sql │ ├── RowGroupsDetails_test1RowTable.sql │ ├── RowGroupsDetails_testEmptyDeltaStore.sql │ ├── RowGroupsDetails_testEmptyTable.sql │ ├── RowGroupsDetails_testOneDeletedRowGroup.sql │ ├── RowGroupsDetails_testRowGroupAndDelta.sql │ ├── RowGroups_test1RowTable.sql │ ├── RowGroups_testEmptyDeltaStore.sql │ ├── RowGroups_testEmptyTable.sql │ ├── RowGroups_testOneDeletedRowGroup.sql │ ├── RowGroups_testRowGroupAndDelta.sql │ ├── SuggestedTables_testSimple500KTable.sql │ ├── SuggestedTables_testSimple500KTable_considerColumnsOver8K.sql │ ├── SuggestedTables_testSimple500KTable_indexLocation.sql │ ├── SuggestedTables_testSimple500KTable_minRowsToConsider.sql │ ├── SuggestedTables_testSimple500KTable_minSizeToConsiderInGB.sql │ ├── SuggestedTables_testSimple500KTable_schemaName.sql │ ├── SuggestedTables_testSimple500KTable_showReadyTablesOnly.sql │ ├── XX_RunAllTests.sql │ └── parameters.sql ├── SQL-2016 │ ├── 00_create_test_classes.sql │ ├── 01_setup_tests.sql │ ├── Alignment_test1RowTable.sql │ ├── Alignment_testEmptyDeltaStore.sql │ ├── Alignment_testEmptyTable.sql │ ├── Alignment_testOneDeletedRowGroup.sql │ ├── Alignment_testRowGroupAndDelta.sql │ ├── Dictionaries_test1RowTable.sql │ ├── Dictionaries_testEmptyDeltaStore.sql │ ├── Dictionaries_testEmptyTable.sql │ ├── Dictionaries_testOneDeletedRowGroup.sql │ ├── Dictionaries_testRowGroupAndDelta.sql │ ├── Fragmentation_test1RowTable.sql │ ├── Fragmentation_testEmptyDeltaStore.sql │ ├── Fragmentation_testEmptyTable.sql │ ├── Fragmentation_testOneDeletedRowGroup.sql │ ├── Fragmentation_testRowGroupAndDelta.sql │ ├── RowGroupsDetails_test1RowTable.sql │ ├── RowGroupsDetails_testEmptyDeltaStore.sql │ ├── RowGroupsDetails_testEmptyTable.sql │ ├── RowGroupsDetails_testOneDeletedRowGroup.sql │ ├── RowGroupsDetails_testRowGroupAndDelta.sql │ ├── RowGroups_test1RowTable.sql │ ├── RowGroups_testEmptyDeltaStore.sql │ ├── RowGroups_testEmptyTable.sql │ ├── RowGroups_testOneDeletedRowGroup.sql │ ├── RowGroups_testRowGroupAndDelta.sql │ ├── SuggestedTables_testSimple500KTable.sql │ ├── SuggestedTables_testSimple500KTable_considerColumnsOver8K.sql │ ├── SuggestedTables_testSimple500KTable_indexLocation.sql │ ├── SuggestedTables_testSimple500KTable_minRowsToConsider.sql │ ├── SuggestedTables_testSimple500KTable_minSizeToConsiderInGB.sql │ ├── SuggestedTables_testSimple500KTable_schemaName.sql │ ├── SuggestedTables_testSimple500KTable_showReadyTablesOnly.sql │ └── XX_RunAllTests.sql ├── sql-2012-tests.sql ├── sql-2014-tests.sql └── sql-2016-tests.sql ├── cisl.psd1 ├── cisl.psm1 ├── install_CISL.ps1 ├── remove_CISL.ps1 ├── setup_all.ps1 ├── setup_dac.ps1 └── update-cisl.ps1 /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store -------------------------------------------------------------------------------- /Azure/Extended Events/cstore_XE_BatchMode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/Extended Events/cstore_XE_BatchMode.sql -------------------------------------------------------------------------------- /Azure/Extended Events/cstore_XE_IndexCreation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/Extended Events/cstore_XE_IndexCreation.sql -------------------------------------------------------------------------------- /Azure/Extended Events/cstore_XE_Memory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/Extended Events/cstore_XE_Memory.sql -------------------------------------------------------------------------------- /Azure/Extended Events/cstore_XE_RowGroupReading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/Extended Events/cstore_XE_RowGroupReading.sql -------------------------------------------------------------------------------- /Azure/Extended Events/setup_all_extended_events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/Extended Events/setup_all_extended_events.sql -------------------------------------------------------------------------------- /Azure/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/Readme -------------------------------------------------------------------------------- /Azure/StoredProcs/cstore_GetAlignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/StoredProcs/cstore_GetAlignment.sql -------------------------------------------------------------------------------- /Azure/StoredProcs/cstore_GetDictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/StoredProcs/cstore_GetDictionaries.sql -------------------------------------------------------------------------------- /Azure/StoredProcs/cstore_GetFragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/StoredProcs/cstore_GetFragmentation.sql -------------------------------------------------------------------------------- /Azure/StoredProcs/cstore_GetRowGroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/StoredProcs/cstore_GetRowGroups.sql -------------------------------------------------------------------------------- /Azure/StoredProcs/cstore_GetRowGroupsDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/StoredProcs/cstore_GetRowGroupsDetails.sql -------------------------------------------------------------------------------- /Azure/StoredProcs/cstore_SuggestedTables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/StoredProcs/cstore_SuggestedTables.sql -------------------------------------------------------------------------------- /Azure/StoredProcs/cstore_cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/StoredProcs/cstore_cleanup.sql -------------------------------------------------------------------------------- /Azure/StoredProcs/cstore_doMaintenance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/StoredProcs/cstore_doMaintenance.sql -------------------------------------------------------------------------------- /Azure/StoredProcs/cstore_install_all_stored_procs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/StoredProcs/cstore_install_all_stored_procs.sql -------------------------------------------------------------------------------- /Azure/StoredProcs/cstore_install_all_stored_procs_cmd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/StoredProcs/cstore_install_all_stored_procs_cmd.sql -------------------------------------------------------------------------------- /Azure/alignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/alignment.sql -------------------------------------------------------------------------------- /Azure/dictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/dictionaries.sql -------------------------------------------------------------------------------- /Azure/fragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/fragmentation.sql -------------------------------------------------------------------------------- /Azure/row_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/row_groups.sql -------------------------------------------------------------------------------- /Azure/row_groups_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/row_groups_details.sql -------------------------------------------------------------------------------- /Azure/suggested_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Azure/suggested_tables.sql -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /IndexTypeSelector.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/IndexTypeSelector.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/README.md -------------------------------------------------------------------------------- /SQL DW/alignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL DW/alignment.sql -------------------------------------------------------------------------------- /SQL DW/dictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL DW/dictionaries.sql -------------------------------------------------------------------------------- /SQL DW/fragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL DW/fragmentation.sql -------------------------------------------------------------------------------- /SQL DW/row_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL DW/row_groups.sql -------------------------------------------------------------------------------- /SQL DW/row_groups_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL DW/row_groups_details.sql -------------------------------------------------------------------------------- /SQL vNext/Extended Events/cstore_XE_BatchMode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/Extended Events/cstore_XE_BatchMode.sql -------------------------------------------------------------------------------- /SQL vNext/Extended Events/cstore_XE_Errors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/Extended Events/cstore_XE_Errors.sql -------------------------------------------------------------------------------- /SQL vNext/Extended Events/cstore_XE_IndexCreation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/Extended Events/cstore_XE_IndexCreation.sql -------------------------------------------------------------------------------- /SQL vNext/Extended Events/cstore_XE_InternalObjects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/Extended Events/cstore_XE_InternalObjects.sql -------------------------------------------------------------------------------- /SQL vNext/Extended Events/cstore_XE_Memory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/Extended Events/cstore_XE_Memory.sql -------------------------------------------------------------------------------- /SQL vNext/Extended Events/cstore_XE_RowGroupElimination.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/Extended Events/cstore_XE_RowGroupElimination.sql -------------------------------------------------------------------------------- /SQL vNext/Extended Events/cstore_XE_RowGroupReading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/Extended Events/cstore_XE_RowGroupReading.sql -------------------------------------------------------------------------------- /SQL vNext/Extended Events/cstore_XE_TupleMover.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/Extended Events/cstore_XE_TupleMover.sql -------------------------------------------------------------------------------- /SQL vNext/Extended Events/setup_all_extended_events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/Extended Events/setup_all_extended_events.sql -------------------------------------------------------------------------------- /SQL vNext/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/Readme -------------------------------------------------------------------------------- /SQL vNext/StoredProcs/cstore_GetAlignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/StoredProcs/cstore_GetAlignment.sql -------------------------------------------------------------------------------- /SQL vNext/StoredProcs/cstore_GetDictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/StoredProcs/cstore_GetDictionaries.sql -------------------------------------------------------------------------------- /SQL vNext/StoredProcs/cstore_GetFragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/StoredProcs/cstore_GetFragmentation.sql -------------------------------------------------------------------------------- /SQL vNext/StoredProcs/cstore_GetMemory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/StoredProcs/cstore_GetMemory.sql -------------------------------------------------------------------------------- /SQL vNext/StoredProcs/cstore_GetRowGroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/StoredProcs/cstore_GetRowGroups.sql -------------------------------------------------------------------------------- /SQL vNext/StoredProcs/cstore_GetRowGroupsDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/StoredProcs/cstore_GetRowGroupsDetails.sql -------------------------------------------------------------------------------- /SQL vNext/StoredProcs/cstore_GetSQLInfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/StoredProcs/cstore_GetSQLInfo.sql -------------------------------------------------------------------------------- /SQL vNext/StoredProcs/cstore_SuggestedTables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/StoredProcs/cstore_SuggestedTables.sql -------------------------------------------------------------------------------- /SQL vNext/StoredProcs/cstore_cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/StoredProcs/cstore_cleanup.sql -------------------------------------------------------------------------------- /SQL vNext/StoredProcs/cstore_doMaintenance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/StoredProcs/cstore_doMaintenance.sql -------------------------------------------------------------------------------- /SQL vNext/StoredProcs/cstore_install_all_stored_procs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/StoredProcs/cstore_install_all_stored_procs.sql -------------------------------------------------------------------------------- /SQL vNext/alignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/alignment.sql -------------------------------------------------------------------------------- /SQL vNext/dictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/dictionaries.sql -------------------------------------------------------------------------------- /SQL vNext/fragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/fragmentation.sql -------------------------------------------------------------------------------- /SQL vNext/memory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/memory.sql -------------------------------------------------------------------------------- /SQL vNext/row_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/row_groups.sql -------------------------------------------------------------------------------- /SQL vNext/row_groups_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/row_groups_details.sql -------------------------------------------------------------------------------- /SQL vNext/sqlserver_instance_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/sqlserver_instance_info.sql -------------------------------------------------------------------------------- /SQL vNext/suggested_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL vNext/suggested_tables.sql -------------------------------------------------------------------------------- /SQL-2012/Extended Events/cstore_XE_Memory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/Extended Events/cstore_XE_Memory.sql -------------------------------------------------------------------------------- /SQL-2012/Extended Events/cstore_XE_RowGroupElimination.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/Extended Events/cstore_XE_RowGroupElimination.sql -------------------------------------------------------------------------------- /SQL-2012/Extended Events/cstore_XE_RowGroupReading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/Extended Events/cstore_XE_RowGroupReading.sql -------------------------------------------------------------------------------- /SQL-2012/Extended Events/setup_all_extended_events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/Extended Events/setup_all_extended_events.sql -------------------------------------------------------------------------------- /SQL-2012/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/Readme -------------------------------------------------------------------------------- /SQL-2012/StoredProcs/cstore_GetAlignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/StoredProcs/cstore_GetAlignment.sql -------------------------------------------------------------------------------- /SQL-2012/StoredProcs/cstore_GetDictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/StoredProcs/cstore_GetDictionaries.sql -------------------------------------------------------------------------------- /SQL-2012/StoredProcs/cstore_GetMemory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/StoredProcs/cstore_GetMemory.sql -------------------------------------------------------------------------------- /SQL-2012/StoredProcs/cstore_GetRowGroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/StoredProcs/cstore_GetRowGroups.sql -------------------------------------------------------------------------------- /SQL-2012/StoredProcs/cstore_GetRowGroupsDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/StoredProcs/cstore_GetRowGroupsDetails.sql -------------------------------------------------------------------------------- /SQL-2012/StoredProcs/cstore_GetSQLInfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/StoredProcs/cstore_GetSQLInfo.sql -------------------------------------------------------------------------------- /SQL-2012/StoredProcs/cstore_SuggestedTables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/StoredProcs/cstore_SuggestedTables.sql -------------------------------------------------------------------------------- /SQL-2012/StoredProcs/cstore_cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/StoredProcs/cstore_cleanup.sql -------------------------------------------------------------------------------- /SQL-2012/StoredProcs/cstore_install_all_stored_procs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/StoredProcs/cstore_install_all_stored_procs.sql -------------------------------------------------------------------------------- /SQL-2012/alignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/alignment.sql -------------------------------------------------------------------------------- /SQL-2012/dictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/dictionaries.sql -------------------------------------------------------------------------------- /SQL-2012/memory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/memory.sql -------------------------------------------------------------------------------- /SQL-2012/row_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/row_groups.sql -------------------------------------------------------------------------------- /SQL-2012/row_groups_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/row_groups_details.sql -------------------------------------------------------------------------------- /SQL-2012/sqlserver_instance_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/sqlserver_instance_info.sql -------------------------------------------------------------------------------- /SQL-2012/suggested_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2012/suggested_tables.sql -------------------------------------------------------------------------------- /SQL-2014/Extended Events/cstore_XE_BatchMode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/Extended Events/cstore_XE_BatchMode.sql -------------------------------------------------------------------------------- /SQL-2014/Extended Events/cstore_XE_IndexCreation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/Extended Events/cstore_XE_IndexCreation.sql -------------------------------------------------------------------------------- /SQL-2014/Extended Events/cstore_XE_Memory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/Extended Events/cstore_XE_Memory.sql -------------------------------------------------------------------------------- /SQL-2014/Extended Events/cstore_XE_RowGroupElimination.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/Extended Events/cstore_XE_RowGroupElimination.sql -------------------------------------------------------------------------------- /SQL-2014/Extended Events/cstore_XE_RowGroupReading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/Extended Events/cstore_XE_RowGroupReading.sql -------------------------------------------------------------------------------- /SQL-2014/Extended Events/cstore_XE_TupleMover.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/Extended Events/cstore_XE_TupleMover.sql -------------------------------------------------------------------------------- /SQL-2014/Extended Events/setup_all_extended_events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/Extended Events/setup_all_extended_events.sql -------------------------------------------------------------------------------- /SQL-2014/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/Readme -------------------------------------------------------------------------------- /SQL-2014/StoredProcs/cstore_GetAlignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/StoredProcs/cstore_GetAlignment.sql -------------------------------------------------------------------------------- /SQL-2014/StoredProcs/cstore_GetDictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/StoredProcs/cstore_GetDictionaries.sql -------------------------------------------------------------------------------- /SQL-2014/StoredProcs/cstore_GetFragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/StoredProcs/cstore_GetFragmentation.sql -------------------------------------------------------------------------------- /SQL-2014/StoredProcs/cstore_GetMemory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/StoredProcs/cstore_GetMemory.sql -------------------------------------------------------------------------------- /SQL-2014/StoredProcs/cstore_GetRowGroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/StoredProcs/cstore_GetRowGroups.sql -------------------------------------------------------------------------------- /SQL-2014/StoredProcs/cstore_GetRowGroupsDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/StoredProcs/cstore_GetRowGroupsDetails.sql -------------------------------------------------------------------------------- /SQL-2014/StoredProcs/cstore_GetSQLInfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/StoredProcs/cstore_GetSQLInfo.sql -------------------------------------------------------------------------------- /SQL-2014/StoredProcs/cstore_SuggestedTables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/StoredProcs/cstore_SuggestedTables.sql -------------------------------------------------------------------------------- /SQL-2014/StoredProcs/cstore_cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/StoredProcs/cstore_cleanup.sql -------------------------------------------------------------------------------- /SQL-2014/StoredProcs/cstore_doMaintenance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/StoredProcs/cstore_doMaintenance.sql -------------------------------------------------------------------------------- /SQL-2014/StoredProcs/cstore_install_all_stored_procs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/StoredProcs/cstore_install_all_stored_procs.sql -------------------------------------------------------------------------------- /SQL-2014/alignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/alignment.sql -------------------------------------------------------------------------------- /SQL-2014/dictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/dictionaries.sql -------------------------------------------------------------------------------- /SQL-2014/fragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/fragmentation.sql -------------------------------------------------------------------------------- /SQL-2014/memory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/memory.sql -------------------------------------------------------------------------------- /SQL-2014/row_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/row_groups.sql -------------------------------------------------------------------------------- /SQL-2014/row_groups_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/row_groups_details.sql -------------------------------------------------------------------------------- /SQL-2014/sqlserver_instance_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/sqlserver_instance_info.sql -------------------------------------------------------------------------------- /SQL-2014/suggested_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2014/suggested_tables.sql -------------------------------------------------------------------------------- /SQL-2016/Extended Events/cstore_XE_BatchMode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/Extended Events/cstore_XE_BatchMode.sql -------------------------------------------------------------------------------- /SQL-2016/Extended Events/cstore_XE_Errors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/Extended Events/cstore_XE_Errors.sql -------------------------------------------------------------------------------- /SQL-2016/Extended Events/cstore_XE_IndexCreation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/Extended Events/cstore_XE_IndexCreation.sql -------------------------------------------------------------------------------- /SQL-2016/Extended Events/cstore_XE_InternalObjects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/Extended Events/cstore_XE_InternalObjects.sql -------------------------------------------------------------------------------- /SQL-2016/Extended Events/cstore_XE_Memory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/Extended Events/cstore_XE_Memory.sql -------------------------------------------------------------------------------- /SQL-2016/Extended Events/cstore_XE_RowGroupElimination.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/Extended Events/cstore_XE_RowGroupElimination.sql -------------------------------------------------------------------------------- /SQL-2016/Extended Events/cstore_XE_RowGroupReading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/Extended Events/cstore_XE_RowGroupReading.sql -------------------------------------------------------------------------------- /SQL-2016/Extended Events/cstore_XE_TupleMover.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/Extended Events/cstore_XE_TupleMover.sql -------------------------------------------------------------------------------- /SQL-2016/Extended Events/setup_all_extended_events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/Extended Events/setup_all_extended_events.sql -------------------------------------------------------------------------------- /SQL-2016/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/Readme -------------------------------------------------------------------------------- /SQL-2016/StoredProcs/cstore_GetAlignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/StoredProcs/cstore_GetAlignment.sql -------------------------------------------------------------------------------- /SQL-2016/StoredProcs/cstore_GetDictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/StoredProcs/cstore_GetDictionaries.sql -------------------------------------------------------------------------------- /SQL-2016/StoredProcs/cstore_GetFragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/StoredProcs/cstore_GetFragmentation.sql -------------------------------------------------------------------------------- /SQL-2016/StoredProcs/cstore_GetMemory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/StoredProcs/cstore_GetMemory.sql -------------------------------------------------------------------------------- /SQL-2016/StoredProcs/cstore_GetRowGroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/StoredProcs/cstore_GetRowGroups.sql -------------------------------------------------------------------------------- /SQL-2016/StoredProcs/cstore_GetRowGroupsDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/StoredProcs/cstore_GetRowGroupsDetails.sql -------------------------------------------------------------------------------- /SQL-2016/StoredProcs/cstore_GetSQLInfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/StoredProcs/cstore_GetSQLInfo.sql -------------------------------------------------------------------------------- /SQL-2016/StoredProcs/cstore_SuggestedTables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/StoredProcs/cstore_SuggestedTables.sql -------------------------------------------------------------------------------- /SQL-2016/StoredProcs/cstore_cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/StoredProcs/cstore_cleanup.sql -------------------------------------------------------------------------------- /SQL-2016/StoredProcs/cstore_doMaintenance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/StoredProcs/cstore_doMaintenance.sql -------------------------------------------------------------------------------- /SQL-2016/StoredProcs/cstore_install_all_stored_procs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/StoredProcs/cstore_install_all_stored_procs.sql -------------------------------------------------------------------------------- /SQL-2016/alignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/alignment.sql -------------------------------------------------------------------------------- /SQL-2016/dictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/dictionaries.sql -------------------------------------------------------------------------------- /SQL-2016/fragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/fragmentation.sql -------------------------------------------------------------------------------- /SQL-2016/memory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/memory.sql -------------------------------------------------------------------------------- /SQL-2016/row_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/row_groups.sql -------------------------------------------------------------------------------- /SQL-2016/row_groups_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/row_groups_details.sql -------------------------------------------------------------------------------- /SQL-2016/sqlserver_instance_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/sqlserver_instance_info.sql -------------------------------------------------------------------------------- /SQL-2016/suggested_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2016/suggested_tables.sql -------------------------------------------------------------------------------- /SQL-2017/Extended Events/cstore_XE_BatchMode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/Extended Events/cstore_XE_BatchMode.sql -------------------------------------------------------------------------------- /SQL-2017/Extended Events/cstore_XE_Errors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/Extended Events/cstore_XE_Errors.sql -------------------------------------------------------------------------------- /SQL-2017/Extended Events/cstore_XE_IndexCreation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/Extended Events/cstore_XE_IndexCreation.sql -------------------------------------------------------------------------------- /SQL-2017/Extended Events/cstore_XE_InternalObjects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/Extended Events/cstore_XE_InternalObjects.sql -------------------------------------------------------------------------------- /SQL-2017/Extended Events/cstore_XE_Memory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/Extended Events/cstore_XE_Memory.sql -------------------------------------------------------------------------------- /SQL-2017/Extended Events/cstore_XE_RowGroupElimination.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/Extended Events/cstore_XE_RowGroupElimination.sql -------------------------------------------------------------------------------- /SQL-2017/Extended Events/cstore_XE_RowGroupReading.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/Extended Events/cstore_XE_RowGroupReading.sql -------------------------------------------------------------------------------- /SQL-2017/Extended Events/cstore_XE_TupleMover.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/Extended Events/cstore_XE_TupleMover.sql -------------------------------------------------------------------------------- /SQL-2017/Extended Events/setup_all_extended_events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/Extended Events/setup_all_extended_events.sql -------------------------------------------------------------------------------- /SQL-2017/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/Readme -------------------------------------------------------------------------------- /SQL-2017/StoredProcs/cstore_GetAlignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/StoredProcs/cstore_GetAlignment.sql -------------------------------------------------------------------------------- /SQL-2017/StoredProcs/cstore_GetDictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/StoredProcs/cstore_GetDictionaries.sql -------------------------------------------------------------------------------- /SQL-2017/StoredProcs/cstore_GetFragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/StoredProcs/cstore_GetFragmentation.sql -------------------------------------------------------------------------------- /SQL-2017/StoredProcs/cstore_GetMemory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/StoredProcs/cstore_GetMemory.sql -------------------------------------------------------------------------------- /SQL-2017/StoredProcs/cstore_GetRowGroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/StoredProcs/cstore_GetRowGroups.sql -------------------------------------------------------------------------------- /SQL-2017/StoredProcs/cstore_GetRowGroupsDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/StoredProcs/cstore_GetRowGroupsDetails.sql -------------------------------------------------------------------------------- /SQL-2017/StoredProcs/cstore_GetSQLInfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/StoredProcs/cstore_GetSQLInfo.sql -------------------------------------------------------------------------------- /SQL-2017/StoredProcs/cstore_SuggestedTables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/StoredProcs/cstore_SuggestedTables.sql -------------------------------------------------------------------------------- /SQL-2017/StoredProcs/cstore_cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/StoredProcs/cstore_cleanup.sql -------------------------------------------------------------------------------- /SQL-2017/StoredProcs/cstore_doMaintenance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/StoredProcs/cstore_doMaintenance.sql -------------------------------------------------------------------------------- /SQL-2017/StoredProcs/cstore_install_all_stored_procs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/StoredProcs/cstore_install_all_stored_procs.sql -------------------------------------------------------------------------------- /SQL-2017/alignment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/alignment.sql -------------------------------------------------------------------------------- /SQL-2017/dictionaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/dictionaries.sql -------------------------------------------------------------------------------- /SQL-2017/fragmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/fragmentation.sql -------------------------------------------------------------------------------- /SQL-2017/memory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/memory.sql -------------------------------------------------------------------------------- /SQL-2017/row_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/row_groups.sql -------------------------------------------------------------------------------- /SQL-2017/row_groups_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/row_groups_details.sql -------------------------------------------------------------------------------- /SQL-2017/sqlserver_instance_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/sqlserver_instance_info.sql -------------------------------------------------------------------------------- /SQL-2017/suggested_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/SQL-2017/suggested_tables.sql -------------------------------------------------------------------------------- /Stored Procedures/cstore_sp_estimate_columnstore_compression_savings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Stored Procedures/cstore_sp_estimate_columnstore_compression_savings.sql -------------------------------------------------------------------------------- /Tests/Azure/00_stored_procedures_installation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/Azure/00_stored_procedures_installation.sql -------------------------------------------------------------------------------- /Tests/Azure/03_Temporary_Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/Azure/03_Temporary_Table.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/00_create_test_classes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/00_create_test_classes.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/01_setup_tests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/01_setup_tests.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/Alignment_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/Alignment_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/Alignment_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/Alignment_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/Dictionaries_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/Dictionaries_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/Dictionaries_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/Dictionaries_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/RowGroupsDetails_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/RowGroupsDetails_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/RowGroupsDetails_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/RowGroupsDetails_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/RowGroups_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/RowGroups_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/RowGroups_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/RowGroups_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/SuggestedTables_testSimple500KTable_considerColumnsOver8K.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/SuggestedTables_testSimple500KTable_considerColumnsOver8K.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/SuggestedTables_testSimple500KTable_indexLocation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/SuggestedTables_testSimple500KTable_indexLocation.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/SuggestedTables_testSimple500KTable_minRowsToConsider.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/SuggestedTables_testSimple500KTable_minRowsToConsider.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/SuggestedTables_testSimple500KTable_minSizeToConsiderInGB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/SuggestedTables_testSimple500KTable_minSizeToConsiderInGB.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/SuggestedTables_testSimple500KTable_schemaName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/SuggestedTables_testSimple500KTable_schemaName.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/SuggestedTables_testSimple500KTable_showReadyTablesOnly.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/SuggestedTables_testSimple500KTable_showReadyTablesOnly.sql -------------------------------------------------------------------------------- /Tests/SQL-2012/XX_RunAllTests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2012/XX_RunAllTests.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/00_create_test_classes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/00_create_test_classes.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/01_setup_tests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/01_setup_tests.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Alignment_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Alignment_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Alignment_testEmptyDeltaStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Alignment_testEmptyDeltaStore.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Alignment_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Alignment_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Alignment_testOneDeletedRowGroup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Alignment_testOneDeletedRowGroup.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Alignment_testRowGroupAndDelta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Alignment_testRowGroupAndDelta.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Dictionaries_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Dictionaries_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Dictionaries_testEmptyDeltaStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Dictionaries_testEmptyDeltaStore.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Dictionaries_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Dictionaries_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Dictionaries_testOneDeletedRowGroup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Dictionaries_testOneDeletedRowGroup.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Dictionaries_testRowGroupAndDelta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Dictionaries_testRowGroupAndDelta.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Fragmentation_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Fragmentation_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Fragmentation_testEmptyDeltaStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Fragmentation_testEmptyDeltaStore.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Fragmentation_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Fragmentation_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Fragmentation_testOneDeletedRowGroup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Fragmentation_testOneDeletedRowGroup.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Fragmentation_testRowGroupAndDelta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Fragmentation_testRowGroupAndDelta.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Old/00_stored_procedures_installation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Old/00_stored_procedures_installation.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Old/02_indexes_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Old/02_indexes_test.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/Old/03_temp_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/Old/03_temp_tables.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/RowGroupsDetails_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/RowGroupsDetails_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/RowGroupsDetails_testEmptyDeltaStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/RowGroupsDetails_testEmptyDeltaStore.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/RowGroupsDetails_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/RowGroupsDetails_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/RowGroupsDetails_testOneDeletedRowGroup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/RowGroupsDetails_testOneDeletedRowGroup.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/RowGroupsDetails_testRowGroupAndDelta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/RowGroupsDetails_testRowGroupAndDelta.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/RowGroups_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/RowGroups_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/RowGroups_testEmptyDeltaStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/RowGroups_testEmptyDeltaStore.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/RowGroups_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/RowGroups_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/RowGroups_testOneDeletedRowGroup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/RowGroups_testOneDeletedRowGroup.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/RowGroups_testRowGroupAndDelta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/RowGroups_testRowGroupAndDelta.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/SuggestedTables_testSimple500KTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/SuggestedTables_testSimple500KTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/SuggestedTables_testSimple500KTable_considerColumnsOver8K.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/SuggestedTables_testSimple500KTable_considerColumnsOver8K.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/SuggestedTables_testSimple500KTable_indexLocation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/SuggestedTables_testSimple500KTable_indexLocation.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/SuggestedTables_testSimple500KTable_minRowsToConsider.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/SuggestedTables_testSimple500KTable_minRowsToConsider.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/SuggestedTables_testSimple500KTable_minSizeToConsiderInGB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/SuggestedTables_testSimple500KTable_minSizeToConsiderInGB.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/SuggestedTables_testSimple500KTable_schemaName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/SuggestedTables_testSimple500KTable_schemaName.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/SuggestedTables_testSimple500KTable_showReadyTablesOnly.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/SuggestedTables_testSimple500KTable_showReadyTablesOnly.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/XX_RunAllTests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/XX_RunAllTests.sql -------------------------------------------------------------------------------- /Tests/SQL-2014/parameters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2014/parameters.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/00_create_test_classes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/00_create_test_classes.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/01_setup_tests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/01_setup_tests.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Alignment_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Alignment_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Alignment_testEmptyDeltaStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Alignment_testEmptyDeltaStore.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Alignment_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Alignment_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Alignment_testOneDeletedRowGroup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Alignment_testOneDeletedRowGroup.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Alignment_testRowGroupAndDelta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Alignment_testRowGroupAndDelta.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Dictionaries_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Dictionaries_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Dictionaries_testEmptyDeltaStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Dictionaries_testEmptyDeltaStore.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Dictionaries_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Dictionaries_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Dictionaries_testOneDeletedRowGroup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Dictionaries_testOneDeletedRowGroup.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Dictionaries_testRowGroupAndDelta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Dictionaries_testRowGroupAndDelta.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Fragmentation_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Fragmentation_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Fragmentation_testEmptyDeltaStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Fragmentation_testEmptyDeltaStore.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Fragmentation_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Fragmentation_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Fragmentation_testOneDeletedRowGroup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Fragmentation_testOneDeletedRowGroup.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/Fragmentation_testRowGroupAndDelta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/Fragmentation_testRowGroupAndDelta.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/RowGroupsDetails_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/RowGroupsDetails_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/RowGroupsDetails_testEmptyDeltaStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/RowGroupsDetails_testEmptyDeltaStore.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/RowGroupsDetails_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/RowGroupsDetails_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/RowGroupsDetails_testOneDeletedRowGroup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/RowGroupsDetails_testOneDeletedRowGroup.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/RowGroupsDetails_testRowGroupAndDelta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/RowGroupsDetails_testRowGroupAndDelta.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/RowGroups_test1RowTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/RowGroups_test1RowTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/RowGroups_testEmptyDeltaStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/RowGroups_testEmptyDeltaStore.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/RowGroups_testEmptyTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/RowGroups_testEmptyTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/RowGroups_testOneDeletedRowGroup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/RowGroups_testOneDeletedRowGroup.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/RowGroups_testRowGroupAndDelta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/RowGroups_testRowGroupAndDelta.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/SuggestedTables_testSimple500KTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/SuggestedTables_testSimple500KTable.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/SuggestedTables_testSimple500KTable_considerColumnsOver8K.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/SuggestedTables_testSimple500KTable_considerColumnsOver8K.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/SuggestedTables_testSimple500KTable_indexLocation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/SuggestedTables_testSimple500KTable_indexLocation.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/SuggestedTables_testSimple500KTable_minRowsToConsider.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/SuggestedTables_testSimple500KTable_minRowsToConsider.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/SuggestedTables_testSimple500KTable_minSizeToConsiderInGB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/SuggestedTables_testSimple500KTable_minSizeToConsiderInGB.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/SuggestedTables_testSimple500KTable_schemaName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/SuggestedTables_testSimple500KTable_schemaName.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/SuggestedTables_testSimple500KTable_showReadyTablesOnly.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/SuggestedTables_testSimple500KTable_showReadyTablesOnly.sql -------------------------------------------------------------------------------- /Tests/SQL-2016/XX_RunAllTests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/SQL-2016/XX_RunAllTests.sql -------------------------------------------------------------------------------- /Tests/sql-2012-tests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/sql-2012-tests.sql -------------------------------------------------------------------------------- /Tests/sql-2014-tests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/sql-2014-tests.sql -------------------------------------------------------------------------------- /Tests/sql-2016-tests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/Tests/sql-2016-tests.sql -------------------------------------------------------------------------------- /cisl.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/cisl.psd1 -------------------------------------------------------------------------------- /cisl.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/cisl.psm1 -------------------------------------------------------------------------------- /install_CISL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/install_CISL.ps1 -------------------------------------------------------------------------------- /remove_CISL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/remove_CISL.ps1 -------------------------------------------------------------------------------- /setup_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/setup_all.ps1 -------------------------------------------------------------------------------- /setup_dac.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/setup_dac.ps1 -------------------------------------------------------------------------------- /update-cisl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikoNeugebauer/CISL/HEAD/update-cisl.ps1 --------------------------------------------------------------------------------