We are building an SSIS package with a Fuzzy Logic transform which needs to be called from a stored procedure.
There are a few articles on calling an SSIS package from a stored procedure, but what we need to do is:
Not only call it, but pass a parameter (a name) to the Fuzzy Logic transform
Return the result, or part of it, to the calling code
Mostly concerned with 1 right now, as I can't find a way to pass a parameter from the stored procedure to the Fuzzy Logic Transform in the SSIS package.
Any ideas appreciated!