SSIS: Use System::TaskName inside the dataflow(SSIS:在数据流中使用 System::TaskName)
问题描述
对于更详细的日志记录,我想检索 [System::TaskName]
For more detailed logging, I want to retrieve the [System::TaskName]
现在,当从失败的任务开始时,我们转到脚本任务",在那里我获取 [System::TaskName] 并将其写入日志.从逻辑上讲,这会写入当前的 TaskName = 'Script task' 而不是失败的任务
Right now, when starting from the task that fails we go to 'script task', there I fetch [System::TaskName] and write that in the log. Logically this writes the current TaskName = 'Script task' instead of the failed task
问题是 System::TaskName 只知道在任务内部,逻辑上...事实上,我想从数据流内部更新一个变量User::CurrentTaskName",= 从任务内部.
Problem is the System::TaskName is only know inside the task, logical... In fact I want to update a variable 'User::CurrentTaskName' from inside the dataflow, = from inside the task.
如果我可以在数据流中使用脚本任务"组件,这将是最简单的,但我找不到.可能我需要一个解决方法.
This would be easiest if I could use a 'Script Task' component inside a dataflow but I can't find that. Probably I need a workaround.
希望你们大致明白我的意思...
Hope you guys understand approximately what I mean...
提前致谢!
推荐答案
我能够通过在脚本组件中添加以下内容来访问 TaskName.
I was able to access the TaskName by adding the following inside a Script Component.
Private Function ReadVariable(ByVal varName As String) As Object
Dim result As Object
Try
Dim vars As IDTSVariables100
Me.VariableDispenser.LockForRead(varName)
Me.VariableDispenser.GetVariables(vars)
Try
result = vars(varName).Value
Catch ex As Exception
Throw ex
Finally
vars.Unlock()
End Try
Catch ex As Exception
Throw ex
End Try
Return result
End Function
然后像这样访问变量
ReadVariable("System::TaskName")
这篇关于SSIS:在数据流中使用 System::TaskName的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SSIS:在数据流中使用 System::TaskName
基础教程推荐
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- 无法解决整理冲突 2021-01-01
