使用DTS将SQL Server 2000升级到MySQL 5.1 - 如何解决DateTime问题?
我正在尝试使用 DTS 从 sql server 2000 迁移到 mysql。 这是我所知道的最好的工具。
但是一个sql server表有一列日期时间类型,DTS建议以下sql代码:
`StartDate` long varbinary NULL,
`EndDate` long varbinary NULL,
应该是:
`StartDate` DateTime NULL,
`EndDate` DateTime NULL,
我手动更改,但DTS不接受新脚本。 它说:
返回 0x800040e14 的 HResult 发生意外错误。 返回了 Error 结果,没有错误 消息。
I'm trying to migrate from sql server 2000 to mysql by using DTS. That's the best tool I know yet.
But one a sql server tables has a column with datetime type, the DTS suggest the following sql code:
`StartDate` long varbinary NULL,
`EndDate` long varbinary NULL,
It should be:
`StartDate` DateTime NULL,
`EndDate` DateTime NULL,
I do change manually but the DTS doesn't accept the new script. IT says:
HResult of 0x800040e14 returned
Unexpected error occurred. An Error result was returned without an error
message.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经解决了这个问题。
我按照以下步骤操作:
如果发生任何问题,请尝试:
就是这样。 不管怎么说,还是要谢谢你!
I've already solved the problem.
I followed the steps:
If any problem happens, try:
That's it. Thanks anyway!