当前位置: 代码迷 >> Oracle管理 >> orcal 数据库导入sqlserver 数据库中的有关问题
  详细解决方案

orcal 数据库导入sqlserver 数据库中的有关问题

热度:348   发布时间:2016-04-24 04:35:46.0
orcal 数据库导入sqlserver 数据库中的问题

在导入表时出现如图问题,求大神解决

------解决方案--------------------
目标类型可以修改么?

INT[EGER]
NUMBER(38,0)
TT_INTEGER is a native 32-bit integer type. Use TT_INTEGER, as this data type is more compact and offers faster performance than the NUMBER type.
而sqlserver的integer最大只有2的31次方。可能需要decimal或者numeric。
http://msdn.microsoft.com/en-US/library/ms187752(v=sql.90).aspx
  相关解决方案