如何使用 Integration Services 更新 SQL Server 中的表?

发布于 2024-12-29 12:47:33 字数 234 浏览 0 评论 0原文

我正在尝试使用 Integration Services 更新 SQL Server 中的表,但我不知道该怎么做

我所拥有的只是需要更新的数据集(具有与应更新的表相同的结构) )

有什么对象可以做到这一点吗?


我使用 OLE DB 命令和存储过程来解决这个问题。存储过程有 de update 语句,并且正在调用 OLE DB 命令 Object

但是,有更好的解决方案吗???

I'm trying to update a table in SQL Server with Integration Services, but I don't know how to do that

All I have is the set of data that need to be updated (with the same structure of the table that should be updated)

Is there some object to do this??


I am using OLE DB command with a store procedure to solve this problem. The store procedure have de update sentence and is calling for OLE DB command Object

But, Is there a better solution???

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

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

发布评论

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

评论(2

浪漫之都 2025-01-05 12:47:34

您需要添加一个数据流对象,双击它(转到数据流编辑器),然后添加源对象和目标对象。

在源上,您键入查询(或选择表),并在目标上执行映射。

You need to add a data flow object, double click on it (to go to the data flow editor) and then add a Source and Destination Objects.

On the source, you type your query (or select table) and on the destination you do the mapping.

清君侧 2025-01-05 12:47:33

如果您的数据已经在 SQL Server 上,请使用“执行 SQL 任务”。

如果您创建数据流,请使用“派生列”来更新值。

If your data is already on sql server use "Execute SQL Task".

If you create data flow use "Derived column" to update values.

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