从 SQL Server 7.0 到 2005 导入数据的最佳方法
我在 SQL Server 7.0 数据库中有一个表,其中包含如下列:
Column_1 varchar(10) null
Column_2 int null
Column_3 varchar(15) null
Column_4 float(53) null
Column_5 float(53) null
Column_6 text(16) null
Column_7 text(16) null
Column_8 varchar(25) null
Column_9 datetime null
我需要将其移至 SQL Server 2005 中的表。最快、最简单的方法是什么?我通常只是 INSERT (cols...) SELECT cols.. FROM OtherDatabase.dbo.table
但我不能这样做,因为它是 SQL Server 7.0。
I have a table in a SQL Server 7.0 database with columns like:
Column_1 varchar(10) null
Column_2 int null
Column_3 varchar(15) null
Column_4 float(53) null
Column_5 float(53) null
Column_6 text(16) null
Column_7 text(16) null
Column_8 varchar(25) null
Column_9 datetime null
and I need to move it to a table in SQL Server 2005. What is the quickest and easiest way? I would generally just INSERT (cols...) SELECT cols.. FROM OtherDatabase.dbo.table
but I can't do that because it is SQL Server 7.0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然我还没有尝试过这个(没有方便的 SQL 7.0 安装:-)),但您应该能够执行如下操作来设置链接服务器并从四部分名称查询中获取数据。
http://support.microsoft.com/default.aspx?scid =kb;en-us;906954
http://social.msdn.microsoft.com/forums/en-US/sqlsecurity/thread/7b24b699-f8b9-48e8-ba78-b037fd3b1d21/
Although I haven't tried this (don't have a SQL 7.0 install handy :-)) you should be able to do something like below to setup a linked server and just get the data from a four part name query.
http://support.microsoft.com/default.aspx?scid=kb;en-us;906954
http://social.msdn.microsoft.com/forums/en-US/sqlsecurity/thread/7b24b699-f8b9-48e8-ba78-b037fd3b1d21/