Migrate data from SQL Server to MatrixOne

This document will guide you on how to migrate data from Oracle to MatrixOne.

Oracle is currently the most widely used commercial database in the world. Its usage scenarios and popularity rank first in DBEngine all year round. MatrixOne can also support the scenario of migrating data from Oracle. According to the size of Oracle data, this article still recommends using online and offline modes for migration.

Data type difference

There are many differences between MatrixOne and Oracle’s built-in data types. Other types can replace some differences, and some cannot be supported temporarily. The specific list is as follows:

OracleMatrixOne
varchar2replace with text
nchar/nvarcahrreplace with char/varchar
NUMBER(3,0), NUMBER(5,0)replace with smallint
NUMBER(10,0)replace with int
NUMBER(38,0)replace with bitint
NUMBER(n,p) (p>0)replace with decimal(n,p)
binary_float/binary_doublereplace with float/double
longreplace with text
long rawreplace with blob
rawreplace with varbinary
clob/nclobreplace with text
bfileNot supported yet
rowid/urowidNot Supported
user-defined typesNot supported yet
anyNot supported yet
xmlNot supported yet
spatialNot supported yet

Online Migration

This chapter will guide you to use third-party tools to migrate data from Oracle to MatrixOne.

  • Applicable scenarios: scenarios where the amount of data is small (recommended less than 1GB), and the migration speed is not sensitive.

Preparation

  • Springboard machine with a graphical interface: it can connect to the source of Oracle and the target of MatrixOne.
  • Data Migration Tool: Download DBeaver on the springboard machine.

Step 1: Migrate table structure

Here we take the TPCH dataset as an example and migrate the 8 tables of the TPCH dataset from Oracle to MatrixOne.

  1. Open DBeaver, select the table to be migrated from Oracle, right-click and select Generate SQL > DDL Click Copy, first copy this SQL to a text editor for text editing Name the filer as oracle_ddl.sql and save it locally on the springboard machine.

    Migrate data from SQL Server to MatrixOne - 图1

  2. Use the following command to replace keywords not supported by MatrixOne in the oracle_ddl.sql file:

    1. # The commands executed by the Linux system are as follows:
    2. sed -i '/CHECK (/d' /YOUR_PATH/oracle_ddl.sql
    3. sed -i '/CREATE UNIQUE INDEX/g' /YOUR_PATH/oracle_ddl.sql
    4. sed -i 's/NUMBER(3,0)/smallint/g' /YOUR_PATH/oracle_ddl.sql
    5. sed -i 's/NUMBER(5,0)/smallint/g' /YOUR_PATH/oracle_ddl.sql
    6. sed -i 's/NUMBER(10,0)/int/g' /YOUR_PATH/oracle_ddl.sql
    7. sed -i 's/NUMBER(38,0)/bigint/g' /YOUR_PATH/oracle_ddl.sql
    8. sed -i 's/NUMBER/decimal/g' /YOUR_PATH/oracle_ddl.sql
    9. sed -i 's/VARCHAR2/varchar/g' /YOUR_PATH/oracle_ddl.sql
    10. # The commands executed by the MacOS system are as follows:
    11. sed -i '' '/CHECK (/d' /YOUR_PATH/oracle_ddl.sql
    12. sed -i '' '/CREATE UNIQUE INDEX/g' /YOUR_PATH/oracle_ddl.sql
    13. sed -i '' 's/NUMBER(3,0)/smallint/g' /YOUR_PATH/oracle_ddl.sql
    14. sed -i '' 's/NUMBER(5,0)/smallint/g' /YOUR_PATH/oracle_ddl.sql
    15. sed -i '' 's/NUMBER(10,0)/int/g' /YOUR_PATH/oracle_ddl.sql
    16. sed -i '' 's/NUMBER(38,0)/bigint/g' /YOUR_PATH/oracle_ddl.sql
    17. sed -i '' 's/NUMBER/decimal/g' /YOUR_PATH/oracle_ddl.sql
    18. sed -i '' 's/VARCHAR2/varchar/g' /YOUR_PATH/oracle_ddl.sql
  3. Connect to MatrixOne and create a new database and table in MatrixOne:

    1. create database tpch;
    2. use tpch;
    3. source '/YOUR_PATH/oracle_ddl.sql'

