SQL Server 2005: Importing data from SQL Server 2000

时光毁灭记忆、已成空白 提交于 2019-12-02 10:16:26

If you're using the express edition of management studio the Import and Export features aren't available.

You could use the excellent SQL Server Database Publishing Wizard.

http://www.microsoft.com/downloads/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&displaylang=en

It allows you to generate a script which contains data, schema, or both. The script can be targeted towards SQL 2000 or SQL 2005.

Some use it for web hosting environments. I use it to move data when I have no other option.

DTS has been replaced by SSIS on the business intelligence end of things.

Probably easiest to just do a backup in SQL 2000 and then import the backup into SQL 2005 using the restore. Those options are available in the Express Edition.

There is always the BCP option.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!