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