在SSIS数据流中动态创建表

发布于 2024-12-02 03:08:20 字数 56 浏览 0 评论 0原文

如何让 SSIS 数据流创建一个不存在的表?每次我尝试运行该包时,都会出现错误,指出目标表不存在。

How can I have an SSIS data flow create a table that doesn't exist? Every time I try to run the package, it gives me an error saying that the destination table doesn't exist.

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

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

发布评论

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

评论(2

谁把谁当真 2024-12-09 03:08:21

由于您希望包创建一个表然后填充它,因此您可以使用执行 SQL 任务创建一个表。只需为其提供创建表的脚本即可。

如果您无法选择使用执行 SQL脚本 任务,那么您可以使用脚本 组件,但由于它的执行时间为每一行,您都必须发挥创意才能让它只执行一次。

另外,当您运行此包时,SSIS 会报告在验证期间未找到该表。

为了解决这个问题,在包属性中,在填充表的数据流中,将 Delay Validation 属性设置为 True

Since you want your package to create a table and then populate it, you can create one using the Execute SQL task. Just give it the script to create your table.

If you do not have the option of using an Execute SQL or Script task, then you can use a Script Component, but since it executes for every row, you'll have to get creative to have it execute only once.

Also, when you run this package, SSIS going to crib about the table not being found during Validation.

To counter that, in the package properties, in data-flow that populates the table, set Delay Validation property to True

似梦非梦 2024-12-09 03:08:21

为什么不在执行 SQL 任务中数据流之前的步骤中创建表?

WHy not create the table in the step before the dataflow in an execute SQL task?

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