Posted On March 31, 2019

DB2 AS400 to Microsoft SQL Conversion

kimconnect 0 comments
blog.KimConnect.com >> Database >> DB2 AS400 to Microsoft SQL Conversion
SQL Ways Wizard:
Enter ODBC data source, username, and password >> press Next
Set Target = Microsoft SQL Server, Version 2012 >> Enter servername and “sa” credentials >> press Next
Select all objects required for migration >> press Next
choose the desired schema name, data type, object names, reserved words, etc. >> press Next
click on the “…” button to choose a temporary location for the database dump prior to importing into SQL >> press Next >> click OK

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Add a Replica into an Existing Availability Group using PowerShell

Overview:0. Add secondary replica to the cluster by running some commands on the availability group…

MySQL Docker Container

################### Dockerfile Build Method ######################mkdir /var/lib/docker/mysql && cd /var/lib/docker/mysqlvim Dockerfile################## Dockerfile contents ###################### Derived from…

Microsoft SQL Cloning Database to a Different DB Name

# User defined variables $sourceSqlServer='DEV-SQL01' $sourceDatabaseName='TEST_MSCRM' $sourceSaCredential=$(get-credential) $destinationSqlServer='DEV-SQL01' $destinationDatabaseName='Test_MSCRM' $destinationSaCredential=$(get-credential) function copyDatabase{ param( $sourceSqlServer, $sourceDatabaseName,…