将 SQL Server 数据库从 2005 转换为 2000

发布于 2024-07-06 03:53:15 字数 226 浏览 8 评论 0原文

我们有一个 Microsoft SQL Server 2005 数据库需要转换回 SQL Server 2000。有人对我应该用来执行此转换的方法或工具有任何建议吗? 我们没有在数据库中使用任何 SQL Server 2005 特定功能,因此这不会导致转换出现问题。

我应该提到的是,我发现 Microsoft SQL Server 导出工具在处理自动生成的密钥时非常有问题,因此我们将不胜感激提供替代工具的建议。

We have a Microsoft SQL Server 2005 database that needs to be converted back to SQL Server 2000. Does anybody have any suggestions on the approach or tools I should use to perform this conversion? We don't utilise any SQL Server 2005 specific features in the database so this should not make the conversion problematic.

I should mention that I have found the Microsoft SQL Server Export facility very buggy in dealing with Auto Generated Keys so suggestions for alternative tools would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

流年已逝 2024-07-13 03:53:15

你想做的就是降级。 Google 提供了大量结果,但这里有一个很好的演练 在 Microsoft 论坛的主题上(向下滚动到页面底部附近)。

What you want to do is called downgrading. Google gives lots of results, but here's a good walkthrough on a thread of Microsoft's forums (scroll down near the bottom of the page).

夜灵血窟げ 2024-07-13 03:53:15

在 SQL2005 中为您的数据库生成完整的脚本,并将“服务器版本的脚本”选项更改为 SQL Server 2000。您现在可以在 SQL 2000 服务器上重新创建数据库。 完成此操作后,使用导出数据功能将 SQL 2005 导出到 SQL 2000。

Generate a full script for your database in SQL2005, and change the "Script for Server Version" option to SQL Server 2000. You can now recreate your database on the SQL 2000 server. After this is complete, use the export data feature to export from SQL 2005 to SQL 2000.

诗酒趁年少 2024-07-13 03:53:15

试用 RedGate SQL ToolBelt,然后使用:

  1. SQL Compare 传输数据库
  2. SQL Compare red-gate.com/products/SQL_Data_Compare/index.htm" rel="nofollow noreferrer">SQL Data Compare 传输数据

Get a trial of RedGate SQL ToolBelt, then use:

  1. SQL Compare to transfer the database
  2. SQL Data Compare to transfer the data
单身情人 2024-07-13 03:53:15
  1. 编写整个数据库的脚本
  2. 创建一个新的 SQL2000 数据库
  3. 在新数据库上运行脚本
  4. 将数据从 SQL2005 导入到 SQL2000 数据库(有很多方法可以做到这一点)

可能有一个工具可以为您完成所有这些工作,尽管我不知道这种情况有多普遍。

  1. Script out the entire database
  2. Create a new SQL2000 database
  3. Run the script on the new database
  4. Import the data from the SQL2005 to the SQL2000 database (lots of ways to do this)

There probably is a tool somewhere that does all this for you, although I don't know how commonly this is done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文