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.
我有一个 DataFlow 任务,我通过表达式编辑器为[DataReader Source].[SqlCommand]属性分配了一个 sql 语句。
[DataReader Source].[SqlCommand]
此 sql 语句包含在运行时更改的变量。所以出于调试目的;如何在运行时记录 SqlCommand 值?
我知道我可以在脚本任务中记录简单变量,Dts.Variables["YourVariable"].Value但我想知道如何访问任务属性(如上面的属性)?
Dts.Variables["YourVariable"].Value
我不相信您将有权访问包中的这些属性。出于这个原因,我的偏好是总是让任务上的表达式是一个直接的变量赋值。否则,调试和日志记录比他们需要的要困难得多。