Skip to content

vishal180618/OLTP-AdventureWorks2019-MySQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

OLTP-AdventureWorks2019-MySQL

This is the MySQL dump of AdventureWorks sample databases.

How this was created:
Imported into SQL Server 2019 using Azure Data Studio and then migrated using MySQL Workbench.

How can you import it into MySQL:
If you're already logged in into mysql client then:

mysql> create database your_database_name;
mysql> use your_database_name;
mysql> source /home/sysadmin/Downloads/AdventureWorks2019.sql;

Otherwise you can directly import it using terminal:
Note: your_database_name db already needs to be present/created in MySQL.

mysql -u username -p your_database_name < /home/sysadmin/Downloads/AdventureWorks2019.sql

About

This is the MySQL dump of AdventureWorks sample databases.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published