如何使用 Integration Services 更新 SQL Server 中的表?
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要添加一个数据流对象,双击它(转到数据流编辑器),然后添加源对象和目标对象。
在源上,您键入查询(或选择表),并在目标上执行映射。
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.
如果您的数据已经在 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.