Hi All,
I have many Source SQL for the SSIS Data flow source, that is current stored in SSIS variable, but now I want to make them configurable from Config Table which stores the SQL and use it in Data flow source, this way I benefit from saving time if there is any logic change in the source query (but no Column structure as they mapped in data flow) , as I dont need to redeploy the SSIS package, just a data correction scripts.
Just wanted to ask if there is any quick way to autogenerate dynamic SQL stored in varchar(8000) from source SQL scripts. I Dont prefer to do it manually. Also I have once Web application that can update the values in config table, I can update the dynamic scripts from there, again saves time.
Want to add, I dont have permission to create views on data source DB Server
Thanks in advance.