OceanBase logo

OceanBase

A unified distributed database ready for your transactional, analytical, and AI workloads.

DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Resources

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS

OceanBase Cloud

OceanBase Database

Tools

Connectors and Middleware

QUICK START

OceanBase Cloud

OceanBase Database

BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Company

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

International - English
中国站 - 简体中文
日本 - 日本語
Sign In
Start on Cloud

A unified distributed database ready for your transactional, analytical, and AI workloads.

DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS
OceanBase CloudOceanBase Database
ToolsConnectors and Middleware
QUICK START
OceanBase CloudOceanBase Database
BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

Start on Cloud
编组
All Products
    • Databases
    • iconOceanBase Database
    • iconOceanBase Cloud
    • iconOceanBase Tugraph
    • iconInteractive Tutorials
    • iconOceanBase Best Practices
    • Tools
    • iconOceanBase Cloud Platform
    • iconOceanBase Migration Service
    • iconOceanBase Developer Center
    • iconOceanBase Migration Assessment
    • iconOceanBase Admin Tool
    • iconOceanBase Loader and Dumper
    • iconOceanBase Deployer
    • iconKubernetes operator for OceanBase
    • iconOceanBase Diagnostic Tool
    • iconOceanBase Binlog Service
    • Connectors and Middleware
    • iconOceanBase Database Proxy
    • iconEmbedded SQL in C for OceanBase
    • iconOceanBase Call Interface
    • iconOceanBase Connector/C
    • iconOceanBase Connector/J
    • iconOceanBase Connector/ODBC
    • iconOceanBase Connector/NET
icon

OceanBase Migration Assessment

V4.2.3Enterprise Edition

  • Product Introduction
    • Overview
    • Application scenarios
    • System architecture
    • Product form
  • Install OMA
  • Compatibility assessment
    • Overview
    • Assess the compatibility with objects
    • Assess the compatibility with SQL statements
    • Assess the compatibility with business code
    • Export SQL statements from an OceanBase database
    • Database assessment
      • Overview
      • Assess an Oracle database
      • Assess a MySQL database
      • Assess a TiDB database
      • Assess a PostgreSQL database
      • Assess a DB2 LUW database
  • Performance assessment
    • Standalone edition
      • Overview
      • Assess the performance differences between an Oracle database and an OceanBase database
      • Assess the performance differences between a MySQL database and an OceanBase database
      • Assess the performance differences between different versions of OceanBase Database

Download PDF

Overview Application scenarios System architecture Product form Install OMA Overview Assess the compatibility with objects Assess the compatibility with SQL statements Assess the compatibility with business code Export SQL statements from an OceanBase database Overview Assess an Oracle database Assess a MySQL database Assess a TiDB database Assess a PostgreSQL database Assess a DB2 LUW database Overview Assess the performance differences between an Oracle database and an OceanBase database Assess the performance differences between a MySQL database and an OceanBase database Assess the performance differences between different versions of OceanBase Database
OceanBase logo

The Unified Distributed Database for the AI Era.

Follow Us
Products
OceanBase CloudOceanBase EnterpriseOceanBase Community EditionOceanBase seekdb
Resources
DocsBlogLive DemosTraining & Certification
Company
About OceanBaseTrust CenterLegalPartnerContact Us
Follow Us

© OceanBase 2026. All rights reserved

Cloud Service AgreementPrivacy PolicySecurity
Contact Us
Document Feedback
  1. Documentation Center
  2. OceanBase Migration Assessment
  3. V4.2.3
iconOceanBase Migration Assessment
V 4.2.3Enterprise Edition
Enterprise Edition
  • V 4.4.2
  • V 4.2.5
  • V 4.2.4
  • V 4.2.3
  • V 4.2.2
  • V 4.2.0
  • V 3.3.2

Assess a MySQL database

Last Updated:2026-04-14 07:41:18  Updated
share
What is on this page
Prerequisites
Assessment commands
View an assessment report

folded

share

In the assessment of a MySQL database, objects and SQL statements of the database are assessed. The SQL statements can be assessed only by scanning text files.

Prerequisites

OceanBase Migration Assessment (OMA) is installed. For more information, see Install OMA.

Assessment commands

Go to the installation directory of OMA and run start.sh with reference to the following sample statement. For more information about the parameters in the statement, see Product form. In Microsoft Windows, replace sh bin/start.sh with start.bat.

  • Object assessment command

    sh bin/start.sh    
    # The task name, which can be set to any value.
    --name MYSQL_TEST \
    # The assessment mode. ANALYZE_TOTAL indicates a database assessment.
    --mode ANALYZE_TOTAL \
    # The assessment type. Valid values: OBJECT and SQL. OBJECT indicates the assessment of objects. SQL indicates the assessment of SQL statements.
    --analyze-types OBJECT \
    # The data source. DB indicates a database.
    --from-type DB \
    # The assessment mode.
    --evaluate-mode SOURCE_TARGET \
    # The type of the source database.
    --source-db-type MYSQL \        
    # The version of the source database.
    --source-db-version 5.7 \       
    # The address of the source database.
    --source-db-host xxx.xxx.xxx.xxx\    
    # The port of the source database.
    --source-db-port port \        
    # The username of the source database.
    --source-db-user username \        
    # The password of the source database.
    --source-db-password password \        
    # The schema to be assessed. If you do not specify this parameter, all schemas are assessed by default.
    --schemas test \    
    # The type of the destination database.
    --target-db-type OBMYSQL \
    # The version of the destination database.
    --target-db-version 2.2.x
    
  • SQL statement assessment command

    sh bin/start.sh
    # The task name, which can be set to any value.  
    --name mysql_test    \
    # The assessment mode. ANALYZE_TOTAL indicates a database assessment.
    --mode ANALYZE_TOTAL \
    # The assessment type. Valid values: OBJECT and SQL. OBJECT indicates the assessment of objects. SQL indicates the assessment of SQL statements.  
    --analyze-types SQL \
    # The data source. TEXT indicates a text file.
    --from-type TEXT \  
    # The assessment mode.
    --evaluate-mode SOURCE_TARGET \
    # The type of the source database.
    --source-db-type MYSQL \   
    # The version of the source database.
    --source-db-version 5.7 \  
    # The path of the source file.
    --source-file test.txt \  
    # The type of the destination database.
    --target-db-type OBMYSQL \  
    # The version of the destination database.
    --target-db-version 2.2.x
    

After you run the preceding commands, you can view the progress in real time.

View an assessment report

After the assessment is completed, OMA generates an assessment report in the .pdf format in the report directory and an assessment report in the HTML format in the reportTool directory.

  • To view the assessment report in the .pdf format, go to the report directory and open the PDF file of the name in the path displayed in the CLI.

  • To view the assessment report in the HTML format, perform the following steps:

    1. Go to the reportTool directory, double-click the index.html file.

    2. On the page that appears, click Authorize and View Report.

    3. Select and open the oma.sqlite file.

      Generally, the oma.sqlite file is stored in the db folder under the root directory of OMA.

    4. On the page that appears after you open the oma.sqlite file, click Select Report in the upper-right corner and select the migration assessment report that you want to view from the drop-down list.

Previous topic

Assess an Oracle database
Last

Next topic

Assess a TiDB database
Next
What is on this page
Prerequisites
Assessment commands
View an assessment report