Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了 2 个需要按特定顺序执行的存储过程。
我只是不知道该怎么做。我还想每天使用 GETDATE() 作为两个过程的参数自动执行此操作。
是否有我可以创建的 SSIS 包以适合我的顺序执行这两个过程?
您想创建一个作业,让每个过程调用该作业中的一个步骤,然后按照定义的时间表运行该作业。
您还可以创建一个 SSIS 包,其中将包括 2 个执行 SQL 任务,它们之间有一个优先约束,类似于exec [MyStoredProcedure] @MyParam = GetDate();要执行的 sql 命令。
exec [MyStoredProcedure] @MyParam = GetDate();