Some of SSIS stuff: variables and its assignations
Some of SSIS stuff: VARIABLES and its ASSIGNATIONS.
For a file connection log:
(ConnectionString)
@[User::RutaLog]+ @[System::PackageName] + ".log"
Where RutaLog stands for a string value which contains the path for you .LOG file
For a OLEDB Connection:
(InitialCatalog)
@[User::BD]
Where BD stands for string value which contains the name of your database
For a properties such as MessageSource (Send Mail Task) or whatever similar:
" El Modelo " + @[User::MODELO] + " del ejercicio " + (DT_WSTR,4)@[User::EJERCICIO] + " se ha cargado . \nSe han insertado " + (DT_WSTR, 8) @[User::REGISTROS] + " registros . \nSe puede comprobar desde la aplicación NS"
REMARK: I warn you the use for '\n' literals inside the main literal.
For a file connection log:
(ConnectionString)
@[User::RutaLog]+ @[System::PackageName] + ".log"
Where RutaLog stands for a string value which contains the path for you .LOG file
For a OLEDB Connection:
(InitialCatalog)
@[User::BD]
Where BD stands for string value which contains the name of your database
For a properties such as MessageSource (Send Mail Task) or whatever similar:
" El Modelo " + @[User::MODELO] + " del ejercicio " + (DT_WSTR,4)@[User::EJERCICIO] + " se ha cargado . \nSe han insertado " + (DT_WSTR, 8) @[User::REGISTROS] + " registros . \nSe puede comprobar desde la aplicación NS"
REMARK: I warn you the use for '\n' literals inside the main literal.