├── .gitignore ├── Assessment ├── .gitignore ├── AssessmentConfigFile.json ├── AssessmentDriverFile.json ├── AssessmentDriver_V2.ps1 ├── AssessmentTool.pptx ├── CopyDataToExcel_V2.ps1 ├── Estimation_Code_And_Data.xlsx ├── Estimation_Framework.xlsx ├── PowerBI │ ├── APS │ │ └── APS Assessment.pbit │ ├── DB2 │ │ └── DB2 Assessment.pbit │ ├── Oracle │ │ └── Oracle Assessment.pbit │ ├── SQLServer │ │ ├── DataTypes.csv │ │ └── SQL Server Assessment.pbit │ └── Teradata │ │ └── Teradata - PBI Report.pbit ├── README.md ├── Readme_References │ ├── APS_or_Synapse_CapturingInformation.md │ ├── AssessmentDriver_config_details.md │ ├── Configuration_Scripts_details.md │ ├── Netezza Schema Extract.md │ ├── Netezza_CapturingInformation.md │ └── README.md ├── RunSQLStatement.ps1 ├── SQLScriptstoRun.csv ├── SSIS │ ├── .gitignore │ ├── Get-SsisPackagesInventory.ps1 │ ├── README.md │ ├── SSIS Assessment.pbit │ └── images │ │ ├── InventoryFiles.png │ │ ├── PBI-Report-DataFlows.png │ │ ├── PBI-Report-EventHandlers.png │ │ ├── PBI-Report-Executables.png │ │ ├── PBI-Report-Overview.png │ │ ├── PBI-Report-PackageConnectionManagers.png │ │ ├── PBI-Report-Parameters.png │ │ ├── PBI-Report-ProjectConnectionManagers.png │ │ ├── PBI-parameters.png │ │ ├── PBI-refreshdata.png │ │ ├── SSIS_logo.png │ │ ├── ScriptOutput.png │ │ ├── ScriptOutput2.png │ │ └── ScriptParameters.png ├── SSRS │ ├── .gitignore │ ├── Get-SsrsReportsInventory.ps1 │ ├── README.md │ ├── SSRS assessment.pbit │ └── images │ │ ├── InventoryFiles.png │ │ ├── PBI-Report-ConnectionTypes.png │ │ ├── PBI-Report-EmbeddedDataSources.png │ │ ├── PBI-Report-EmbeddedDatasets.png │ │ ├── PBI-Report-Reports.png │ │ ├── PBI-Report-SharedDataSources.png │ │ ├── PBI-Report-SharedDatasets.png │ │ ├── PBI-Report-Summary.png │ │ ├── PBI-parameters.png │ │ ├── ScriptOutput.png │ │ ├── ScriptParameters.png │ │ ├── ScriptSummary.png │ │ ├── ssrs-Chart.png │ │ ├── ssrs-DataBa.png │ │ ├── ssrs-Gauge.png │ │ ├── ssrs-Image.png │ │ ├── ssrs-Indicator.png │ │ ├── ssrs-Line.png │ │ ├── ssrs-Map.png │ │ ├── ssrs-Rectangle.png │ │ ├── ssrs-Sparkline.png │ │ ├── ssrs-Subreport.png │ │ ├── ssrs-Table.png │ │ ├── ssrs-Tablix.png │ │ └── ssrs-Textbox.png ├── Scripts │ ├── APS │ │ ├── Distributions_V1.sql │ │ ├── Exec_SpaceUsedTable_V1.sql │ │ ├── FunctionsToScript_V1.sql │ │ ├── IndexesToScript_V1.sql │ │ ├── ObjectCount_V1.sql │ │ ├── RemoteTableSPs_V1.sql │ │ ├── RolesToScript_V1.sql │ │ ├── SPsToScript_V1.sql │ │ ├── SPsToScript_V2.sql │ │ ├── SQLScriptsToRun.csv │ │ ├── ShowSpaceUsedTotal_V1.sql │ │ ├── ShowSpaceUsed_V1.sql │ │ ├── StatisticsToScript_V1.sql │ │ ├── TableMetadata_v1.sql │ │ ├── TablesToScript_V1.sql │ │ ├── TablesToScript_V2.sql │ │ ├── UsersToScript_V1.sql │ │ ├── UsersToScript_V2.sql │ │ ├── Version_V1.sql │ │ ├── ViewsToScript_V1.sql │ │ ├── ViewsToScript_V2.sql │ │ ├── sp_configure_V1.sql │ │ ├── sys.database_credentials_V1.sql │ │ ├── sys.database_principals_V1.sql │ │ ├── sys.database_role_members_V1.sql │ │ ├── sys.database_scoped_credentials_V1.sql │ │ ├── sys.databases_V1.sql │ │ ├── sys.dm_pdw_exec_requests_V1.sql │ │ ├── sys.dm_pdw_nodes_V1.sql │ │ ├── sys.dm_pdw_nodes_os_sys_info_V1.sql │ │ ├── sys.dm_pdw_nodes_os_sys_memory_V1.sql │ │ ├── sys.dm_pdw_sql_requests_V1.sql │ │ ├── sys.dm_pdw_sys_info_V1.sql │ │ ├── sys.pdw_distributions_V1.sql │ │ └── sys.schemas_V1.sql │ ├── AzureDW │ │ ├── Auto_Stats_Setting_V1.sql │ │ ├── CCI_Index_Health_Summary_V1.sql │ │ ├── CCI_Index_Health_V1.sql │ │ ├── CCI_Index_Trim_REason_V1.sql │ │ ├── DMS_PDW_Wait_Stats_V1.sql │ │ ├── DMS_PDW_Waits_V1.sql │ │ ├── DMS_Resource_Waits_V1.sql │ │ ├── DMS_SQL_Requests_V1.sql │ │ ├── DMS_Workers_V1.sql │ │ ├── Exec_Request_Steps_V1.sql │ │ ├── Exec_Requests_V1.sql │ │ ├── Exec_SpaceUsedDB_V1.sql │ │ ├── Exec_SpaceUsedTable_V1.sql │ │ ├── ObjectCount_V1.sql │ │ ├── PDW_ShowSpaceUsed_V1.sql │ │ ├── SQLScriptsToRun.csv │ │ ├── Statistats_last_updated_V1.sql │ │ ├── TableMetadata_v1.sql │ │ ├── Version_V1.sql │ │ └── dm_workload_management_workload_groups_stats_V1.sql │ ├── DB2 │ │ ├── DB2_LUW_Script_01.sql │ │ ├── DB2_LUW_Script_02.sql │ │ └── SQLScriptsToRun.csv │ ├── Netezza │ │ ├── Aggregate_V1.sql │ │ ├── DBSize_V1.sql │ │ ├── Function_V1.sql │ │ ├── Library_V1.sql │ │ ├── ObjectCount_V1.sql │ │ ├── Procedure_V1.sql │ │ ├── SQLScriptsToRun.csv │ │ ├── SystemInfo_V1.sql │ │ ├── TableMetadata_V1.sql │ │ ├── TableSize_V1.sql │ │ ├── _v_aggregate_V1.sql │ │ ├── _v_database_V1.sql │ │ ├── _v_datatype_V1.sql │ │ ├── _v_function_V1.sql │ │ ├── _v_group_V1.sql │ │ ├── _v_index_V1.sql │ │ ├── _v_library_V1.sql │ │ ├── _v_objects_V1.sql │ │ ├── _v_operator_V1.sql │ │ ├── _v_procedure_V1.sql │ │ ├── _v_qryhist_V1.sql │ │ ├── _v_qrystat_V1.sql │ │ ├── _v_relation_column_V1.sql │ │ ├── _v_relation_column_def_V1.sql │ │ ├── _v_sequence_V1.sql │ │ ├── _v_synonym_V1.sql │ │ ├── _v_sys_columns_V1.sql │ │ ├── _v_sys_database_V1.sql │ │ ├── _v_sys_object_data_V1.sql │ │ ├── _v_sys_object_storage_size_V1.sql │ │ ├── _v_system_info_V1.sql │ │ ├── _v_table_V1.sql │ │ ├── _v_table_dist_map_V1.sql │ │ ├── _v_table_index_V1.sql │ │ ├── _v_table_organize_column_V1.sql │ │ └── _v_view_V1.sql │ ├── Oracle │ │ ├── Audit.sql │ │ ├── AutomatedMaintenanceTasks.sql │ │ ├── BitmapIndexes.sql │ │ ├── Clustering.sql │ │ ├── Collation.sql │ │ ├── ColumnMetadata_v1.sql │ │ ├── ColumnMetadata_v2.sql │ │ ├── ComponentsInstalled.sql │ │ ├── Constraints.sql │ │ ├── Cores.sql │ │ ├── DBLinks.sql │ │ ├── DBMail.sql │ │ ├── DBName.sql │ │ ├── DBSchema.sql │ │ ├── DataConcurrency.sql │ │ ├── DataEncryption.sql │ │ ├── DataTypes.sql │ │ ├── Database.sql │ │ ├── DatabaseMail.sql │ │ ├── DatabaseParameters.sql │ │ ├── FeatureUsageStatistics.sql │ │ ├── FeaturesUsed.sql │ │ ├── FileGroups.sql │ │ ├── Functions.sql │ │ ├── InMemory.sql │ │ ├── Indexes.sql │ │ ├── MaterializedViews.sql │ │ ├── MemoryUsgae.sql │ │ ├── ObjectCounts.sql │ │ ├── ObjectLineCount.sql │ │ ├── OracleComponents.sql │ │ ├── OracleOptions.sql │ │ ├── Packages.sql │ │ ├── ResourceUtilization.sql │ │ ├── Roles.sql │ │ ├── RowLevelSecurity.sql │ │ ├── SQLScriptsToRun.csv │ │ ├── Sequences.sql │ │ ├── Snapshots.sql │ │ ├── StoredProcedures.sql │ │ ├── Synonyms.sql │ │ ├── TablePKs.sql │ │ ├── TablePartitions.sql │ │ ├── TableRowCounts.sql │ │ ├── Tables.sql │ │ ├── TopApplicationQueries.sql │ │ ├── TotalDBSize.sql │ │ ├── TotalDatabaseSize.sql │ │ ├── TotalUsedDBSize.sql │ │ ├── TransparentApplicationFailover.sql │ │ ├── Triggers.sql │ │ ├── UsedDatabaseSize.sql │ │ ├── Users_v1.sql │ │ ├── Users_v2.sql │ │ ├── Version.sql │ │ └── Views.sql │ ├── SQLServer │ │ ├── 01_Object_Counts_V1.sql │ │ ├── 02_DB_Space_Used_V1.sql │ │ ├── 03_Table_Row_Counts_V1.sql │ │ ├── 04_Column_Metadata_V1.sql │ │ ├── 05_Schemas_V1.sql │ │ ├── 06_Database_Information_V1.sql │ │ ├── 07_Users_V1.sql │ │ ├── 08_Remote_Logins_V1.sql │ │ ├── 09_Fulltext_Indexes_V1.sql │ │ ├── 10_Assemblies_V1.sql │ │ ├── 11_In_Memory_Objects_V1.sql │ │ ├── 12_Partitioned_Tables_V1.sql │ │ ├── 14_Service_Broker_Queues_V1.sql │ │ ├── 15_Encrypted_Columns_V1.sql │ │ ├── 16_Masked_Columns_V1.sql │ │ ├── 17_Stored_Proc_Row_Counts_V1.sql │ │ ├── 18_Replication_Status_V1.sql │ │ ├── 19_Files_and_Filegroups_V1.sql │ │ ├── 20_External_Data_Stores_V1.sql │ │ ├── 21_Availability_Groups_V1.sql │ │ ├── 22_Change_Tracking_V1.sql │ │ ├── 23_Check_Constraints_V1.sql │ │ ├── 24_Computed_Columns_V1.sql │ │ ├── 25_Index_Types_V1.sql │ │ ├── 26_XML_Indexes_V1.sql │ │ ├── 27_Configuration_Settings_V1.sql │ │ ├── 28_Host_Operating_System_V1.sql │ │ ├── 29_Available_Resources_V1.sql │ │ ├── 30_Temporal_Tables_V1.sql │ │ ├── 31_Version_V1.sql │ │ ├── SQL Server Assessment Scripts.sql │ │ ├── SQLScriptsToRun.csv │ │ └── StoredProcedureListing.sql │ ├── Snowflake │ │ ├── 1. Database Information.sql │ │ ├── 10. Stored Procedure Information.sql │ │ ├── 11. Functions Information.sql │ │ ├── 12. Stages Information.sql │ │ ├── 13. Load History Information.sql │ │ ├── 14. File Formats Information.sql │ │ ├── 15. Pipes Information.sql │ │ ├── 16. Privileges Information.sql │ │ ├── 17. Roles Information.sql │ │ ├── 18. Enabled Roles Information.sql │ │ ├── 19. External Tables Information.sql │ │ ├── 2. Schema Information.sql │ │ ├── 20. Table Privileges Information.sql │ │ ├── 21. Usage Privileges Information.sql │ │ ├── 22. Query History.sql │ │ ├── 23. Integration Information.sql │ │ ├── 24. Materialized Views Information.sql │ │ ├── 25. Replicated Databases Information.sql │ │ ├── 26. Warehouse Information.sql │ │ ├── 27. Masking Information.sql │ │ ├── 28. Network Policy Information.sql │ │ ├── 29. Task Information.sql │ │ ├── 3. Table Information.sql │ │ ├── 30. Streams Information.sql │ │ ├── 4. Table Storage Metrics.sql │ │ ├── 5. Table Constraints Information.sql │ │ ├── 6. Referential Integrity Information.sql │ │ ├── 7. View Information.sql │ │ ├── 8. Column Information.sql │ │ ├── 9. Sequences Information.sql │ │ └── SQLScriptsToRun.csv │ ├── Synapse │ │ ├── Auto_Stats_Setting_V1.sql │ │ ├── CCI_Index_Health_Summary_V1.sql │ │ ├── CCI_Index_Health_V1.sql │ │ ├── CCI_Index_Trim_REason_V1.sql │ │ ├── DMS_PDW_Wait_Stats_V1.sql │ │ ├── DMS_PDW_Waits_V1.sql │ │ ├── DMS_Resource_Waits_V1.sql │ │ ├── DMS_SQL_Requests_V1.sql │ │ ├── DMS_Workers_V1.sql │ │ ├── Exec_Request_Steps_V1.sql │ │ ├── Exec_Requests_V1.sql │ │ ├── Exec_SpaceUsedDB_V1.sql │ │ ├── Exec_SpaceUsedTable_V1.sql │ │ ├── FunctionsToScript_V1.sql │ │ ├── IndexesToScript_V1.sql │ │ ├── ObjectCount_V1.sql │ │ ├── PDW_ShowSpaceUsed_V1.sql │ │ ├── SPsToScript_V2.sql │ │ ├── SQLScriptsToRun.csv │ │ ├── Statistats_last_updated_V1.sql │ │ ├── StatisticsToScript_V1.sql │ │ ├── TableMetadata_v1.sql │ │ ├── TablesToScript_V2.sql │ │ ├── UsersToScript_V1.sql │ │ ├── Version_V1.sql │ │ ├── ViewsToScript_V2.sql │ │ └── dm_workload_management_workload_groups_stats_V1.sql │ └── Teradata │ │ ├── 7DayQuerySummarybyApp.sql │ │ ├── AMPs_per_Node.sql │ │ ├── Alternative │ │ ├── 1. Table DDL.sql │ │ └── 2. Table Row Counts.sql │ │ ├── Applications.sql │ │ ├── Authorizations.sql │ │ ├── Columns.sql │ │ ├── Daily_Query_Summary.sql │ │ ├── Database_Sizes.sql │ │ ├── Expensive_Queries.sql │ │ ├── Extended │ │ ├── 1. Table DDL.sql │ │ ├── 10. Procedure Ext DDL.sql │ │ ├── 11. Macro DDL.sql │ │ ├── 12. Function DDL.sql │ │ ├── 13. Function Ext DDL.sql │ │ ├── 14. Trigger DDL.sql │ │ ├── 15. Users.sql │ │ ├── 16. Roles.sql │ │ ├── 17. Role Members.sql │ │ ├── 18. Authorizations.sql │ │ ├── 19. Teradata Version.sql │ │ ├── 2. Table Row Counts.sql │ │ ├── 20. Overall Teradata Size.sql │ │ ├── 21. Database Sizes.sql │ │ ├── 22. Object Counts.sql │ │ ├── 24. AMPs per Node.sql │ │ ├── 25. Materialized Views.sql │ │ ├── 26. Applications.sql │ │ ├── 27. Expensive Queries.sql │ │ ├── 28. Query Log.sql │ │ ├── 29. Daily Query Summary.sql │ │ ├── 3. Table Size.sql │ │ ├── 30. 7 Day Query Summary.sql │ │ ├── 4. Column Detail.sql │ │ ├── 5. Table Distribution.sql │ │ ├── 6. Table Partitioning 1.sql │ │ ├── 7. Table Partitioning 2.sql │ │ ├── 8. View DDL.sql │ │ ├── 9. Procedure DDL.sql │ │ └── SQLScriptsToRun.csv │ │ ├── Materialized_Views.sql │ │ ├── Object_Counts.sql │ │ ├── QueryLog.sql │ │ ├── Readme.md │ │ ├── Role_Members.sql │ │ ├── Roles.sql │ │ ├── SQLScriptsToRun.csv │ │ ├── TableDistribution.sql │ │ ├── TableRowCounts.sql │ │ ├── TableSize.sql │ │ ├── Table_Partitoning.sql │ │ ├── Teradata_Version.sql │ │ ├── Total_Size.sql │ │ └── Users.sql ├── images │ ├── APS logo.png │ ├── Netezza logo.png │ ├── Oracle logo.png │ ├── SQL Server logo.png │ └── Teradata logo.png ├── netezzaassessment.sh └── oracleassessment.sh ├── CODE_OF_CONDUCT.md ├── Images ├── 0-CopyToExcel.jpg ├── 0-PreAssessment.jpg ├── 0A_Assessment_tool_dataflow.PNG ├── 0A_assessment_execution.PNG ├── 0A_assessment_execution_flow.PNG ├── 0B-CopyToExcel.jpg ├── 0B-PreAssessment.jpg ├── 0B_Consolidated_excel_generationrun.PNG ├── 0B_PowerBI_input.PNG ├── 0B_Sample_APS_powerBI_report.PNG ├── 0B_Sample_APS_powerBI_report1.PNG ├── 0B_consolidated_excel_report1.PNG ├── 0B_consolidated_excel_report2.PNG ├── 0a_Summary.jpg ├── 0b_Workflow.jpg ├── 1-CreateMPPScripts.jpg ├── 2-CleanScripts.jpg ├── 3-ChangeSchemas.jpg ├── 4-CreateExportImportScripts.jpg ├── 5-CreateExternalTables.jpg ├── 6-DeployScripts.jpg ├── 6-step-process.jpg └── readme.md ├── LICENSE ├── Migration ├── APS │ ├── 1_CreateDDLScripts │ │ ├── CreateDDLScriptsDriver.ps1 │ │ ├── FunctionsToScript_XXX.csv │ │ ├── IndexesToScript_XXX.csv │ │ ├── PDWScripter.ps1 │ │ ├── README.md │ │ ├── RolesToScript_XXX.csv │ │ ├── SPsToScript_XXX.csv │ │ ├── StatisticsToScript_XXX.csv │ │ ├── TablesToScript_XXX.csv │ │ ├── UsersToScript_XXX.csv │ │ └── ViewsToScript_XXX.csv │ ├── 2_ConvertDDLScripts │ │ ├── ConvertDDLScriptsDriver.ps1 │ │ ├── Convert_SSAS_MD.ps1 │ │ ├── Convert_SSAS_Tabular.ps1 │ │ ├── Convert_SSRS.ps1 │ │ ├── FixSchemas.ps1 │ │ ├── README.md │ │ ├── cs_dirs.csv │ │ └── schemas.csv │ ├── 3B_ExportSourceDataToParquet │ │ └── readme.md │ ├── 3_CreateAPSExportScriptSynapseImportScript │ │ ├── ConfigFileDriver_Step3.csv │ │ ├── Generate_Step3_ConfigFiles.ps1 │ │ ├── One_ExpImptStmtDriver_Generated.csv │ │ ├── README.md │ │ └── ScriptCreateExportImportStatementsDriver.ps1 │ ├── 4_CreateExternalTablesSynapse │ │ ├── ConfigFileDriver_Step4.csv │ │ ├── Generate_Step4_ConfigFiles.ps1 │ │ ├── One_ExternalTablesDriver_Generated.csv │ │ ├── README.md │ │ └── ScriptCreateExternalTableDriver.ps1 │ ├── 5_DeployScriptsToSynapse │ │ ├── AdventureWorksDW_Aps_Export_Generated.csv │ │ ├── AdventureWorksDW_Synapse_Copy_Generated.csv │ │ ├── AdventureWorksDW_Synapse_ExtTables_Generated.csv │ │ ├── AdventureWorksDW_Synapse_Functions_Generated.csv │ │ ├── AdventureWorksDW_Synapse_Import_Generated.csv │ │ ├── AdventureWorksDW_Synapse_Indexes_Generated.csv │ │ ├── AdventureWorksDW_Synapse_Roles_Generated.csv │ │ ├── AdventureWorksDW_Synapse_SPs_Generated.csv │ │ ├── AdventureWorksDW_Synapse_Tables_Generated.csv │ │ ├── AdventureWorksDW_Synapse_Users_Generated.csv │ │ ├── AdventureWorksDW_Synapse_Views_Generated.csv │ │ ├── ConfigFileDriver_Step5.csv │ │ ├── ContosoDW_Aps_Export_Generated.csv │ │ ├── ContosoDW_Synapse_Copy_Generated.csv │ │ ├── ContosoDW_Synapse_ExtTables_Generated.csv │ │ ├── ContosoDW_Synapse_Import_Generated.csv │ │ ├── ContosoDW_Synapse_Indexes_Generated.csv │ │ ├── ContosoDW_Synapse_Statistics_Generated.csv │ │ ├── ContosoDW_Synapse_Tables_Generated.csv │ │ ├── Generate_Step5_ConfigFiles.ps1 │ │ ├── README.md │ │ ├── RunSQLScriptFile.ps1 │ │ └── RunSQLScriptsDriver.ps1 │ ├── ADS_Agenda - APS & HDI.docx │ ├── APS migration(Customer) - Questionnaire.xlsx │ ├── APS-to-Azure-Synapse-Analytics-Migration-Guide-Draft-V1.3.docx │ ├── APS-to-Azure-Synapse-Analytics-Migration-Guide.docx │ ├── APS-to-Azure-Synapse-Analytics-Migration-Guide.pdf │ ├── APS2Synapse_Migration.pdf │ ├── APS2Synapse_Migration.pptx │ ├── APS_Migration_Considerations_Github.pptx │ ├── Extras │ │ ├── AdventureWorksDW.sql │ │ ├── ContosoDW.sql │ │ ├── CreateExternalObjects.sql │ │ └── readme.md │ ├── Images │ │ ├── 1_CreateDDLScripts_Output_Folder.PNG │ │ ├── 1_CreateDDLScripts_Sample_Output.PNG │ │ ├── 1_CreateDDLScripts_flow.PNG │ │ ├── 1_CreateDDLScripts_v2.PNG │ │ ├── 2_ConvertDDLScripts.PNG │ │ ├── 2_ConvertDDLScripts_Output_Folder.PNG │ │ ├── 2_ConvertDDLScripts_Sample_Output.PNG │ │ ├── 2_ConvertDDLScripts_v2.PNG │ │ ├── 3_CreateAPSExportScriptSynapseImportScript.PNG │ │ ├── 3_CreateAPSExportScriptSynapseImportScript_v2.PNG │ │ ├── 4_CreateExternalTablesSynapse.PNG │ │ ├── 4_CreateExternalTablesSynapse_v2.PNG │ │ ├── 5_DeployScriptsToSynapse.PNG │ │ ├── 5_DeployScriptsToSynapse_v2.PNG │ │ ├── ProcessFlow.PNG │ │ ├── ProcessFlow_v2.PNG │ │ └── readme.md │ ├── Output │ │ ├── 1_CreateDDLScripts │ │ │ ├── AdventureWorksDW │ │ │ │ ├── Functions │ │ │ │ │ └── dbo_ConvertInput.sql │ │ │ │ ├── Indexes │ │ │ │ │ └── dbo_DimAccount_IX_DimAccount.sql │ │ │ │ ├── Roles │ │ │ │ │ ├── Marketing.sql │ │ │ │ │ └── Sales.sql │ │ │ │ ├── SPs │ │ │ │ │ ├── dbo_uspProspectiveBuyersInMinnesota.sql │ │ │ │ │ └── dbo_uspTempTableDemo.sql │ │ │ │ ├── Tables │ │ │ │ │ ├── dbo_AdventureWorksDWBuildVersion.sql │ │ │ │ │ ├── dbo_DatabaseLog.sql │ │ │ │ │ ├── dbo_DimAccount.sql │ │ │ │ │ ├── dbo_DimCurrency.sql │ │ │ │ │ ├── dbo_DimCustomer.sql │ │ │ │ │ ├── dbo_DimDate.sql │ │ │ │ │ ├── dbo_DimDepartmentGroup.sql │ │ │ │ │ ├── dbo_DimEmployee.sql │ │ │ │ │ ├── dbo_DimGeography.sql │ │ │ │ │ ├── dbo_DimOrganization.sql │ │ │ │ │ ├── dbo_DimProduct.sql │ │ │ │ │ ├── dbo_DimProductCategory.sql │ │ │ │ │ ├── dbo_DimProductSubcategory.sql │ │ │ │ │ ├── dbo_DimPromotion.sql │ │ │ │ │ ├── dbo_DimReseller.sql │ │ │ │ │ ├── dbo_DimSalesReason.sql │ │ │ │ │ ├── dbo_DimSalesTerritory.sql │ │ │ │ │ ├── dbo_DimScenario.sql │ │ │ │ │ ├── dbo_FactCallCenter.sql │ │ │ │ │ ├── dbo_FactCurrencyRate.sql │ │ │ │ │ ├── dbo_FactFinance.sql │ │ │ │ │ ├── dbo_FactInternetSales.sql │ │ │ │ │ ├── dbo_FactInternetSalesReason.sql │ │ │ │ │ ├── dbo_FactResellerSales.sql │ │ │ │ │ ├── dbo_FactSalesQuota.sql │ │ │ │ │ ├── dbo_FactSurveyResponse.sql │ │ │ │ │ └── dbo_ProspectiveBuyer.sql │ │ │ │ ├── Users │ │ │ │ │ ├── MarketingUser.sql │ │ │ │ │ └── SalesUser.sql │ │ │ │ └── Views │ │ │ │ │ ├── dbo_vProductCategories.sql │ │ │ │ │ ├── dbo_vTop3Quotas.sql │ │ │ │ │ ├── dbo_vTotalFinanceRecrords.sql │ │ │ │ │ └── dbo_vTotalSalesPerPromotion.sql │ │ │ └── ContosoDW │ │ │ │ ├── Indexes │ │ │ │ ├── dbo_DimAccount_IX_DimAccount.sql │ │ │ │ └── dbo_DimProduct_IX_DimProduct.sql │ │ │ │ ├── Statistics │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_AccountKey.sql │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_CurrencyKey.sql │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_Datekey.sql │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_EntityKey.sql │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_ProductCategoryKey.sql │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_ScenarioKey.sql │ │ │ │ └── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_StrategyPlanKey.sql │ │ │ │ └── Tables │ │ │ │ ├── dbo_DimAccount.sql │ │ │ │ ├── dbo_DimChannel.sql │ │ │ │ ├── dbo_DimCurrency.sql │ │ │ │ ├── dbo_DimCustomer.sql │ │ │ │ ├── dbo_DimDate.sql │ │ │ │ ├── dbo_DimEmployee.sql │ │ │ │ ├── dbo_DimEntity.sql │ │ │ │ ├── dbo_DimGeography.sql │ │ │ │ ├── dbo_DimMachine.sql │ │ │ │ ├── dbo_DimOutage.sql │ │ │ │ ├── dbo_DimProduct.sql │ │ │ │ ├── dbo_DimProductCategory.sql │ │ │ │ ├── dbo_DimProductSubcategory.sql │ │ │ │ ├── dbo_DimPromotion.sql │ │ │ │ ├── dbo_DimSalesTerritory.sql │ │ │ │ ├── dbo_DimScenario.sql │ │ │ │ ├── dbo_DimStore.sql │ │ │ │ ├── dbo_FactITMachine.sql │ │ │ │ ├── dbo_FactITSLA.sql │ │ │ │ ├── dbo_FactInventory.sql │ │ │ │ ├── dbo_FactOnlineSales.sql │ │ │ │ ├── dbo_FactSales.sql │ │ │ │ ├── dbo_FactSalesQuota.sql │ │ │ │ └── dbo_FactStrategyPlan.sql │ │ ├── 2_ConvertDDLScripts │ │ │ ├── AdventureWorksDW │ │ │ │ ├── Functions │ │ │ │ │ └── dbo_ConvertInput.sql │ │ │ │ ├── Indexes │ │ │ │ │ └── dbo_DimAccount_IX_DimAccount.sql │ │ │ │ ├── Roles │ │ │ │ │ ├── Marketing.sql │ │ │ │ │ └── Sales.sql │ │ │ │ ├── SPs │ │ │ │ │ ├── dbo_uspProspectiveBuyersInMinnesota.sql │ │ │ │ │ └── dbo_uspTempTableDemo.sql │ │ │ │ ├── Tables │ │ │ │ │ ├── dbo_AdventureWorksDWBuildVersion.sql │ │ │ │ │ ├── dbo_DatabaseLog.sql │ │ │ │ │ ├── dbo_DimAccount.sql │ │ │ │ │ ├── dbo_DimCurrency.sql │ │ │ │ │ ├── dbo_DimCustomer.sql │ │ │ │ │ ├── dbo_DimDate.sql │ │ │ │ │ ├── dbo_DimDepartmentGroup.sql │ │ │ │ │ ├── dbo_DimEmployee.sql │ │ │ │ │ ├── dbo_DimGeography.sql │ │ │ │ │ ├── dbo_DimOrganization.sql │ │ │ │ │ ├── dbo_DimProduct.sql │ │ │ │ │ ├── dbo_DimProductCategory.sql │ │ │ │ │ ├── dbo_DimProductSubcategory.sql │ │ │ │ │ ├── dbo_DimPromotion.sql │ │ │ │ │ ├── dbo_DimReseller.sql │ │ │ │ │ ├── dbo_DimSalesReason.sql │ │ │ │ │ ├── dbo_DimSalesTerritory.sql │ │ │ │ │ ├── dbo_DimScenario.sql │ │ │ │ │ ├── dbo_FactCallCenter.sql │ │ │ │ │ ├── dbo_FactCurrencyRate.sql │ │ │ │ │ ├── dbo_FactFinance.sql │ │ │ │ │ ├── dbo_FactInternetSales.sql │ │ │ │ │ ├── dbo_FactInternetSalesReason.sql │ │ │ │ │ ├── dbo_FactResellerSales.sql │ │ │ │ │ ├── dbo_FactSalesQuota.sql │ │ │ │ │ ├── dbo_FactSurveyResponse.sql │ │ │ │ │ └── dbo_ProspectiveBuyer.sql │ │ │ │ ├── Users │ │ │ │ │ ├── MarketingUser.sql │ │ │ │ │ └── SalesUser.sql │ │ │ │ └── Views │ │ │ │ │ ├── dbo_vProductCategories.sql │ │ │ │ │ ├── dbo_vTop3Quotas.sql │ │ │ │ │ ├── dbo_vTotalFinanceRecrords.sql │ │ │ │ │ └── dbo_vTotalSalesPerPromotion.sql │ │ │ └── ContosoDW │ │ │ │ ├── Indexes │ │ │ │ ├── dbo_DimAccount_IX_DimAccount.sql │ │ │ │ └── dbo_DimProduct_IX_DimProduct.sql │ │ │ │ ├── Statistics │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_AccountKey.sql │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_CurrencyKey.sql │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_Datekey.sql │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_EntityKey.sql │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_ProductCategoryKey.sql │ │ │ │ ├── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_ScenarioKey.sql │ │ │ │ └── dbo_FactStrategyPlan_stat_cso_FactStrategyPlan_StrategyPlanKey.sql │ │ │ │ └── Tables │ │ │ │ ├── dbo_DimAccount.sql │ │ │ │ ├── dbo_DimChannel.sql │ │ │ │ ├── dbo_DimCurrency.sql │ │ │ │ ├── dbo_DimCustomer.sql │ │ │ │ ├── dbo_DimDate.sql │ │ │ │ ├── dbo_DimEmployee.sql │ │ │ │ ├── dbo_DimEntity.sql │ │ │ │ ├── dbo_DimGeography.sql │ │ │ │ ├── dbo_DimMachine.sql │ │ │ │ ├── dbo_DimOutage.sql │ │ │ │ ├── dbo_DimProduct.sql │ │ │ │ ├── dbo_DimProductCategory.sql │ │ │ │ ├── dbo_DimProductSubcategory.sql │ │ │ │ ├── dbo_DimPromotion.sql │ │ │ │ ├── dbo_DimSalesTerritory.sql │ │ │ │ ├── dbo_DimScenario.sql │ │ │ │ ├── dbo_DimStore.sql │ │ │ │ ├── dbo_FactITMachine.sql │ │ │ │ ├── dbo_FactITSLA.sql │ │ │ │ ├── dbo_FactInventory.sql │ │ │ │ ├── dbo_FactOnlineSales.sql │ │ │ │ ├── dbo_FactSales.sql │ │ │ │ ├── dbo_FactSalesQuota.sql │ │ │ │ └── dbo_FactStrategyPlan.sql │ │ ├── 3_CreateAPSExportScriptSynapseImportScript │ │ │ ├── CopySynapse │ │ │ │ ├── AdventureWorksDW │ │ │ │ │ ├── dbo_AdventureWorksDWBuildVersion.sql │ │ │ │ │ ├── dbo_DatabaseLog.sql │ │ │ │ │ ├── dbo_DimAccount.sql │ │ │ │ │ ├── dbo_DimCurrency.sql │ │ │ │ │ ├── dbo_DimCustomer.sql │ │ │ │ │ ├── dbo_DimDate.sql │ │ │ │ │ ├── dbo_DimDepartmentGroup.sql │ │ │ │ │ ├── dbo_DimEmployee.sql │ │ │ │ │ ├── dbo_DimGeography.sql │ │ │ │ │ ├── dbo_DimOrganization.sql │ │ │ │ │ ├── dbo_DimProduct.sql │ │ │ │ │ ├── dbo_DimProductCategory.sql │ │ │ │ │ ├── dbo_DimProductSubcategory.sql │ │ │ │ │ ├── dbo_DimPromotion.sql │ │ │ │ │ ├── dbo_DimReseller.sql │ │ │ │ │ ├── dbo_DimSalesReason.sql │ │ │ │ │ ├── dbo_DimSalesTerritory.sql │ │ │ │ │ ├── dbo_DimScenario.sql │ │ │ │ │ ├── dbo_FactCallCenter.sql │ │ │ │ │ ├── dbo_FactCurrencyRate.sql │ │ │ │ │ ├── dbo_FactFinance.sql │ │ │ │ │ ├── dbo_FactInternetSales.sql │ │ │ │ │ ├── dbo_FactInternetSalesReason.sql │ │ │ │ │ ├── dbo_FactResellerSales.sql │ │ │ │ │ ├── dbo_FactSalesQuota.sql │ │ │ │ │ ├── dbo_FactSurveyResponse.sql │ │ │ │ │ └── dbo_ProspectiveBuyer.sql │ │ │ │ └── ContosoDW │ │ │ │ │ ├── dbo_DimAccount.sql │ │ │ │ │ ├── dbo_DimChannel.sql │ │ │ │ │ ├── dbo_DimCurrency.sql │ │ │ │ │ ├── dbo_DimCustomer.sql │ │ │ │ │ ├── dbo_DimDate.sql │ │ │ │ │ ├── dbo_DimEmployee.sql │ │ │ │ │ ├── dbo_DimEntity.sql │ │ │ │ │ ├── dbo_DimGeography.sql │ │ │ │ │ ├── dbo_DimMachine.sql │ │ │ │ │ ├── dbo_DimOutage.sql │ │ │ │ │ ├── dbo_DimProduct.sql │ │ │ │ │ ├── dbo_DimProductCategory.sql │ │ │ │ │ ├── dbo_DimProductSubcategory.sql │ │ │ │ │ ├── dbo_DimPromotion.sql │ │ │ │ │ ├── dbo_DimSalesTerritory.sql │ │ │ │ │ ├── dbo_DimScenario.sql │ │ │ │ │ ├── dbo_DimStore.sql │ │ │ │ │ ├── dbo_FactITMachine.sql │ │ │ │ │ ├── dbo_FactITSLA.sql │ │ │ │ │ ├── dbo_FactInventory.sql │ │ │ │ │ ├── dbo_FactOnlineSales.sql │ │ │ │ │ ├── dbo_FactSales.sql │ │ │ │ │ ├── dbo_FactSalesQuota.sql │ │ │ │ │ └── dbo_FactStrategyPlan.sql │ │ │ ├── ExportAPS │ │ │ │ ├── AdventureWorksDW │ │ │ │ │ ├── dbo_AdventureWorksDWBuildVersion.sql │ │ │ │ │ ├── dbo_DatabaseLog.sql │ │ │ │ │ ├── dbo_DimAccount.sql │ │ │ │ │ ├── dbo_DimCurrency.sql │ │ │ │ │ ├── dbo_DimCustomer.sql │ │ │ │ │ ├── dbo_DimDate.sql │ │ │ │ │ ├── dbo_DimDepartmentGroup.sql │ │ │ │ │ ├── dbo_DimEmployee.sql │ │ │ │ │ ├── dbo_DimGeography.sql │ │ │ │ │ ├── dbo_DimOrganization.sql │ │ │ │ │ ├── dbo_DimProduct.sql │ │ │ │ │ ├── dbo_DimProductCategory.sql │ │ │ │ │ ├── dbo_DimProductSubcategory.sql │ │ │ │ │ ├── dbo_DimPromotion.sql │ │ │ │ │ ├── dbo_DimReseller.sql │ │ │ │ │ ├── dbo_DimSalesReason.sql │ │ │ │ │ ├── dbo_DimSalesTerritory.sql │ │ │ │ │ ├── dbo_DimScenario.sql │ │ │ │ │ ├── dbo_FactCallCenter.sql │ │ │ │ │ ├── dbo_FactCurrencyRate.sql │ │ │ │ │ ├── dbo_FactFinance.sql │ │ │ │ │ ├── dbo_FactInternetSales.sql │ │ │ │ │ ├── dbo_FactInternetSalesReason.sql │ │ │ │ │ ├── dbo_FactResellerSales.sql │ │ │ │ │ ├── dbo_FactSalesQuota.sql │ │ │ │ │ ├── dbo_FactSurveyResponse.sql │ │ │ │ │ └── dbo_ProspectiveBuyer.sql │ │ │ │ └── ContosoDW │ │ │ │ │ ├── dbo_DimAccount.sql │ │ │ │ │ ├── dbo_DimChannel.sql │ │ │ │ │ ├── dbo_DimCurrency.sql │ │ │ │ │ ├── dbo_DimCustomer.sql │ │ │ │ │ ├── dbo_DimDate.sql │ │ │ │ │ ├── dbo_DimEmployee.sql │ │ │ │ │ ├── dbo_DimEntity.sql │ │ │ │ │ ├── dbo_DimGeography.sql │ │ │ │ │ ├── dbo_DimMachine.sql │ │ │ │ │ ├── dbo_DimOutage.sql │ │ │ │ │ ├── dbo_DimProduct.sql │ │ │ │ │ ├── dbo_DimProductCategory.sql │ │ │ │ │ ├── dbo_DimProductSubcategory.sql │ │ │ │ │ ├── dbo_DimPromotion.sql │ │ │ │ │ ├── dbo_DimSalesTerritory.sql │ │ │ │ │ ├── dbo_DimScenario.sql │ │ │ │ │ ├── dbo_DimStore.sql │ │ │ │ │ ├── dbo_FactITMachine.sql │ │ │ │ │ ├── dbo_FactITSLA.sql │ │ │ │ │ ├── dbo_FactInventory.sql │ │ │ │ │ ├── dbo_FactOnlineSales.sql │ │ │ │ │ ├── dbo_FactSales.sql │ │ │ │ │ ├── dbo_FactSalesQuota.sql │ │ │ │ │ └── dbo_FactStrategyPlan.sql │ │ │ └── ImportSynapse │ │ │ │ ├── AdventureWorksDW │ │ │ │ ├── dbo_AdventureWorksDWBuildVersion.sql │ │ │ │ ├── dbo_DatabaseLog.sql │ │ │ │ ├── dbo_DimAccount.sql │ │ │ │ ├── dbo_DimCurrency.sql │ │ │ │ ├── dbo_DimCustomer.sql │ │ │ │ ├── dbo_DimDate.sql │ │ │ │ ├── dbo_DimDepartmentGroup.sql │ │ │ │ ├── dbo_DimEmployee.sql │ │ │ │ ├── dbo_DimGeography.sql │ │ │ │ ├── dbo_DimOrganization.sql │ │ │ │ ├── dbo_DimProduct.sql │ │ │ │ ├── dbo_DimProductCategory.sql │ │ │ │ ├── dbo_DimProductSubcategory.sql │ │ │ │ ├── dbo_DimPromotion.sql │ │ │ │ ├── dbo_DimReseller.sql │ │ │ │ ├── dbo_DimSalesReason.sql │ │ │ │ ├── dbo_DimSalesTerritory.sql │ │ │ │ ├── dbo_DimScenario.sql │ │ │ │ ├── dbo_FactCallCenter.sql │ │ │ │ ├── dbo_FactCurrencyRate.sql │ │ │ │ ├── dbo_FactFinance.sql │ │ │ │ ├── dbo_FactInternetSales.sql │ │ │ │ ├── dbo_FactInternetSalesReason.sql │ │ │ │ ├── dbo_FactResellerSales.sql │ │ │ │ ├── dbo_FactSalesQuota.sql │ │ │ │ ├── dbo_FactSurveyResponse.sql │ │ │ │ └── dbo_ProspectiveBuyer.sql │ │ │ │ └── ContosoDW │ │ │ │ ├── dbo_DimAccount.sql │ │ │ │ ├── dbo_DimChannel.sql │ │ │ │ ├── dbo_DimCurrency.sql │ │ │ │ ├── dbo_DimCustomer.sql │ │ │ │ ├── dbo_DimDate.sql │ │ │ │ ├── dbo_DimEmployee.sql │ │ │ │ ├── dbo_DimEntity.sql │ │ │ │ ├── dbo_DimGeography.sql │ │ │ │ ├── dbo_DimMachine.sql │ │ │ │ ├── dbo_DimOutage.sql │ │ │ │ ├── dbo_DimProduct.sql │ │ │ │ ├── dbo_DimProductCategory.sql │ │ │ │ ├── dbo_DimProductSubcategory.sql │ │ │ │ ├── dbo_DimPromotion.sql │ │ │ │ ├── dbo_DimSalesTerritory.sql │ │ │ │ ├── dbo_DimScenario.sql │ │ │ │ ├── dbo_DimStore.sql │ │ │ │ ├── dbo_FactITMachine.sql │ │ │ │ ├── dbo_FactITSLA.sql │ │ │ │ ├── dbo_FactInventory.sql │ │ │ │ ├── dbo_FactOnlineSales.sql │ │ │ │ ├── dbo_FactSales.sql │ │ │ │ ├── dbo_FactSalesQuota.sql │ │ │ │ └── dbo_FactStrategyPlan.sql │ │ └── 4_CreateExternalTablesSynapse │ │ │ ├── AdventureWorksDW │ │ │ ├── EXT_aw_AdventureWorksDWBuildVersion.sql │ │ │ ├── EXT_aw_DatabaseLog.sql │ │ │ ├── EXT_aw_DimAccount.sql │ │ │ ├── EXT_aw_DimCurrency.sql │ │ │ ├── EXT_aw_DimCustomer.sql │ │ │ ├── EXT_aw_DimDate.sql │ │ │ ├── EXT_aw_DimDepartmentGroup.sql │ │ │ ├── EXT_aw_DimEmployee.sql │ │ │ ├── EXT_aw_DimGeography.sql │ │ │ ├── EXT_aw_DimOrganization.sql │ │ │ ├── EXT_aw_DimProduct.sql │ │ │ ├── EXT_aw_DimProductCategory.sql │ │ │ ├── EXT_aw_DimProductSubcategory.sql │ │ │ ├── EXT_aw_DimPromotion.sql │ │ │ ├── EXT_aw_DimReseller.sql │ │ │ ├── EXT_aw_DimSalesReason.sql │ │ │ ├── EXT_aw_DimSalesTerritory.sql │ │ │ ├── EXT_aw_DimScenario.sql │ │ │ ├── EXT_aw_FactCallCenter.sql │ │ │ ├── EXT_aw_FactCurrencyRate.sql │ │ │ ├── EXT_aw_FactFinance.sql │ │ │ ├── EXT_aw_FactInternetSales.sql │ │ │ ├── EXT_aw_FactInternetSalesReason.sql │ │ │ ├── EXT_aw_FactResellerSales.sql │ │ │ ├── EXT_aw_FactSalesQuota.sql │ │ │ ├── EXT_aw_FactSurveyResponse.sql │ │ │ └── EXT_aw_ProspectiveBuyer.sql │ │ │ └── ContosoDW │ │ │ ├── EXT_cso_DimAccount.sql │ │ │ ├── EXT_cso_DimChannel.sql │ │ │ ├── EXT_cso_DimCurrency.sql │ │ │ ├── EXT_cso_DimCustomer.sql │ │ │ ├── EXT_cso_DimDate.sql │ │ │ ├── EXT_cso_DimEmployee.sql │ │ │ ├── EXT_cso_DimEntity.sql │ │ │ ├── EXT_cso_DimGeography.sql │ │ │ ├── EXT_cso_DimMachine.sql │ │ │ ├── EXT_cso_DimOutage.sql │ │ │ ├── EXT_cso_DimProduct.sql │ │ │ ├── EXT_cso_DimProductCategory.sql │ │ │ ├── EXT_cso_DimProductSubcategory.sql │ │ │ ├── EXT_cso_DimPromotion.sql │ │ │ ├── EXT_cso_DimSalesTerritory.sql │ │ │ ├── EXT_cso_DimScenario.sql │ │ │ ├── EXT_cso_DimStore.sql │ │ │ ├── EXT_cso_FactITMachine.sql │ │ │ ├── EXT_cso_FactITSLA.sql │ │ │ ├── EXT_cso_FactInventory.sql │ │ │ ├── EXT_cso_FactOnlineSales.sql │ │ │ ├── EXT_cso_FactSales.sql │ │ │ ├── EXT_cso_FactSalesQuota.sql │ │ │ └── EXT_cso_FactStrategyPlan.sql │ ├── Table Planning and Mgmt _V2.xlsx │ ├── Training Videos │ │ └── readme.md │ └── readme.md └── SQLServer │ ├── .gitignore │ ├── 0_Assessment_Dependencies │ ├── Check-SQL-Objects.sql │ ├── Check-SQL-Unsupported-Data-Types.sql │ ├── SQL_Server_Check_SP_View_Dependency.sql │ ├── SQL_Server_DB_ObjCounts_and_Sizes.sql │ ├── SQL_Server_DB_Sizes.sql │ └── SQL_Server_and_DB_Roles.sql │ ├── 1A_ExtractCodeDDLs │ ├── DatabasesList.csv │ ├── ExtractCodeDDLs.ps1 │ ├── ExtractCodeDDLs_config.json │ └── README.md │ ├── 1B_MapDatabasesAndSchemas │ ├── MapDatabasesAndSchemas.ps1 │ ├── README.md │ ├── cs_dirs.csv │ └── schemas.csv │ ├── 1_TranslateTableDDLs │ ├── GetTableMetaData.sql │ ├── README.md │ ├── SourceToTargetTablesConfig.csv │ ├── SourceToTargetTablesConfig.xlsx │ ├── TranslateTables.ps1 │ ├── Utilities │ │ ├── Find_DB_Table_RowCounts.sql │ │ ├── GenerateSourceToTargetConfig.sql │ │ ├── GetSqlSvrDatabaseObjectCountsAndSizes.sql │ │ └── Module1-SQL-User-Permission.sql │ └── translate_config.json │ ├── 2A_GeneratePolybaseExportScripts │ ├── ExportTablesConfig.csv │ ├── GenerateExportTablesScripts.ps1 │ ├── GetTableMetaData.sql │ ├── README.md │ ├── SpecialHandlings │ │ └── Tables-with-Identity-Treatment.sql │ ├── Utilites │ │ ├── Configure_External_DataSource_FileFormat_Samples.sql │ │ ├── Configure_PolyBaseExport_Sample.sql │ │ └── GenerateExportTablesConfig.sql │ └── export_tables_config.json │ ├── 2B_ExportSourceDataToParquet │ ├── ConfigFile.csv │ ├── Export-ParquetNet.ps1 │ ├── Export-ParquetSharp.ps1 │ ├── Export-ToParquet.ps1 │ └── README.md │ ├── 2_ExportSourceDataWithBCP │ ├── ExportSourceData.ps1 │ ├── ExportTablesConfig.csv │ ├── README.md │ ├── Utilities │ │ └── GenerateExportTablesConfig.sql │ └── sql_bcp.json │ ├── 3_LoadDataIntoAzureStorage │ ├── LoadDataIntoAzureStorage.ps1 │ ├── README.md │ ├── upload_config.json │ ├── upload_config_1_folder.json │ └── upload_config_sas.json │ ├── 4_GenerateCopyIntoScripts │ ├── GenerateCopyIntoScripts.ps1 │ ├── README.md │ ├── TablesConfig.csv │ ├── Utilities │ │ ├── GenerateTablesConfig.sql │ │ └── SetManagedIdentity.ps1 │ ├── csv_key.json │ ├── csv_mi.json │ ├── orc_mi.json │ ├── parquet_mi.json │ └── translate_config.json │ ├── 5_RunSqlFilesInFolder │ ├── README.md │ ├── RunSqlFilesInFolder.ps1 │ ├── sql_scripts.json │ └── sql_synapse.json │ ├── 6_Bonus │ ├── EstimationFramework │ │ └── SQL_Server_To_Synaspe_Migration_Estimation_Code_And_Data.xlsx │ ├── GenerateAsaCode │ │ ├── GenerateAsaScripts.ps1 │ │ ├── GenerateSynapseTableList.sql │ │ ├── Output │ │ │ ├── table_list_10A_Update_Table_Stats_FullScans.sql │ │ │ ├── table_list_10B_Update_Table_Stats_CustomScans.sql │ │ │ ├── table_list_11_Rebuild_Table_Index.sql │ │ │ ├── table_list_12_Reorganize_Table_Index.sql │ │ │ ├── table_list_13_DropTables.sql │ │ │ ├── table_list_1_Create_Heap_Tables.sql │ │ │ ├── table_list_2_Create_Desired_Tables.sql │ │ │ ├── table_list_3A_Backup_And_Rename_Tables.sql │ │ │ ├── table_list_3B_Drop_And_Rename_Tables.sql │ │ │ ├── table_list_4_Create_Sister_Tables.sql │ │ │ ├── table_list_5A_Insert_Into_Stmts_From_Staging.sql │ │ │ ├── table_list_5A_Insert_Into_Stmts_From_Staging_WithIdentity_Example.sql │ │ │ ├── table_list_5_Insert_Into_Stmts_From_Heap.sql │ │ │ ├── table_list_6_Insert_Into_Stmts_From_Sistar_Table.sql │ │ │ ├── table_list_7_Drop_Backup_Table_Scripts.sql │ │ │ ├── table_list_8_Create_Table_Stats.sql │ │ │ └── table_list_9_Drop_Table_Stats.sql │ │ ├── code_generation_config.json │ │ └── table_list.csv │ └── POC-or-MVP-Scoping-Project-Plan-Tasks-Starter.xlsx │ ├── README.md │ ├── SQL-Server-to-Azure-Synapse-Migration-What-Why-How.pdf │ ├── SQL-Server-to-Synapse-Migration.vsdx │ ├── SqlToSynapseMigrationOverview.pdf │ ├── SqlToSynapseMigrationOverview.pptx │ ├── SqlToSynapseMigration_User_Guide.docx │ ├── SqlToSynapseMigration_User_Guide.pdf │ ├── TrainingVideos │ └── README.md │ └── images │ ├── M1A_OutputFolder.JPG │ ├── M1A_SampleFolder.JPG │ ├── M1A_ScriptOutput.JPG │ ├── M1B_OutputFolder.JPG │ ├── M1B_SampleFolder.JPG │ ├── M1B_ScriptOutput.JPG │ ├── M1_TranslateMetaData.JPG │ ├── M2A_GeneratePolybaseExportScripts.JPG │ ├── M2B_OutputFolder.png │ ├── M2B_ScriptOutput.png │ ├── M2B_ScriptOutput2.png │ ├── M2B_ScriptParameters.png │ ├── M2B_ScriptProgress.png │ ├── M2_ExportSourceData.JPG │ ├── M3A-ExportDataWithPolybase.JPG │ ├── M3_LoadDataIntoAzureStorage.JPG │ ├── M4_GenerateCopyIntoScripts.JPG │ ├── M5_RunSqlFilesInFolder.JPG │ ├── Option-BCP.JPG │ ├── Option-Polybase.JPG │ ├── Overview-All-Version-2022-Feb.jpg │ ├── Overview-Polybase-2022-Feb.jpg │ ├── Overview-SQL2016-plus--with-1A1B.jpg │ ├── Overview-all-SQL-Version-with-1A1B2B.jpg │ ├── Overview-all-SQL-Versions-with-1A1B.jpg │ ├── SqlToSynpse-Migration-Combined.jpg │ ├── SqlToSynpse-Migration-Tasks-by-Modules-Overview.jpg │ ├── SqlToSynpse-Migration-Tasks-by-Modules-Polybase.jpg │ ├── Step1-Translate-SQL-Server-Table-DDLs.jpg │ ├── Step2-Export-SQL-Server-Data.jpg │ ├── Step2-or-2A.gif │ ├── Step2A-GeneratePolybaseExportScripts.jpg │ ├── Step3-Upload-Data-to-Azure.jpg │ ├── Step3A-Export-Directly-To-Azure-Storage.jpg │ ├── Step4-Generate-T-SQL-Copy-Scripts.jpg │ └── Step5-Import-Data-Into-Azure-Synapse.jpg ├── README.md ├── SECURITY.md ├── Scripts └── Dedicated SQL pool │ ├── Indexes │ ├── Get CCI Health.sql │ └── Get CCI Ordered Index Columns.sql │ ├── Loading │ └── Get PolyBase_load_Information.sql │ ├── Stats │ └── Get Statistics Information.sql │ ├── System Profile │ ├── Database Settings Enabled.sql │ ├── Get Database Object Count.sql │ ├── Get Database SLO.sql │ └── Get TableMetadata.sql │ ├── TableSkew │ └── Get Table Skew.sql │ └── WLM │ └── Get Workload Group Stats.sql └── netezzaassessment.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/.gitignore -------------------------------------------------------------------------------- /Assessment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/.gitignore -------------------------------------------------------------------------------- /Assessment/AssessmentConfigFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/AssessmentConfigFile.json -------------------------------------------------------------------------------- /Assessment/AssessmentDriverFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/AssessmentDriverFile.json -------------------------------------------------------------------------------- /Assessment/AssessmentDriver_V2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/AssessmentDriver_V2.ps1 -------------------------------------------------------------------------------- /Assessment/AssessmentTool.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/AssessmentTool.pptx -------------------------------------------------------------------------------- /Assessment/CopyDataToExcel_V2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/CopyDataToExcel_V2.ps1 -------------------------------------------------------------------------------- /Assessment/Estimation_Code_And_Data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Estimation_Code_And_Data.xlsx -------------------------------------------------------------------------------- /Assessment/Estimation_Framework.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Estimation_Framework.xlsx -------------------------------------------------------------------------------- /Assessment/PowerBI/APS/APS Assessment.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/PowerBI/APS/APS Assessment.pbit -------------------------------------------------------------------------------- /Assessment/PowerBI/DB2/DB2 Assessment.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/PowerBI/DB2/DB2 Assessment.pbit -------------------------------------------------------------------------------- /Assessment/PowerBI/Oracle/Oracle Assessment.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/PowerBI/Oracle/Oracle Assessment.pbit -------------------------------------------------------------------------------- /Assessment/PowerBI/SQLServer/DataTypes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/PowerBI/SQLServer/DataTypes.csv -------------------------------------------------------------------------------- /Assessment/PowerBI/SQLServer/SQL Server Assessment.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/PowerBI/SQLServer/SQL Server Assessment.pbit -------------------------------------------------------------------------------- /Assessment/PowerBI/Teradata/Teradata - PBI Report.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/PowerBI/Teradata/Teradata - PBI Report.pbit -------------------------------------------------------------------------------- /Assessment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/README.md -------------------------------------------------------------------------------- /Assessment/Readme_References/APS_or_Synapse_CapturingInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Readme_References/APS_or_Synapse_CapturingInformation.md -------------------------------------------------------------------------------- /Assessment/Readme_References/AssessmentDriver_config_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Readme_References/AssessmentDriver_config_details.md -------------------------------------------------------------------------------- /Assessment/Readme_References/Configuration_Scripts_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Readme_References/Configuration_Scripts_details.md -------------------------------------------------------------------------------- /Assessment/Readme_References/Netezza Schema Extract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Readme_References/Netezza Schema Extract.md -------------------------------------------------------------------------------- /Assessment/Readme_References/Netezza_CapturingInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Readme_References/Netezza_CapturingInformation.md -------------------------------------------------------------------------------- /Assessment/Readme_References/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Readme_References/README.md -------------------------------------------------------------------------------- /Assessment/RunSQLStatement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/RunSQLStatement.ps1 -------------------------------------------------------------------------------- /Assessment/SQLScriptstoRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SQLScriptstoRun.csv -------------------------------------------------------------------------------- /Assessment/SSIS/.gitignore: -------------------------------------------------------------------------------- 1 | *.pbix 2 | -------------------------------------------------------------------------------- /Assessment/SSIS/Get-SsisPackagesInventory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/Get-SsisPackagesInventory.ps1 -------------------------------------------------------------------------------- /Assessment/SSIS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/README.md -------------------------------------------------------------------------------- /Assessment/SSIS/SSIS Assessment.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/SSIS Assessment.pbit -------------------------------------------------------------------------------- /Assessment/SSIS/images/InventoryFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/InventoryFiles.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/PBI-Report-DataFlows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/PBI-Report-DataFlows.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/PBI-Report-EventHandlers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/PBI-Report-EventHandlers.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/PBI-Report-Executables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/PBI-Report-Executables.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/PBI-Report-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/PBI-Report-Overview.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/PBI-Report-PackageConnectionManagers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/PBI-Report-PackageConnectionManagers.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/PBI-Report-Parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/PBI-Report-Parameters.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/PBI-Report-ProjectConnectionManagers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/PBI-Report-ProjectConnectionManagers.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/PBI-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/PBI-parameters.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/PBI-refreshdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/PBI-refreshdata.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/SSIS_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/SSIS_logo.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/ScriptOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/ScriptOutput.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/ScriptOutput2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/ScriptOutput2.png -------------------------------------------------------------------------------- /Assessment/SSIS/images/ScriptParameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSIS/images/ScriptParameters.png -------------------------------------------------------------------------------- /Assessment/SSRS/.gitignore: -------------------------------------------------------------------------------- 1 | *.pbix 2 | -------------------------------------------------------------------------------- /Assessment/SSRS/Get-SsrsReportsInventory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/Get-SsrsReportsInventory.ps1 -------------------------------------------------------------------------------- /Assessment/SSRS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/README.md -------------------------------------------------------------------------------- /Assessment/SSRS/SSRS assessment.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/SSRS assessment.pbit -------------------------------------------------------------------------------- /Assessment/SSRS/images/InventoryFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/InventoryFiles.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/PBI-Report-ConnectionTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/PBI-Report-ConnectionTypes.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/PBI-Report-EmbeddedDataSources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/PBI-Report-EmbeddedDataSources.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/PBI-Report-EmbeddedDatasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/PBI-Report-EmbeddedDatasets.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/PBI-Report-Reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/PBI-Report-Reports.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/PBI-Report-SharedDataSources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/PBI-Report-SharedDataSources.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/PBI-Report-SharedDatasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/PBI-Report-SharedDatasets.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/PBI-Report-Summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/PBI-Report-Summary.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/PBI-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/PBI-parameters.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ScriptOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ScriptOutput.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ScriptParameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ScriptParameters.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ScriptSummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ScriptSummary.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Chart.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-DataBa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-DataBa.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Gauge.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Image.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Indicator.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Line.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Map.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Rectangle.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Sparkline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Sparkline.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Subreport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Subreport.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Table.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Tablix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Tablix.png -------------------------------------------------------------------------------- /Assessment/SSRS/images/ssrs-Textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/SSRS/images/ssrs-Textbox.png -------------------------------------------------------------------------------- /Assessment/Scripts/APS/Distributions_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/Distributions_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/Exec_SpaceUsedTable_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/Exec_SpaceUsedTable_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/FunctionsToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/FunctionsToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/IndexesToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/IndexesToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/ObjectCount_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/ObjectCount_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/RemoteTableSPs_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/RemoteTableSPs_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/RolesToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/RolesToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/SPsToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/SPsToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/SPsToScript_V2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/SPsToScript_V2.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/SQLScriptsToRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/SQLScriptsToRun.csv -------------------------------------------------------------------------------- /Assessment/Scripts/APS/ShowSpaceUsedTotal_V1.sql: -------------------------------------------------------------------------------- 1 | DBCC PDW_ShowSpaceUsed -------------------------------------------------------------------------------- /Assessment/Scripts/APS/ShowSpaceUsed_V1.sql: -------------------------------------------------------------------------------- 1 | PDW_ShowSpaceUsed -------------------------------------------------------------------------------- /Assessment/Scripts/APS/StatisticsToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/StatisticsToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/TableMetadata_v1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/TableMetadata_v1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/TablesToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/TablesToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/TablesToScript_V2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/TablesToScript_V2.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/UsersToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/UsersToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/UsersToScript_V2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/UsersToScript_V2.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/Version_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/Version_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/ViewsToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/ViewsToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/ViewsToScript_V2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/APS/ViewsToScript_V2.sql -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sp_configure_V1.sql: -------------------------------------------------------------------------------- 1 | sp_configure -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.database_credentials_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.database_credentials -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.database_principals_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.database_principals -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.database_role_members_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.database_role_members -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.database_scoped_credentials_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.database_scoped_credentials -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.databases_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.databases -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.dm_pdw_exec_requests_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.dm_pdw_exec_requests -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.dm_pdw_nodes_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.dm_pdw_nodes -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.dm_pdw_nodes_os_sys_info_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.dm_pdw_nodes_os_sys_info -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.dm_pdw_nodes_os_sys_memory_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.dm_pdw_nodes_os_sys_memory -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.dm_pdw_sql_requests_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.dm_pdw_sql_requests -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.dm_pdw_sys_info_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.dm_pdw_sys_info -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.pdw_distributions_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.pdw_distributions -------------------------------------------------------------------------------- /Assessment/Scripts/APS/sys.schemas_V1.sql: -------------------------------------------------------------------------------- 1 | select * from sys.schemas -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/Auto_Stats_Setting_V1.sql: -------------------------------------------------------------------------------- 1 | SELECT name, is_auto_create_stats_on 2 | FROM sys.databases -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/CCI_Index_Health_Summary_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/CCI_Index_Health_Summary_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/CCI_Index_Health_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/CCI_Index_Health_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/CCI_Index_Trim_REason_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/CCI_Index_Trim_REason_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/DMS_PDW_Wait_Stats_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/DMS_PDW_Wait_Stats_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/DMS_PDW_Waits_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/DMS_PDW_Waits_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/DMS_Resource_Waits_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/DMS_Resource_Waits_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/DMS_SQL_Requests_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/DMS_SQL_Requests_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/DMS_Workers_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/DMS_Workers_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/Exec_Request_Steps_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/Exec_Request_Steps_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/Exec_Requests_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/Exec_Requests_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/Exec_SpaceUsedDB_V1.sql: -------------------------------------------------------------------------------- 1 | EXEC SP_SPACEUSED -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/Exec_SpaceUsedTable_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/Exec_SpaceUsedTable_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/ObjectCount_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/ObjectCount_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/PDW_ShowSpaceUsed_V1.sql: -------------------------------------------------------------------------------- 1 | PDW_ShowSpaceUsed -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/SQLScriptsToRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/SQLScriptsToRun.csv -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/Statistats_last_updated_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/Statistats_last_updated_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/TableMetadata_v1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/TableMetadata_v1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/Version_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/Version_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/AzureDW/dm_workload_management_workload_groups_stats_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/AzureDW/dm_workload_management_workload_groups_stats_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/DB2/DB2_LUW_Script_01.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/DB2/DB2_LUW_Script_01.sql -------------------------------------------------------------------------------- /Assessment/Scripts/DB2/DB2_LUW_Script_02.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/DB2/DB2_LUW_Script_02.sql -------------------------------------------------------------------------------- /Assessment/Scripts/DB2/SQLScriptsToRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/DB2/SQLScriptsToRun.csv -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/Aggregate_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Netezza/Aggregate_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/DBSize_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Netezza/DBSize_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/Function_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Netezza/Function_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/Library_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Netezza/Library_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/ObjectCount_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Netezza/ObjectCount_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/Procedure_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Netezza/Procedure_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/SQLScriptsToRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Netezza/SQLScriptsToRun.csv -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/SystemInfo_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Netezza/SystemInfo_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/TableMetadata_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Netezza/TableMetadata_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/TableSize_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Netezza/TableSize_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_aggregate_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_aggregate; -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_database_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_database; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_datatype_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_datatype; -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_function_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_function; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_group_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_group; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_index_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_index; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_library_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_library; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_objects_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_objects; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_operator_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_operator; -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_procedure_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_procedure; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_qryhist_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_qryhist; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_qrystat_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_qrystat; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_relation_column_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_relation_column; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_relation_column_def_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_relation_column_def; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_sequence_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_sequence; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_synonym_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_synonym; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_sys_columns_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_sys_columns; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_sys_database_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_sys_database; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_sys_object_data_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_sys_object_data; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_sys_object_storage_size_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_sys_object_storage_size; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_system_info_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_system_info; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_table_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_table; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_table_dist_map_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_table_dist_map; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_table_index_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_table_index; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_table_organize_column_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_table_organize_column; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Netezza/_v_view_V1.sql: -------------------------------------------------------------------------------- 1 | select * from _v_view; 2 | -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Audit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Audit.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/AutomatedMaintenanceTasks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/AutomatedMaintenanceTasks.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/BitmapIndexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/BitmapIndexes.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Clustering.sql: -------------------------------------------------------------------------------- 1 | select * from V_$ACTIVE_INSTANCES; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Collation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Collation.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/ColumnMetadata_v1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/ColumnMetadata_v1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/ColumnMetadata_v2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/ColumnMetadata_v2.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/ComponentsInstalled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/ComponentsInstalled.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Constraints.sql: -------------------------------------------------------------------------------- 1 | select * from all_constraints; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Cores.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Cores.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/DBLinks.sql: -------------------------------------------------------------------------------- 1 | select * from USER_DB_LINKS; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/DBMail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/DBMail.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/DBName.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/DBName.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/DBSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/DBSchema.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/DataConcurrency.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/DataConcurrency.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/DataEncryption.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/DataEncryption.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/DataTypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/DataTypes.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Database.sql: -------------------------------------------------------------------------------- 1 | SELECT * FROM v$database; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/DatabaseMail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/DatabaseMail.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/DatabaseParameters.sql: -------------------------------------------------------------------------------- 1 | SELECT * from NLS_DATABASE_PARAMETERS; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/FeatureUsageStatistics.sql: -------------------------------------------------------------------------------- 1 | select * from DBA_FEATURE_USAGE_STATISTICS; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/FeaturesUsed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/FeaturesUsed.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/FileGroups.sql: -------------------------------------------------------------------------------- 1 | select * from dba_file_groups; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Functions.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/InMemory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/InMemory.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Indexes.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/MaterializedViews.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/MaterializedViews.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/MemoryUsgae.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/MemoryUsgae.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/ObjectCounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/ObjectCounts.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/ObjectLineCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/ObjectLineCount.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/OracleComponents.sql: -------------------------------------------------------------------------------- 1 | select * from dba_registry; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/OracleOptions.sql: -------------------------------------------------------------------------------- 1 | SELECT * FROM V$OPTION; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Packages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Packages.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/ResourceUtilization.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/ResourceUtilization.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Roles.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/RowLevelSecurity.sql: -------------------------------------------------------------------------------- 1 | SELECT VALUE FROM V$OPTION WHERE PARAMETER = 'Oracle Label Security'; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/SQLScriptsToRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/SQLScriptsToRun.csv -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Sequences.sql: -------------------------------------------------------------------------------- 1 | select * from DBA_SEQUENCES; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Snapshots.sql: -------------------------------------------------------------------------------- 1 | select * from DBA_HIST_SNAPSHOT; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/StoredProcedures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/StoredProcedures.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Synonyms.sql: -------------------------------------------------------------------------------- 1 | select * from DBA_synonyms; -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/TablePKs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/TablePKs.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/TablePartitions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/TablePartitions.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/TableRowCounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/TableRowCounts.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Tables.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/TopApplicationQueries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/TopApplicationQueries.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/TotalDBSize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/TotalDBSize.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/TotalDatabaseSize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/TotalDatabaseSize.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/TotalUsedDBSize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/TotalUsedDBSize.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/TransparentApplicationFailover.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/TransparentApplicationFailover.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Triggers.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/UsedDatabaseSize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/UsedDatabaseSize.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Users_v1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Users_v1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Users_v2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Users_v2.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Version.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Oracle/Views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Oracle/Views.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/01_Object_Counts_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/01_Object_Counts_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/02_DB_Space_Used_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/02_DB_Space_Used_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/03_Table_Row_Counts_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/03_Table_Row_Counts_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/04_Column_Metadata_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/04_Column_Metadata_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/05_Schemas_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/05_Schemas_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/06_Database_Information_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/06_Database_Information_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/07_Users_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/07_Users_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/08_Remote_Logins_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/08_Remote_Logins_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/09_Fulltext_Indexes_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/09_Fulltext_Indexes_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/10_Assemblies_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/10_Assemblies_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/11_In_Memory_Objects_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/11_In_Memory_Objects_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/12_Partitioned_Tables_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/12_Partitioned_Tables_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/14_Service_Broker_Queues_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/14_Service_Broker_Queues_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/15_Encrypted_Columns_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/15_Encrypted_Columns_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/16_Masked_Columns_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/16_Masked_Columns_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/17_Stored_Proc_Row_Counts_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/17_Stored_Proc_Row_Counts_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/18_Replication_Status_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/18_Replication_Status_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/19_Files_and_Filegroups_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/19_Files_and_Filegroups_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/20_External_Data_Stores_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/20_External_Data_Stores_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/21_Availability_Groups_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/21_Availability_Groups_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/22_Change_Tracking_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/22_Change_Tracking_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/23_Check_Constraints_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/23_Check_Constraints_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/24_Computed_Columns_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/24_Computed_Columns_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/25_Index_Types_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/25_Index_Types_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/26_XML_Indexes_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/26_XML_Indexes_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/27_Configuration_Settings_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/27_Configuration_Settings_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/28_Host_Operating_System_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/28_Host_Operating_System_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/29_Available_Resources_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/29_Available_Resources_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/30_Temporal_Tables_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/30_Temporal_Tables_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/31_Version_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/31_Version_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/SQL Server Assessment Scripts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/SQL Server Assessment Scripts.sql -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/SQLScriptsToRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/SQLScriptsToRun.csv -------------------------------------------------------------------------------- /Assessment/Scripts/SQLServer/StoredProcedureListing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/SQLServer/StoredProcedureListing.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/1. Database Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/1. Database Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/10. Stored Procedure Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/10. Stored Procedure Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/11. Functions Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/11. Functions Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/12. Stages Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/12. Stages Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/13. Load History Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/13. Load History Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/14. File Formats Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/14. File Formats Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/15. Pipes Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/15. Pipes Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/16. Privileges Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/16. Privileges Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/17. Roles Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/17. Roles Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/18. Enabled Roles Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/18. Enabled Roles Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/19. External Tables Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/19. External Tables Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/2. Schema Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/2. Schema Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/20. Table Privileges Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/20. Table Privileges Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/21. Usage Privileges Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/21. Usage Privileges Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/22. Query History.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/22. Query History.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/23. Integration Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/23. Integration Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/24. Materialized Views Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/24. Materialized Views Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/25. Replicated Databases Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/25. Replicated Databases Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/26. Warehouse Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/26. Warehouse Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/27. Masking Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/27. Masking Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/28. Network Policy Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/28. Network Policy Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/29. Task Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/29. Task Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/3. Table Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/3. Table Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/30. Streams Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/30. Streams Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/4. Table Storage Metrics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/4. Table Storage Metrics.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/5. Table Constraints Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/5. Table Constraints Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/6. Referential Integrity Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/6. Referential Integrity Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/7. View Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/7. View Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/8. Column Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/8. Column Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/9. Sequences Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/9. Sequences Information.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Snowflake/SQLScriptsToRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Snowflake/SQLScriptsToRun.csv -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/Auto_Stats_Setting_V1.sql: -------------------------------------------------------------------------------- 1 | SELECT name, is_auto_create_stats_on 2 | FROM sys.databases -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/CCI_Index_Health_Summary_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/CCI_Index_Health_Summary_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/CCI_Index_Health_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/CCI_Index_Health_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/CCI_Index_Trim_REason_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/CCI_Index_Trim_REason_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/DMS_PDW_Wait_Stats_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/DMS_PDW_Wait_Stats_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/DMS_PDW_Waits_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/DMS_PDW_Waits_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/DMS_Resource_Waits_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/DMS_Resource_Waits_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/DMS_SQL_Requests_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/DMS_SQL_Requests_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/DMS_Workers_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/DMS_Workers_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/Exec_Request_Steps_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/Exec_Request_Steps_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/Exec_Requests_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/Exec_Requests_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/Exec_SpaceUsedDB_V1.sql: -------------------------------------------------------------------------------- 1 | EXEC SP_SPACEUSED -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/Exec_SpaceUsedTable_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/Exec_SpaceUsedTable_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/FunctionsToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/FunctionsToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/IndexesToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/IndexesToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/ObjectCount_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/ObjectCount_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/PDW_ShowSpaceUsed_V1.sql: -------------------------------------------------------------------------------- 1 | PDW_ShowSpaceUsed -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/SPsToScript_V2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/SPsToScript_V2.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/SQLScriptsToRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/SQLScriptsToRun.csv -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/Statistats_last_updated_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/Statistats_last_updated_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/StatisticsToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/StatisticsToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/TableMetadata_v1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/TableMetadata_v1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/TablesToScript_V2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/TablesToScript_V2.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/UsersToScript_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/UsersToScript_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/Version_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/Version_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/ViewsToScript_V2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/ViewsToScript_V2.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Synapse/dm_workload_management_workload_groups_stats_V1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Synapse/dm_workload_management_workload_groups_stats_V1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/7DayQuerySummarybyApp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/7DayQuerySummarybyApp.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/AMPs_per_Node.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/AMPs_per_Node.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Alternative/1. Table DDL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Alternative/1. Table DDL.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Alternative/2. Table Row Counts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Alternative/2. Table Row Counts.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Applications.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Applications.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Authorizations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Authorizations.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Columns.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Daily_Query_Summary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Daily_Query_Summary.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Database_Sizes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Database_Sizes.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Expensive_Queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Expensive_Queries.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/1. Table DDL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/1. Table DDL.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/10. Procedure Ext DDL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/10. Procedure Ext DDL.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/11. Macro DDL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/11. Macro DDL.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/12. Function DDL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/12. Function DDL.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/13. Function Ext DDL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/13. Function Ext DDL.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/14. Trigger DDL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/14. Trigger DDL.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/15. Users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/15. Users.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/16. Roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/16. Roles.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/17. Role Members.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/17. Role Members.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/18. Authorizations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/18. Authorizations.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/19. Teradata Version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/19. Teradata Version.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/2. Table Row Counts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/2. Table Row Counts.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/20. Overall Teradata Size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/20. Overall Teradata Size.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/21. Database Sizes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/21. Database Sizes.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/22. Object Counts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/22. Object Counts.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/24. AMPs per Node.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/24. AMPs per Node.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/25. Materialized Views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/25. Materialized Views.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/26. Applications.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/26. Applications.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/27. Expensive Queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/27. Expensive Queries.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/28. Query Log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/28. Query Log.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/29. Daily Query Summary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/29. Daily Query Summary.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/3. Table Size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/3. Table Size.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/30. 7 Day Query Summary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/30. 7 Day Query Summary.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/4. Column Detail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/4. Column Detail.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/5. Table Distribution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/5. Table Distribution.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/6. Table Partitioning 1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/6. Table Partitioning 1.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/7. Table Partitioning 2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/7. Table Partitioning 2.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/8. View DDL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/8. View DDL.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/9. Procedure DDL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/9. Procedure DDL.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Extended/SQLScriptsToRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Extended/SQLScriptsToRun.csv -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Materialized_Views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Materialized_Views.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Object_Counts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Object_Counts.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/QueryLog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/QueryLog.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Readme.md -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Role_Members.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Role_Members.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Roles.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/SQLScriptsToRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/SQLScriptsToRun.csv -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/TableDistribution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/TableDistribution.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/TableRowCounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/TableRowCounts.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/TableSize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/TableSize.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Table_Partitoning.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Table_Partitoning.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Teradata_Version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Teradata_Version.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Total_Size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Total_Size.sql -------------------------------------------------------------------------------- /Assessment/Scripts/Teradata/Users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/Scripts/Teradata/Users.sql -------------------------------------------------------------------------------- /Assessment/images/APS logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/images/APS logo.png -------------------------------------------------------------------------------- /Assessment/images/Netezza logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/images/Netezza logo.png -------------------------------------------------------------------------------- /Assessment/images/Oracle logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/images/Oracle logo.png -------------------------------------------------------------------------------- /Assessment/images/SQL Server logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/images/SQL Server logo.png -------------------------------------------------------------------------------- /Assessment/images/Teradata logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/images/Teradata logo.png -------------------------------------------------------------------------------- /Assessment/netezzaassessment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/netezzaassessment.sh -------------------------------------------------------------------------------- /Assessment/oracleassessment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Assessment/oracleassessment.sh -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Images/0-CopyToExcel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0-CopyToExcel.jpg -------------------------------------------------------------------------------- /Images/0-PreAssessment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0-PreAssessment.jpg -------------------------------------------------------------------------------- /Images/0A_Assessment_tool_dataflow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0A_Assessment_tool_dataflow.PNG -------------------------------------------------------------------------------- /Images/0A_assessment_execution.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0A_assessment_execution.PNG -------------------------------------------------------------------------------- /Images/0A_assessment_execution_flow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0A_assessment_execution_flow.PNG -------------------------------------------------------------------------------- /Images/0B-CopyToExcel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0B-CopyToExcel.jpg -------------------------------------------------------------------------------- /Images/0B-PreAssessment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0B-PreAssessment.jpg -------------------------------------------------------------------------------- /Images/0B_Consolidated_excel_generationrun.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0B_Consolidated_excel_generationrun.PNG -------------------------------------------------------------------------------- /Images/0B_PowerBI_input.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0B_PowerBI_input.PNG -------------------------------------------------------------------------------- /Images/0B_Sample_APS_powerBI_report.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0B_Sample_APS_powerBI_report.PNG -------------------------------------------------------------------------------- /Images/0B_Sample_APS_powerBI_report1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0B_Sample_APS_powerBI_report1.PNG -------------------------------------------------------------------------------- /Images/0B_consolidated_excel_report1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0B_consolidated_excel_report1.PNG -------------------------------------------------------------------------------- /Images/0B_consolidated_excel_report2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0B_consolidated_excel_report2.PNG -------------------------------------------------------------------------------- /Images/0a_Summary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0a_Summary.jpg -------------------------------------------------------------------------------- /Images/0b_Workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/0b_Workflow.jpg -------------------------------------------------------------------------------- /Images/1-CreateMPPScripts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/1-CreateMPPScripts.jpg -------------------------------------------------------------------------------- /Images/2-CleanScripts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/2-CleanScripts.jpg -------------------------------------------------------------------------------- /Images/3-ChangeSchemas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/3-ChangeSchemas.jpg -------------------------------------------------------------------------------- /Images/4-CreateExportImportScripts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/4-CreateExportImportScripts.jpg -------------------------------------------------------------------------------- /Images/5-CreateExternalTables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/5-CreateExternalTables.jpg -------------------------------------------------------------------------------- /Images/6-DeployScripts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/6-DeployScripts.jpg -------------------------------------------------------------------------------- /Images/6-step-process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/6-step-process.jpg -------------------------------------------------------------------------------- /Images/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Images/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/LICENSE -------------------------------------------------------------------------------- /Migration/APS/1_CreateDDLScripts/CreateDDLScriptsDriver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/1_CreateDDLScripts/CreateDDLScriptsDriver.ps1 -------------------------------------------------------------------------------- /Migration/APS/1_CreateDDLScripts/FunctionsToScript_XXX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/1_CreateDDLScripts/FunctionsToScript_XXX.csv -------------------------------------------------------------------------------- /Migration/APS/1_CreateDDLScripts/IndexesToScript_XXX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/1_CreateDDLScripts/IndexesToScript_XXX.csv -------------------------------------------------------------------------------- /Migration/APS/1_CreateDDLScripts/PDWScripter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/1_CreateDDLScripts/PDWScripter.ps1 -------------------------------------------------------------------------------- /Migration/APS/1_CreateDDLScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/1_CreateDDLScripts/README.md -------------------------------------------------------------------------------- /Migration/APS/1_CreateDDLScripts/RolesToScript_XXX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/1_CreateDDLScripts/RolesToScript_XXX.csv -------------------------------------------------------------------------------- /Migration/APS/1_CreateDDLScripts/SPsToScript_XXX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/1_CreateDDLScripts/SPsToScript_XXX.csv -------------------------------------------------------------------------------- /Migration/APS/1_CreateDDLScripts/StatisticsToScript_XXX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/1_CreateDDLScripts/StatisticsToScript_XXX.csv -------------------------------------------------------------------------------- /Migration/APS/1_CreateDDLScripts/TablesToScript_XXX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/1_CreateDDLScripts/TablesToScript_XXX.csv -------------------------------------------------------------------------------- /Migration/APS/1_CreateDDLScripts/UsersToScript_XXX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/1_CreateDDLScripts/UsersToScript_XXX.csv -------------------------------------------------------------------------------- /Migration/APS/1_CreateDDLScripts/ViewsToScript_XXX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/1_CreateDDLScripts/ViewsToScript_XXX.csv -------------------------------------------------------------------------------- /Migration/APS/2_ConvertDDLScripts/ConvertDDLScriptsDriver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/2_ConvertDDLScripts/ConvertDDLScriptsDriver.ps1 -------------------------------------------------------------------------------- /Migration/APS/2_ConvertDDLScripts/Convert_SSAS_MD.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/2_ConvertDDLScripts/Convert_SSAS_MD.ps1 -------------------------------------------------------------------------------- /Migration/APS/2_ConvertDDLScripts/Convert_SSAS_Tabular.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/2_ConvertDDLScripts/Convert_SSAS_Tabular.ps1 -------------------------------------------------------------------------------- /Migration/APS/2_ConvertDDLScripts/Convert_SSRS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/2_ConvertDDLScripts/Convert_SSRS.ps1 -------------------------------------------------------------------------------- /Migration/APS/2_ConvertDDLScripts/FixSchemas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/2_ConvertDDLScripts/FixSchemas.ps1 -------------------------------------------------------------------------------- /Migration/APS/2_ConvertDDLScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/2_ConvertDDLScripts/README.md -------------------------------------------------------------------------------- /Migration/APS/2_ConvertDDLScripts/cs_dirs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/2_ConvertDDLScripts/cs_dirs.csv -------------------------------------------------------------------------------- /Migration/APS/2_ConvertDDLScripts/schemas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/2_ConvertDDLScripts/schemas.csv -------------------------------------------------------------------------------- /Migration/APS/3B_ExportSourceDataToParquet/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/3B_ExportSourceDataToParquet/readme.md -------------------------------------------------------------------------------- /Migration/APS/3_CreateAPSExportScriptSynapseImportScript/ConfigFileDriver_Step3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/3_CreateAPSExportScriptSynapseImportScript/ConfigFileDriver_Step3.csv -------------------------------------------------------------------------------- /Migration/APS/3_CreateAPSExportScriptSynapseImportScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/3_CreateAPSExportScriptSynapseImportScript/README.md -------------------------------------------------------------------------------- /Migration/APS/4_CreateExternalTablesSynapse/ConfigFileDriver_Step4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/4_CreateExternalTablesSynapse/ConfigFileDriver_Step4.csv -------------------------------------------------------------------------------- /Migration/APS/4_CreateExternalTablesSynapse/Generate_Step4_ConfigFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/4_CreateExternalTablesSynapse/Generate_Step4_ConfigFiles.ps1 -------------------------------------------------------------------------------- /Migration/APS/4_CreateExternalTablesSynapse/One_ExternalTablesDriver_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/4_CreateExternalTablesSynapse/One_ExternalTablesDriver_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/4_CreateExternalTablesSynapse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/4_CreateExternalTablesSynapse/README.md -------------------------------------------------------------------------------- /Migration/APS/4_CreateExternalTablesSynapse/ScriptCreateExternalTableDriver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/4_CreateExternalTablesSynapse/ScriptCreateExternalTableDriver.ps1 -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Aps_Export_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Aps_Export_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Copy_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Copy_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Import_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Import_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Indexes_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Indexes_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Roles_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Roles_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_SPs_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_SPs_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Tables_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Tables_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Users_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Users_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Views_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/AdventureWorksDW_Synapse_Views_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/ConfigFileDriver_Step5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/ConfigFileDriver_Step5.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Aps_Export_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Aps_Export_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_Copy_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_Copy_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_ExtTables_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_ExtTables_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_Import_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_Import_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_Indexes_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_Indexes_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_Statistics_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_Statistics_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_Tables_Generated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/ContosoDW_Synapse_Tables_Generated.csv -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/Generate_Step5_ConfigFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/Generate_Step5_ConfigFiles.ps1 -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/README.md -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/RunSQLScriptFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/RunSQLScriptFile.ps1 -------------------------------------------------------------------------------- /Migration/APS/5_DeployScriptsToSynapse/RunSQLScriptsDriver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/5_DeployScriptsToSynapse/RunSQLScriptsDriver.ps1 -------------------------------------------------------------------------------- /Migration/APS/ADS_Agenda - APS & HDI.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/ADS_Agenda - APS & HDI.docx -------------------------------------------------------------------------------- /Migration/APS/APS migration(Customer) - Questionnaire.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/APS migration(Customer) - Questionnaire.xlsx -------------------------------------------------------------------------------- /Migration/APS/APS-to-Azure-Synapse-Analytics-Migration-Guide-Draft-V1.3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/APS-to-Azure-Synapse-Analytics-Migration-Guide-Draft-V1.3.docx -------------------------------------------------------------------------------- /Migration/APS/APS-to-Azure-Synapse-Analytics-Migration-Guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/APS-to-Azure-Synapse-Analytics-Migration-Guide.docx -------------------------------------------------------------------------------- /Migration/APS/APS-to-Azure-Synapse-Analytics-Migration-Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/APS-to-Azure-Synapse-Analytics-Migration-Guide.pdf -------------------------------------------------------------------------------- /Migration/APS/APS2Synapse_Migration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/APS2Synapse_Migration.pdf -------------------------------------------------------------------------------- /Migration/APS/APS2Synapse_Migration.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/APS2Synapse_Migration.pptx -------------------------------------------------------------------------------- /Migration/APS/APS_Migration_Considerations_Github.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/APS_Migration_Considerations_Github.pptx -------------------------------------------------------------------------------- /Migration/APS/Extras/AdventureWorksDW.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Extras/AdventureWorksDW.sql -------------------------------------------------------------------------------- /Migration/APS/Extras/ContosoDW.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Extras/ContosoDW.sql -------------------------------------------------------------------------------- /Migration/APS/Extras/CreateExternalObjects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Extras/CreateExternalObjects.sql -------------------------------------------------------------------------------- /Migration/APS/Extras/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Extras/readme.md -------------------------------------------------------------------------------- /Migration/APS/Images/1_CreateDDLScripts_Output_Folder.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/1_CreateDDLScripts_Output_Folder.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/1_CreateDDLScripts_Sample_Output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/1_CreateDDLScripts_Sample_Output.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/1_CreateDDLScripts_flow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/1_CreateDDLScripts_flow.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/1_CreateDDLScripts_v2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/1_CreateDDLScripts_v2.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/2_ConvertDDLScripts.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/2_ConvertDDLScripts.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/2_ConvertDDLScripts_Output_Folder.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/2_ConvertDDLScripts_Output_Folder.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/2_ConvertDDLScripts_Sample_Output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/2_ConvertDDLScripts_Sample_Output.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/2_ConvertDDLScripts_v2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/2_ConvertDDLScripts_v2.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/3_CreateAPSExportScriptSynapseImportScript.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/3_CreateAPSExportScriptSynapseImportScript.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/3_CreateAPSExportScriptSynapseImportScript_v2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/3_CreateAPSExportScriptSynapseImportScript_v2.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/4_CreateExternalTablesSynapse.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/4_CreateExternalTablesSynapse.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/4_CreateExternalTablesSynapse_v2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/4_CreateExternalTablesSynapse_v2.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/5_DeployScriptsToSynapse.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/5_DeployScriptsToSynapse.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/5_DeployScriptsToSynapse_v2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/5_DeployScriptsToSynapse_v2.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/ProcessFlow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/ProcessFlow.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/ProcessFlow_v2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/ProcessFlow_v2.PNG -------------------------------------------------------------------------------- /Migration/APS/Images/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Images/readme.md -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Roles/Marketing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Roles/Marketing.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Roles/Sales.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Roles/Sales.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/SPs/dbo_uspTempTableDemo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/SPs/dbo_uspTempTableDemo.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DatabaseLog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DatabaseLog.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimAccount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimAccount.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimCurrency.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimCurrency.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimCustomer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimCustomer.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimDate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimDate.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimEmployee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimEmployee.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimGeography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimGeography.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimProduct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimProduct.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimPromotion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimPromotion.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimReseller.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimReseller.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimSalesReason.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimSalesReason.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimScenario.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_DimScenario.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_FactCallCenter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_FactCallCenter.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_FactFinance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_FactFinance.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_FactSalesQuota.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Tables/dbo_FactSalesQuota.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Users/MarketingUser.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Users/MarketingUser.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Users/SalesUser.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Users/SalesUser.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Views/dbo_vTop3Quotas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/AdventureWorksDW/Views/dbo_vTop3Quotas.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimAccount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimAccount.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimChannel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimChannel.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimCurrency.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimCurrency.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimCustomer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimCustomer.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimDate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimDate.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimEmployee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimEmployee.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimEntity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimEntity.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimGeography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimGeography.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimMachine.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimMachine.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimOutage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimOutage.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimProduct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimProduct.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimProductCategory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimProductCategory.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimProductSubcategory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimProductSubcategory.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimPromotion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimPromotion.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimSalesTerritory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimSalesTerritory.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimScenario.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimScenario.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_DimStore.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactITMachine.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactITMachine.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactITSLA.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactITSLA.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactInventory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactInventory.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactOnlineSales.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactOnlineSales.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactSales.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactSales.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactSalesQuota.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactSalesQuota.sql -------------------------------------------------------------------------------- /Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactStrategyPlan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/1_CreateDDLScripts/ContosoDW/Tables/dbo_FactStrategyPlan.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Roles/Marketing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Roles/Marketing.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Roles/Sales.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Roles/Sales.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/SPs/dbo_uspTempTableDemo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/SPs/dbo_uspTempTableDemo.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DatabaseLog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DatabaseLog.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimAccount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimAccount.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimCurrency.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimCurrency.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimCustomer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimCustomer.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimDate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimDate.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimEmployee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimEmployee.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimGeography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimGeography.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimProduct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimProduct.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimPromotion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimPromotion.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimReseller.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimReseller.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimScenario.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_DimScenario.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_FactFinance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Tables/dbo_FactFinance.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Users/MarketingUser.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Users/MarketingUser.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Users/SalesUser.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Users/SalesUser.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Views/dbo_vTop3Quotas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/AdventureWorksDW/Views/dbo_vTop3Quotas.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimAccount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimAccount.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimChannel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimChannel.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimCurrency.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimCurrency.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimCustomer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimCustomer.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimDate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimDate.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimEmployee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimEmployee.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimEntity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimEntity.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimGeography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimGeography.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimMachine.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimMachine.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimOutage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimOutage.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimProduct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimProduct.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimProductCategory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimProductCategory.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimPromotion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimPromotion.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimSalesTerritory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimSalesTerritory.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimScenario.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimScenario.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_DimStore.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactITMachine.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactITMachine.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactITSLA.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactITSLA.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactInventory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactInventory.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactOnlineSales.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactOnlineSales.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactSales.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactSales.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactSalesQuota.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactSalesQuota.sql -------------------------------------------------------------------------------- /Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactStrategyPlan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/2_ConvertDDLScripts/ContosoDW/Tables/dbo_FactStrategyPlan.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/AdventureWorksDW/EXT_aw_DimDate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/AdventureWorksDW/EXT_aw_DimDate.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimAccount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimAccount.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimChannel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimChannel.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimCurrency.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimCurrency.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimCustomer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimCustomer.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimDate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimDate.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimEmployee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimEmployee.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimEntity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimEntity.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimGeography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimGeography.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimMachine.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimMachine.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimOutage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimOutage.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimProduct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimProduct.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimPromotion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimPromotion.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimScenario.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimScenario.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimStore.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_DimStore.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_FactITSLA.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_FactITSLA.sql -------------------------------------------------------------------------------- /Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_FactSales.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Output/4_CreateExternalTablesSynapse/ContosoDW/EXT_cso_FactSales.sql -------------------------------------------------------------------------------- /Migration/APS/Table Planning and Mgmt _V2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Table Planning and Mgmt _V2.xlsx -------------------------------------------------------------------------------- /Migration/APS/Training Videos/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/Training Videos/readme.md -------------------------------------------------------------------------------- /Migration/APS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/APS/readme.md -------------------------------------------------------------------------------- /Migration/SQLServer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/.gitignore -------------------------------------------------------------------------------- /Migration/SQLServer/0_Assessment_Dependencies/Check-SQL-Objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/0_Assessment_Dependencies/Check-SQL-Objects.sql -------------------------------------------------------------------------------- /Migration/SQLServer/0_Assessment_Dependencies/Check-SQL-Unsupported-Data-Types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/0_Assessment_Dependencies/Check-SQL-Unsupported-Data-Types.sql -------------------------------------------------------------------------------- /Migration/SQLServer/0_Assessment_Dependencies/SQL_Server_DB_ObjCounts_and_Sizes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/0_Assessment_Dependencies/SQL_Server_DB_ObjCounts_and_Sizes.sql -------------------------------------------------------------------------------- /Migration/SQLServer/0_Assessment_Dependencies/SQL_Server_DB_Sizes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/0_Assessment_Dependencies/SQL_Server_DB_Sizes.sql -------------------------------------------------------------------------------- /Migration/SQLServer/0_Assessment_Dependencies/SQL_Server_and_DB_Roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/0_Assessment_Dependencies/SQL_Server_and_DB_Roles.sql -------------------------------------------------------------------------------- /Migration/SQLServer/1A_ExtractCodeDDLs/DatabasesList.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1A_ExtractCodeDDLs/DatabasesList.csv -------------------------------------------------------------------------------- /Migration/SQLServer/1A_ExtractCodeDDLs/ExtractCodeDDLs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1A_ExtractCodeDDLs/ExtractCodeDDLs.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/1A_ExtractCodeDDLs/ExtractCodeDDLs_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1A_ExtractCodeDDLs/ExtractCodeDDLs_config.json -------------------------------------------------------------------------------- /Migration/SQLServer/1A_ExtractCodeDDLs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1A_ExtractCodeDDLs/README.md -------------------------------------------------------------------------------- /Migration/SQLServer/1B_MapDatabasesAndSchemas/MapDatabasesAndSchemas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1B_MapDatabasesAndSchemas/MapDatabasesAndSchemas.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/1B_MapDatabasesAndSchemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1B_MapDatabasesAndSchemas/README.md -------------------------------------------------------------------------------- /Migration/SQLServer/1B_MapDatabasesAndSchemas/cs_dirs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1B_MapDatabasesAndSchemas/cs_dirs.csv -------------------------------------------------------------------------------- /Migration/SQLServer/1B_MapDatabasesAndSchemas/schemas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1B_MapDatabasesAndSchemas/schemas.csv -------------------------------------------------------------------------------- /Migration/SQLServer/1_TranslateTableDDLs/GetTableMetaData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1_TranslateTableDDLs/GetTableMetaData.sql -------------------------------------------------------------------------------- /Migration/SQLServer/1_TranslateTableDDLs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1_TranslateTableDDLs/README.md -------------------------------------------------------------------------------- /Migration/SQLServer/1_TranslateTableDDLs/SourceToTargetTablesConfig.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1_TranslateTableDDLs/SourceToTargetTablesConfig.csv -------------------------------------------------------------------------------- /Migration/SQLServer/1_TranslateTableDDLs/SourceToTargetTablesConfig.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1_TranslateTableDDLs/SourceToTargetTablesConfig.xlsx -------------------------------------------------------------------------------- /Migration/SQLServer/1_TranslateTableDDLs/TranslateTables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1_TranslateTableDDLs/TranslateTables.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/1_TranslateTableDDLs/Utilities/Find_DB_Table_RowCounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1_TranslateTableDDLs/Utilities/Find_DB_Table_RowCounts.sql -------------------------------------------------------------------------------- /Migration/SQLServer/1_TranslateTableDDLs/Utilities/GenerateSourceToTargetConfig.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1_TranslateTableDDLs/Utilities/GenerateSourceToTargetConfig.sql -------------------------------------------------------------------------------- /Migration/SQLServer/1_TranslateTableDDLs/Utilities/Module1-SQL-User-Permission.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1_TranslateTableDDLs/Utilities/Module1-SQL-User-Permission.sql -------------------------------------------------------------------------------- /Migration/SQLServer/1_TranslateTableDDLs/translate_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/1_TranslateTableDDLs/translate_config.json -------------------------------------------------------------------------------- /Migration/SQLServer/2A_GeneratePolybaseExportScripts/ExportTablesConfig.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2A_GeneratePolybaseExportScripts/ExportTablesConfig.csv -------------------------------------------------------------------------------- /Migration/SQLServer/2A_GeneratePolybaseExportScripts/GenerateExportTablesScripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2A_GeneratePolybaseExportScripts/GenerateExportTablesScripts.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/2A_GeneratePolybaseExportScripts/GetTableMetaData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2A_GeneratePolybaseExportScripts/GetTableMetaData.sql -------------------------------------------------------------------------------- /Migration/SQLServer/2A_GeneratePolybaseExportScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2A_GeneratePolybaseExportScripts/README.md -------------------------------------------------------------------------------- /Migration/SQLServer/2A_GeneratePolybaseExportScripts/export_tables_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2A_GeneratePolybaseExportScripts/export_tables_config.json -------------------------------------------------------------------------------- /Migration/SQLServer/2B_ExportSourceDataToParquet/ConfigFile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2B_ExportSourceDataToParquet/ConfigFile.csv -------------------------------------------------------------------------------- /Migration/SQLServer/2B_ExportSourceDataToParquet/Export-ParquetNet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2B_ExportSourceDataToParquet/Export-ParquetNet.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/2B_ExportSourceDataToParquet/Export-ParquetSharp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2B_ExportSourceDataToParquet/Export-ParquetSharp.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/2B_ExportSourceDataToParquet/Export-ToParquet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2B_ExportSourceDataToParquet/Export-ToParquet.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/2B_ExportSourceDataToParquet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2B_ExportSourceDataToParquet/README.md -------------------------------------------------------------------------------- /Migration/SQLServer/2_ExportSourceDataWithBCP/ExportSourceData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2_ExportSourceDataWithBCP/ExportSourceData.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/2_ExportSourceDataWithBCP/ExportTablesConfig.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2_ExportSourceDataWithBCP/ExportTablesConfig.csv -------------------------------------------------------------------------------- /Migration/SQLServer/2_ExportSourceDataWithBCP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2_ExportSourceDataWithBCP/README.md -------------------------------------------------------------------------------- /Migration/SQLServer/2_ExportSourceDataWithBCP/sql_bcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/2_ExportSourceDataWithBCP/sql_bcp.json -------------------------------------------------------------------------------- /Migration/SQLServer/3_LoadDataIntoAzureStorage/LoadDataIntoAzureStorage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/3_LoadDataIntoAzureStorage/LoadDataIntoAzureStorage.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/3_LoadDataIntoAzureStorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/3_LoadDataIntoAzureStorage/README.md -------------------------------------------------------------------------------- /Migration/SQLServer/3_LoadDataIntoAzureStorage/upload_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/3_LoadDataIntoAzureStorage/upload_config.json -------------------------------------------------------------------------------- /Migration/SQLServer/3_LoadDataIntoAzureStorage/upload_config_1_folder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/3_LoadDataIntoAzureStorage/upload_config_1_folder.json -------------------------------------------------------------------------------- /Migration/SQLServer/3_LoadDataIntoAzureStorage/upload_config_sas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/3_LoadDataIntoAzureStorage/upload_config_sas.json -------------------------------------------------------------------------------- /Migration/SQLServer/4_GenerateCopyIntoScripts/GenerateCopyIntoScripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/4_GenerateCopyIntoScripts/GenerateCopyIntoScripts.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/4_GenerateCopyIntoScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/4_GenerateCopyIntoScripts/README.md -------------------------------------------------------------------------------- /Migration/SQLServer/4_GenerateCopyIntoScripts/TablesConfig.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/4_GenerateCopyIntoScripts/TablesConfig.csv -------------------------------------------------------------------------------- /Migration/SQLServer/4_GenerateCopyIntoScripts/Utilities/GenerateTablesConfig.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/4_GenerateCopyIntoScripts/Utilities/GenerateTablesConfig.sql -------------------------------------------------------------------------------- /Migration/SQLServer/4_GenerateCopyIntoScripts/Utilities/SetManagedIdentity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/4_GenerateCopyIntoScripts/Utilities/SetManagedIdentity.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/4_GenerateCopyIntoScripts/csv_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/4_GenerateCopyIntoScripts/csv_key.json -------------------------------------------------------------------------------- /Migration/SQLServer/4_GenerateCopyIntoScripts/csv_mi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/4_GenerateCopyIntoScripts/csv_mi.json -------------------------------------------------------------------------------- /Migration/SQLServer/4_GenerateCopyIntoScripts/orc_mi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/4_GenerateCopyIntoScripts/orc_mi.json -------------------------------------------------------------------------------- /Migration/SQLServer/4_GenerateCopyIntoScripts/parquet_mi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/4_GenerateCopyIntoScripts/parquet_mi.json -------------------------------------------------------------------------------- /Migration/SQLServer/4_GenerateCopyIntoScripts/translate_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/4_GenerateCopyIntoScripts/translate_config.json -------------------------------------------------------------------------------- /Migration/SQLServer/5_RunSqlFilesInFolder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/5_RunSqlFilesInFolder/README.md -------------------------------------------------------------------------------- /Migration/SQLServer/5_RunSqlFilesInFolder/RunSqlFilesInFolder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/5_RunSqlFilesInFolder/RunSqlFilesInFolder.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/5_RunSqlFilesInFolder/sql_scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/5_RunSqlFilesInFolder/sql_scripts.json -------------------------------------------------------------------------------- /Migration/SQLServer/5_RunSqlFilesInFolder/sql_synapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/5_RunSqlFilesInFolder/sql_synapse.json -------------------------------------------------------------------------------- /Migration/SQLServer/6_Bonus/GenerateAsaCode/GenerateAsaScripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/6_Bonus/GenerateAsaCode/GenerateAsaScripts.ps1 -------------------------------------------------------------------------------- /Migration/SQLServer/6_Bonus/GenerateAsaCode/GenerateSynapseTableList.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/6_Bonus/GenerateAsaCode/GenerateSynapseTableList.sql -------------------------------------------------------------------------------- /Migration/SQLServer/6_Bonus/GenerateAsaCode/Output/table_list_13_DropTables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/6_Bonus/GenerateAsaCode/Output/table_list_13_DropTables.sql -------------------------------------------------------------------------------- /Migration/SQLServer/6_Bonus/GenerateAsaCode/Output/table_list_9_Drop_Table_Stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/6_Bonus/GenerateAsaCode/Output/table_list_9_Drop_Table_Stats.sql -------------------------------------------------------------------------------- /Migration/SQLServer/6_Bonus/GenerateAsaCode/code_generation_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/6_Bonus/GenerateAsaCode/code_generation_config.json -------------------------------------------------------------------------------- /Migration/SQLServer/6_Bonus/GenerateAsaCode/table_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/6_Bonus/GenerateAsaCode/table_list.csv -------------------------------------------------------------------------------- /Migration/SQLServer/6_Bonus/POC-or-MVP-Scoping-Project-Plan-Tasks-Starter.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/6_Bonus/POC-or-MVP-Scoping-Project-Plan-Tasks-Starter.xlsx -------------------------------------------------------------------------------- /Migration/SQLServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/README.md -------------------------------------------------------------------------------- /Migration/SQLServer/SQL-Server-to-Azure-Synapse-Migration-What-Why-How.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/SQL-Server-to-Azure-Synapse-Migration-What-Why-How.pdf -------------------------------------------------------------------------------- /Migration/SQLServer/SQL-Server-to-Synapse-Migration.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/SQL-Server-to-Synapse-Migration.vsdx -------------------------------------------------------------------------------- /Migration/SQLServer/SqlToSynapseMigrationOverview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/SqlToSynapseMigrationOverview.pdf -------------------------------------------------------------------------------- /Migration/SQLServer/SqlToSynapseMigrationOverview.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/SqlToSynapseMigrationOverview.pptx -------------------------------------------------------------------------------- /Migration/SQLServer/SqlToSynapseMigration_User_Guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/SqlToSynapseMigration_User_Guide.docx -------------------------------------------------------------------------------- /Migration/SQLServer/SqlToSynapseMigration_User_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/SqlToSynapseMigration_User_Guide.pdf -------------------------------------------------------------------------------- /Migration/SQLServer/TrainingVideos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/TrainingVideos/README.md -------------------------------------------------------------------------------- /Migration/SQLServer/images/M1A_OutputFolder.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M1A_OutputFolder.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M1A_SampleFolder.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M1A_SampleFolder.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M1A_ScriptOutput.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M1A_ScriptOutput.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M1B_OutputFolder.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M1B_OutputFolder.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M1B_SampleFolder.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M1B_SampleFolder.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M1B_ScriptOutput.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M1B_ScriptOutput.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M1_TranslateMetaData.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M1_TranslateMetaData.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M2A_GeneratePolybaseExportScripts.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M2A_GeneratePolybaseExportScripts.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M2B_OutputFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M2B_OutputFolder.png -------------------------------------------------------------------------------- /Migration/SQLServer/images/M2B_ScriptOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M2B_ScriptOutput.png -------------------------------------------------------------------------------- /Migration/SQLServer/images/M2B_ScriptOutput2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M2B_ScriptOutput2.png -------------------------------------------------------------------------------- /Migration/SQLServer/images/M2B_ScriptParameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M2B_ScriptParameters.png -------------------------------------------------------------------------------- /Migration/SQLServer/images/M2B_ScriptProgress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M2B_ScriptProgress.png -------------------------------------------------------------------------------- /Migration/SQLServer/images/M2_ExportSourceData.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M2_ExportSourceData.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M3A-ExportDataWithPolybase.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M3A-ExportDataWithPolybase.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M3_LoadDataIntoAzureStorage.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M3_LoadDataIntoAzureStorage.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M4_GenerateCopyIntoScripts.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M4_GenerateCopyIntoScripts.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/M5_RunSqlFilesInFolder.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/M5_RunSqlFilesInFolder.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/Option-BCP.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Option-BCP.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/Option-Polybase.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Option-Polybase.JPG -------------------------------------------------------------------------------- /Migration/SQLServer/images/Overview-All-Version-2022-Feb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Overview-All-Version-2022-Feb.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/Overview-Polybase-2022-Feb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Overview-Polybase-2022-Feb.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/Overview-SQL2016-plus--with-1A1B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Overview-SQL2016-plus--with-1A1B.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/Overview-all-SQL-Version-with-1A1B2B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Overview-all-SQL-Version-with-1A1B2B.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/Overview-all-SQL-Versions-with-1A1B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Overview-all-SQL-Versions-with-1A1B.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/SqlToSynpse-Migration-Combined.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/SqlToSynpse-Migration-Combined.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/SqlToSynpse-Migration-Tasks-by-Modules-Overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/SqlToSynpse-Migration-Tasks-by-Modules-Overview.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/SqlToSynpse-Migration-Tasks-by-Modules-Polybase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/SqlToSynpse-Migration-Tasks-by-Modules-Polybase.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/Step1-Translate-SQL-Server-Table-DDLs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Step1-Translate-SQL-Server-Table-DDLs.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/Step2-Export-SQL-Server-Data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Step2-Export-SQL-Server-Data.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/Step2-or-2A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Step2-or-2A.gif -------------------------------------------------------------------------------- /Migration/SQLServer/images/Step2A-GeneratePolybaseExportScripts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Step2A-GeneratePolybaseExportScripts.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/Step3-Upload-Data-to-Azure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Step3-Upload-Data-to-Azure.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/Step3A-Export-Directly-To-Azure-Storage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Step3A-Export-Directly-To-Azure-Storage.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/Step4-Generate-T-SQL-Copy-Scripts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Step4-Generate-T-SQL-Copy-Scripts.jpg -------------------------------------------------------------------------------- /Migration/SQLServer/images/Step5-Import-Data-Into-Azure-Synapse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Migration/SQLServer/images/Step5-Import-Data-Into-Azure-Synapse.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Scripts/Dedicated SQL pool/Indexes/Get CCI Health.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Scripts/Dedicated SQL pool/Indexes/Get CCI Health.sql -------------------------------------------------------------------------------- /Scripts/Dedicated SQL pool/Indexes/Get CCI Ordered Index Columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Scripts/Dedicated SQL pool/Indexes/Get CCI Ordered Index Columns.sql -------------------------------------------------------------------------------- /Scripts/Dedicated SQL pool/Loading/Get PolyBase_load_Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Scripts/Dedicated SQL pool/Loading/Get PolyBase_load_Information.sql -------------------------------------------------------------------------------- /Scripts/Dedicated SQL pool/Stats/Get Statistics Information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Scripts/Dedicated SQL pool/Stats/Get Statistics Information.sql -------------------------------------------------------------------------------- /Scripts/Dedicated SQL pool/System Profile/Database Settings Enabled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Scripts/Dedicated SQL pool/System Profile/Database Settings Enabled.sql -------------------------------------------------------------------------------- /Scripts/Dedicated SQL pool/System Profile/Get Database Object Count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Scripts/Dedicated SQL pool/System Profile/Get Database Object Count.sql -------------------------------------------------------------------------------- /Scripts/Dedicated SQL pool/System Profile/Get Database SLO.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Scripts/Dedicated SQL pool/System Profile/Get Database SLO.sql -------------------------------------------------------------------------------- /Scripts/Dedicated SQL pool/System Profile/Get TableMetadata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Scripts/Dedicated SQL pool/System Profile/Get TableMetadata.sql -------------------------------------------------------------------------------- /Scripts/Dedicated SQL pool/TableSkew/Get Table Skew.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Scripts/Dedicated SQL pool/TableSkew/Get Table Skew.sql -------------------------------------------------------------------------------- /Scripts/Dedicated SQL pool/WLM/Get Workload Group Stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/Scripts/Dedicated SQL pool/WLM/Get Workload Group Stats.sql -------------------------------------------------------------------------------- /netezzaassessment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzureSynapseScriptsAndAccelerators/HEAD/netezzaassessment.sh --------------------------------------------------------------------------------