如何启动 dts 传输程序?

发布于 2024-10-02 13:36:48 字数 218 浏览 3 评论 0原文

我不太熟悉 SQL Server 数据传输,我正在尝试为某些表设置从 SQL Server 2000 到 SQL Server 2008 的夜间数据库传输。我正在阅读 DTS,但我不知道如何开始。是否有可能采取一些步骤至少为我指明正确的方向?

编辑

问题:如何每晚将个人数据库(SQL 2000)中的人员表复制到个人数据库(SQL 2008)中的人员表?

I am not that familiar with SQL Server data transfer and I am trying to setup a nightly database transfer for certain tables from SQL Server 2000 to SQL server 2008. I am reading up on DTS, but I dont know how to get it started. Is it possible to have a few steps that would point me in the right direction at least?

EDIT

Issue: How do I copy a Person Table in Personal Database(SQL 2000) to Person Table in Personal Database(SQL 2008) nightly?

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

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

发布评论

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

评论(1

故乡的云 2024-10-09 13:36:48

您可以通过创建 SQL Server 代理作业并将 DTS 执行添加为计划任务来计划 DTS。

通过您使用术语“DTS”,我推断您正在使用 SQL Server 2000 工具。更高版本的 SQL 具有 SSIS(SQL Server Itegerated Services),这可能是您更好的选择。

这样,您需要

  1. 添加数据流任务
  2. 并深入了解数据流任务。
  3. 添加两个数据库连接,即 2000 和 2008 数据库
  4. 添加数据源和目标。
  5. 将两者连接起来。

试一试。

You can schedule a DTS by creating SQL Server agent job, and adding the DTS execution as a scheduled task.

By your use of the term 'DTS' I'm inferring that you are using the SQL Server 2000 tool. Later versions of SQL have SSIS (SQL Server Itegrated Services), which might be a better option for you.

With this you'll need to

  1. Add a data flow task
  2. Drill down into the data flow task.
  3. Add two database connections, your 2000 and 2008 databases
  4. Add a data source and destination.
  5. Connect the two.

Give it a shot.

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