运行文件导入过程

发布于 2024-11-06 05:08:27 字数 99 浏览 0 评论 0原文

我有一个从名为 Test 的表中选择数据的过程。而数据加载到测试表的方式是通过File Import。

我正在尝试的是,有没有一种方法可以在表上有导入时自动运行该过程。

I have a procedure which selects data from a table called Test. And the way the data is loaded into the test Table is through File Import.

What I am trying is, Is there a way to run the Procedure automatically whenever there is an import on the Table.

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

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

发布评论

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

评论(2

欢你一世 2024-11-13 05:08:27

在SSIS中,您可以添加一个执行SQl任务来在主要导入工作之后运行proc。我们在所有导入包中都这样做以保存元数据。如果您正在从作业运行导入,另一种方法是使用作业中的第二个任务来运行您的过程。

In SSIS, you can add an execute SQl task to runthe proc after the main import work. We do this in all our import pacakges to save meta data. If you are running the import from a job, an alternative would be to use a second task in the job to run your proc.

半城柳色半声笛 2024-11-13 05:08:27

您可以在插入上设置触发器,但这将在逐行基础上工作

http ://msdn.microsoft.com/en-us/library/ms189799.aspx

You can have a trigger on the Insert but that would work on a row by row basis

http://msdn.microsoft.com/en-us/library/ms189799.aspx

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