运行文件导入过程
我有一个从名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在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.
您可以在插入上设置触发器,但这将在逐行基础上工作
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