Skip to content

Commit

Permalink
Watermark changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vijku committed Jan 18, 2020
1 parent 434a355 commit 91f645a
Show file tree
Hide file tree
Showing 292 changed files with 215 additions and 36 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
IF OBJECT_ID('TempDB..#PartitionInformation') IS NOT NULL
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
IF OBJECT_ID('TempDB..#PartitionInformation') IS NOT NULL
DROP TABLE #PartitionInformation
GO

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/

CREATE PROCEDURE [dbo].[prc_sqldw_create_stats]
( @create_type tinyint -- 1 default 2 Fullscan 3 Sample
, @sample_pct tinyint
Expand Down
3 changes: 2 additions & 1 deletion APS to SQL DW Migration - PolyBase/ExportToBlob-Part1.dsql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
3 changes: 2 additions & 1 deletion APS to SQL DW Migration - PolyBase/ExportToBlob-Part2.dsql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
3 changes: 2 additions & 1 deletion APS to SQL DW Migration - PolyBase/ExportToBlob-Part3.dsql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
3 changes: 2 additions & 1 deletion APS to SQL DW Migration - PolyBase/GenerateModuleScript.dsql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
3 changes: 2 additions & 1 deletion APS to SQL DW Migration - PolyBase/ImportFromBlob-Part1.dsql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
3 changes: 2 additions & 1 deletion APS to SQL DW Migration - PolyBase/ImportFromBlob-Part2.dsql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Binary file not shown.
1 change: 1 addition & 0 deletions APS to SQL DW Migration - PolyBase/readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# /***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
# APS to SQL DW Migration - Schema and Data Migration with PolyBase

## Contributors
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
-- STEP 1: Create a master key. Only necessary if one does not already exist.
CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'MyUltraSecurePassword!12345!';
GO
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
declare @sourceschema varchar(128) = 'SRC_POC_DM'
declare @targetschema varchar(128) = 'TARG_POC_DM'
declare @blobstore varchar(100) = '<account>.blob.core.windows.net'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
declare @sourceschema varchar(128) = 'SRC_POC_DM'
declare @targetschema varchar(128) = 'TARG_POC_DM'
declare @blobstore varchar(100) = '<account>.blob.core.windows.net'
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# /***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
# Auto Generate Azure SQL DW Load – TSQL Scripts

Script Author: Mitch van Huuksloot, Solution Architect, Data Migration Jumpstart Engineering Team
Expand Down
Binary file modified Azure DW Load Scripts/MICROSOFT LICENSE TERMS.docx
Binary file not shown.
Binary file modified Azure DW Load Scripts/READ ME.docx
Binary file not shown.
1 change: 1 addition & 0 deletions Azure DW Load Scripts/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# /***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
############################################################################################################
# Author: Paula Berenguel - Jul-17
# Description: This PowerShell script will create a resource group named mls_rg in EAST US location
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# /***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
######################################################################################################################################################
# Author: Paula Berenguel - Jul-17
# Description: This script will create one or more of empty databases in the server named mls1dev.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# /***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
############################################################################################################
# Author: Paula Berenguel - Jul-17
# Description: This PowerShell script will create an Azure SQL Server named mls1dev
Expand Down
Binary file not shown.
1 change: 1 addition & 0 deletions Bulk Database Creation with PowerShell/READ ME.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
These 3 scripts creates a resource group (create_rg.ps1), Sql Server to host Azure SQL DBs (create_sqlserver.ps1)
and Azure SQL DBs (create_sqldb.ps1). It includes loop capabilities so you can iterate and create as many databases
and sql servers as you want.�
1 change: 1 addition & 0 deletions Bulk Database Creation with PowerShell/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# /***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
######################################################################################################################################################
# Author: Paula Berenguel - Jul-17
# Description: This script will create a elastic pool and add databases to it
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# /***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
############################################################################################################
# Author: Paula Berenguel - Jul-17
# Description: This PowerShell script will create a resource group named mls_rg in EAST US location
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
######################################################################################################################################################
# Author: Paula Berenguel - Jul-17
# Description: This script will create one or more of empty databases in the server named mls1dev.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
############################################################################################################
# Author: Paula Berenguel - Jul-17
# Description: This PowerShell script will create an Azure SQL Server named mls1dev
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
##########################################################################
# Creator: Paula Berenguel - Jul/2017
# This PowerShell script will remove a resource group named mlsresource,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
##########################################################################
# This PowerShell script will deploy an schema to a Azure SQL db
# How to run the script? & "C:\MyPS\schema_deploy.ps1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
##########################################################################
# This PowerShell script will create a resource group named mlsresource,
# An Azure SQL Server named psserver1 and a list of Azure SQL Databases (psdb1 and psdb2)
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
Creates a resource group, 1 or multiple sql servers to host one or multiple Azure SQL DBs,
export every schema from a SQL Server (or multiple SQL Servers (2005+) on premises (or VM) and
import it to Azure SQL DB�
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
-- FEATURE 1 (DATABASE_SIZE_MB)
SELECT '01' AS FEATURE_ID,'Total Database Size' AS FEATURE_NAME , INT((A.SPACETS + B.SPACEIX)/1024) AS VALUE
FROM
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
Binary file modified DBLoader Utility/DBLoader/DBLoader.docx
Binary file not shown.
Binary file modified DBLoader Utility/MICROSOFT LICENSE TERMS.docx
Binary file not shown.
Binary file modified DBLoader Utility/READ ME.docx
Binary file not shown.
1 change: 1 addition & 0 deletions DBLoader Utility/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
Binary file not shown.
1 change: 1 addition & 0 deletions Data Workload Assessment Model and Tool/READ ME.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
Provides suggested �best fit� target platforms, cloud readiness and application/database remediation level for a given workload based

Calculation is based on a set of 41 questions across 12 categories
Expand Down
Binary file not shown.
1 change: 1 addition & 0 deletions Data Workload Assessment Model and Tool/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
--
-- /***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
-- Pre SSMA Query Script
-- For DB2 LUW
-- Version 0.1
Expand Down
Binary file not shown.
1 change: 1 addition & 0 deletions IBM DB2 LUW Inventory Scripts and Artifacts/READ ME.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
SQL query that hits IBM DB2 system tables
- So far, only tested so far on IBM DB2 LUW version 11.1
- Non-evasive query
Expand Down
1 change: 1 addition & 0 deletions IBM DB2 LUW Inventory Scripts and Artifacts/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
IF OBJECT_ID('TempDB..#PartitionInformation') IS NOT NULL
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
IF OBJECT_ID('TempDB..#PartitionInformation') IS NOT NULL
DROP TABLE #PartitionInformation
GO

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# /***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
# APS to SQL DW Migration – Data Migration with BCP and SSIS - Export

## Contributors
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
CREATE PROCEDURE [dbo].[prc_sqldw_create_stats]
( @create_type tinyint -- 1 default 2 Fullscan 3 Sample
, @sample_pct tinyint
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**************************************************************************************
/***This Artifact belongs to the Data Migration Jumpstart Engineering Team***/
/**************************************************************************************
The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of
publication. Because Microsoft must respond to changing market conditions, this document should not be interpreted to be a commitment on the
part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication.
Expand Down
Loading

0 comments on commit 91f645a

Please sign in to comment.