Hi Jessica,
Thank you very much for the reply.
I've finally implemented the solution successfully.
The problem was the create table script for 'SSISConfigurations' table.
For some reason, I did not use nvarchar data type, and I did not follow the field length either .
The table was like this before:
CREATE TABLE [dbo].[SSISConfigurations]
(
[ConfigurationFilter] varchar(50)
,[ConfiguredValue] varchar(500)
,[PackagePath] varchar(200)
,[ConfiguredValueType] varchar(50)
)
and now it is now like this:
CREATE TABLE [dbo].[SSISConfigurations]
(
[ConfigurationFilter] nvarchar(255) NOT NULL
,[ConfiguredValue] nvarchar(255) null
,[PackagePath] nvarchar(255) not null
,[ConfiguredValueType] nvarchar(20) not null
)
I have no more problems in the package for package configuration framework :).
Thank you.
Kind Regards,
Min
|