Hi Guys,
I need to pass a param (that contains double quote in string) to a user variable in SSIS. and I'm trying to do this from command prompt.
what I'm trying is to pass: Name.StartsWith("MGGS") and Name.EndsWith("tar.gz")
I tried as below [with no luck of course :(]
/SET "\Package.Variables[User::FileNameLogic].Properties[Value]";"Name.StartsWith(\"MGGS\") and Name.EndsWith(\"tar.gz\")"
It seems when I'm just using as below, that is working though:
/SET "\Package.Variables[User::FileNameLogic].Properties[Value]";"Name.StartsWith(\"MGGS\")"
Any suggestion please?