Step 2: Migrate data

  1. Open DBeaver, select the table to be migrated from Oracle, right-click and select Export Data:

    Migrate data from SQL Server to MatrixOne - 图2

  2. In the Conversion Target > Export Target window, select Database, click Next; in the Table Mapping window, select Target Container, and select the MatrixOne database for the target container tpch:

    Migrate data from SQL Server to MatrixOne - 图3

    Migrate data from SQL Server to MatrixOne - 图4

  3. In the Extraction Settings and Data Loading Settings windows, set the number of selected extractions and inserts. To trigger MatrixOne’s direct write S3 strategy, it is recommended to fill in 5000:

    Migrate data from SQL Server to MatrixOne - 图5

    Migrate data from SQL Server to MatrixOne - 图6

  4. After completing the settings, DBeaver starts to migrate the data, and after completion, DBeaver will prompt that the migration is successful.

Step 3: Check the data

After the migration is complete, the data can be inspected as follows:

  • Use select count(*) from <table_name> to confirm whether the data volume of the source database and target databases’ data volume is consistent.

  • Compare the results through related queries; you can also refer to the Complete TPCH testing query example to compare the results.

Offline Migration

This chapter will guide you through importing to MatrixOne through offline files.

  • Applicable scenarios: scenarios with a large amount of data (more significant than 1GB) and sensitive to migration speed.

Preparation

  • Springboard machine with a graphical interface: it can be connected to the source end of Oracle and the target end of MatrixOne.
  • Data Migration Tool: Download DBeaver to the springboard machine.

Step 1: Migrate table structure

Here we take the TPCH dataset as an example and migrate the 8 tables of the TPCH dataset from Oracle to MatrixOne.

  1. Open DBeaver, select the table to be migrated from Oracle, right-click and select Generate SQL > DDL > Copy, first copy this SQL to a text editor, and name the text editor oracle_ddl.sql, saved locally on the springboard machine.

    Migrate data from SQL Server to MatrixOne - 图7

  2. Use the following command to replace keywords that MatrixOne does not support in the oracle_ddl.sql file:

    1. # The commands executed by the Linux system are as follows:
    2. sed -i '/CHECK (/d' /YOUR_PATH/oracle_ddl.sql
    3. sed -i '/CREATE UNIQUE INDEX/g' /YOUR_PATH/oracle_ddl.sql
    4. sed -i 's/NUMBER(3,0)/smallint/g' /YOUR_PATH/oracle_ddl.sql
    5. sed -i 's/NUMBER(5,0)/smallint/g' /YOUR_PATH/oracle_ddl.sql
    6. sed -i 's/NUMBER(10,0)/int/g' /YOUR_PATH/oracle_ddl.sql
    7. sed -i 's/NUMBER(38,0)/bigint/g' /YOUR_PATH/oracle_ddl.sql
    8. sed -i 's/NUMBER/decimal/g' /YOUR_PATH/oracle_ddl.sql
    9. sed -i 's/VARCHAR2/varchar/g' /YOUR_PATH/oracle_ddl.sql
    10. # The commands executed by the MacOS system are as follows:
    11. sed -i '' '/CHECK (/d' /YOUR_PATH/oracle_ddl.sql
    12. sed -i '' '/CREATE UNIQUE INDEX/g' /YOUR_PATH/oracle_ddl.sql
    13. sed -i '' 's/NUMBER(3,0)/smallint/g' /YOUR_PATH/oracle_ddl.sql
    14. sed -i '' 's/NUMBER(5,0)/smallint/g' /YOUR_PATH/oracle_ddl.sql
    15. sed -i '' 's/NUMBER(10,0)/int/g' /YOUR_PATH/oracle_ddl.sql
    16. sed -i '' 's/NUMBER(38,0)/bigint/g' /YOUR_PATH/oracle_ddl.sql
    17. sed -i '' 's/NUMBER/decimal/g' /YOUR_PATH/oracle_ddl.sql
    18. sed -i '' 's/VARCHAR2/varchar/g' /YOUR_PATH/oracle_ddl.sql
  3. Connect to MatrixOne and create a new database and table in MatrixOne:

    1. create database tpch;
    2. use tpch;
    3. source '/YOUR_PATH/oracle_ddl.sql'

