-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support sync DDL from Oracle to MySQL #811
Comments
2 tasks
version:
oracle sql
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
方案(实现)
DDL 支持度
类型转换
1.NClob 变更为text
2.timestamp 在MySQL 最大长度为6
3.MySQL中number字段最大scale为30
4.INTEGET和INT应该对应MySQL中的decimal(38)或者INT都会出现长度不足的问题(40个9为可存储的最大值)
5.ROW ID 字段对应长度10导致写入失败,修改为100
oracle number 类型 scale 小于0不支持
参考文档
The text was updated successfully, but these errors were encountered: