SQLines provides services and tools to help you transfer data, convert database schema (DDL), views, stored procedures, functions, triggers, queries and SQL scripts from Sybase Adaptive Server Enterprise (Sybase ASE) to MySQL.
Databases:
Technical information on migration from Sybase Adaptive Server Enterprise (Sybase ASE) to MySQL:
Character data types:
Sybase ASE | MySQL | ||
1 | CHAR | Fixed-length character string | CHAR |
2 | VARCHAR | Variable-length character string | VARCHAR |
Numeric data types:
Sybase ASE | MySQL | |||
1 | INT, INTEGER | 32-bit integer | INT, INTEGER | |
2 | NUMERIC, NUMERIC(p), NUMERIC(p, 0) | Integer, 1 <= p <= 38, default is 18 | INTEGER | p < 9 |
BIGINT | p >= 9 | |||
3 | SMALLINT | 16-bit integer | SMALLINT |