Question

Hello Before this question i already ask on Stckoverflow Create Dynamic Path For SSIS Logging with SSIS log provider for Text files

I Follow the suggestions, but my Log File didn't create? why it happens ? is it Logging on SSIS text Log File Connection couldn't changed dynamically? is it only static connection?

Was it helpful?

Solution

i got the answer accordingh to this link : set filepath from database in SSIS variable for logging

IDTSVariables100 varCollection = null;
this.VariableDispenser.LockForRead("User::FilePath");
string XlsFile;

XlsFile = varCollection["User::FilePath"].Value.ToString();

all i need is :

this.VariableDispenser.LockForRead("User::FilePath");
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top