I created a stored proc that is used to pass parameters and run an SSIS Pacakge. This proc initializes the execution, sets the parameters and finally starts the package. One of the issues I am running into is setting the parameters. I am using Catalog.set_execution_parameter_Value in the SSISDB database. This is using a table called internal.Data_Type_Mapping which is a mapping between SQL data types and SSIS datatypes. This table is missing the mapping between String and varchar. I’m not sure if this is a bug or I am missing something. As part of my deployment, I want to add it, but I’m a little leery since this is a system table. Does anyone know anything about this?The query below only returns Char, NChar, and NVarchar. [code="sql"]select * from ssisdb.internal.data_type_mappingwhere ssis_data_type = 'String'[/code]
↧