Step 2: Migrate data

MatrixOne has two data migration methods to choose from: INSERT and LOAD DATA. When the amount of data is greater than 1GB, it is recommended to use LOAD DATA first, followed by INSERT.

LOAD DATA

Use DBeaver to export the Oracle data table to CSV format first, and use MatrixOne’s parallel loading function to migrate the data to MatrixOne:

  1. Open DBeaver, select the table to be migrated, right-click and select Export Data to export the Oracle data table as a CSV format file:

    Migrate data from SQL Server to MatrixOne - 图8

  2. In the Conversion Goals > Export Goals window, select CSV and click Next:

    Migrate data from SQL Server to MatrixOne - 图9

    Migrate data from SQL Server to MatrixOne - 图10

    Migrate data from SQL Server to MatrixOne - 图11

  3. Connect to MatrixOne and import the exported CSV data into MatrixOne:

    1. mysql> load data infile '/{filepath}/lineitem.txt' INTO TABLE lineitem FIELDS TERMINATED BY '|' lines TERMINATED BY '\n' parallel 'true';
    2. mysql> load data infile '/{filepath}/nation.txt' INTO TABLE nation FIELDS TERMINATED BY '|' lines TERMINATED BY '\n' parallel 'true';
    3. mysql> load data infile '/{filepath}/part.txt' INTO TABLE part FIELDS TERMINATED BY '|' lines TERMINATED BY '\n' parallel 'true';
    4. mysql> load data infile '/{filepath}/customer.txt' INTO TABLE customer FIELDS TERMINATED BY '|' lines TERMINATED BY '\n' parallel 'true';
    5. mysql> load data infile '/{filepath}/orders.txt' INTO TABLE orders FIELDS TERMINATED BY '|' lines TERMINATED BY '\n' parallel 'true';
    6. mysql> load data infile '/{filepath}/supplier.txt' INTO TABLE supplier FIELDS TERMINATED BY '|' lines TERMINATED BY '\n' parallel 'true';
    7. mysql> load data infile '/{filepath}/region.txt' INTO TABLE region FIELDS TERMINATED BY '|' lines TERMINATED BY '\n' parallel 'true';
    8. mysql> load data infile '/{filepath}/partsupp.txt' INTO TABLE partsupp FIELDS TERMINATED BY '|' lines TERMINATED BY '\n' parallel 'true';

For more operation examples of LOAD DATA, see Bulk Load Overview.

INSERT

The INSERT statement needs to use DBeaver to export the logical statement first and then import it into MatrixOne:

  1. Use DBeaver to export data: Open DBeaver, select the table to be migrated from Oracle, right-click, and select Export Data > SQL. To ensure that MatrixOne directly writes to S3 when inserting, it is recommended to insert parameters in batches The number of data rows per statement is set to 5000:

    Migrate data from SQL Server to MatrixOne - 图12

    Migrate data from SQL Server to MatrixOne - 图13

    Migrate data from SQL Server to MatrixOne - 图14

  2. On the MatrixOne side, execute the SQL file:

    1. source '/YOUR_PATH/oracle_data.sql'

For more examples of INSERT operations, see Insert Data.

Step 3: Check the data

After the migration is complete, the data can be inspected as follows:

  • Use select count(*) from <table_name> to confirm whether the data volume of the source database and target databases’ data volume is consistent.

  • Compare the results through related queries; you can also refer to the Complete a TPCH Test with MatrixOne query example to compare the results.