I have set of flat files (114 files) each file is named with database table name. I have database schema, So my database is ready with no records in it.
All that i have to do is, process these flat files and insert those records in respective tables.
I created an SSIS package, I am trying to set Dynamic table name in Ole DB destination.
I have used variable to set Dynamic table Name.
this is how my package is
In script Task, I am setting value for variable
public void Main()
{
// TODO: Add your code here
string _path = string.Empty;
if(Dts.Variables["FilePath"] != null)
_path = Dts.Variables["FilePath"].Value.ToString();
//MessageBox.Show(_path);
//Variables vars = default(Variables);
//Dts.VariableDispenser.LockForWrite("TableName");
//vars["TableName"].Value = _path.Replace(@"C:\Users\GD\", "").Replace(".txt", "");
Dts.Variables["TableName"].Value = _path.Replace(@"C:\Users\GD\","").Replace(".txt","");
MessageBox.Show(_path + Environment.NewLine +"TableName: " + Dts.Variables["TableName"].Value.ToString());
Dts.TaskResult = (int)ScriptResults.Success;
}
the messageBox gives me the expected data. But Ole DB Destination table is not recognizing the table name from second loop.
Variables
Ole DB Destination settings
Error Message:
[OLE DB Destination [55]] Error: Column "ActiveCompositionGenericID" cannot be found at the datasource.
"ActiveCompositionGenericID" this is column in First destination Table and First Source File.
For Second File in the Loop this is not expected in Source File (which is happening), and this should also not be in destination table.
This error message confirms me that, Destination table is still pointing to First table name, and it hasn't changed.