re: SSIS: Custom Logging Using Event Handlers
I am trying to create a SSIS package that will select specific user info within a table from one database server (A) and insert/update the selected user info in another table on a different database...
View Articlere: SSIS: Custom Logging Using Event Handlers
Michael,You could use a script component to do explicit checks on the data. From there you could have multiple error outputs, one for each check that you are doing. That's effectively doing the same as...
View Articlere: SSIS: Custom Logging Using Event Handlers
Hi Michael,I recommend using SSIS to load the flat file data into nvarchar columns first. Â Then test for numbers and dates with the T-SQL functions IsDate(col001) and IsNumeric(col002).e.g. insert into...
View Articlere: SSIS: Custom Logging Using Event Handlers
Thanks for describing the method for capturing events in SSIS.The unsolved question that I have is related to getting control over event handling in SSIS in general. In my project I am trying to design...
View ArticleSSIS: Put build numbers into your logging process
A little tip here for any of you building SSIS packages.Some of you may know that I'm a big advocate...
View ArticleSSIS: Using System::ContainerStartTime in an eventhandler
Some time ago when SSIS was still in the beta stage I started to build my own custom logging procedures...
View ArticleSSIS Nugget: Verify a data source before using it
As some of you may know I've been writing about SSIS on this blog for a lon-n-n-n-n-g time now. Too long...
View ArticleSSIS Nugget: Verify a data source before using it
As some of you may know I've been writing about SSIS on this blog for a lon-n-n-n-n-g time now. Too long...
View Articlere: SSIS: Custom Logging Using Event Handlers
Hi, I am following this with interest. What I was wondering: isn't there (also) a way to modify the built-in logging functionality?For example, say I wanted to log the onvariablevaluechanged event and...
View Articlere: SSIS: Custom Logging Using Event Handlers
Gary,I'm delighted to see someone taking this on, adapting it for their own needs, and basically improving it. The SSIS community will get stronger as more people build on each other's ideas like this....
View Articlere: SSIS: Custom Logging Using Event Handlers
Gotcha, thanks! Seeing how very slow the debugging was, I implemented it differently, and only a few grey hairs later it seems to work fine:-)1) Set the SQL insert statement(s) as an expression string...
View Articlere: SSIS: Custom Logging Using Event Handlers
Gary,You can edit variables in a parent package using the script task.Granted there may be a problem because you will undoubtedly have a variale called InsertCount in the child package as well but this...
View Articlere: SSIS: Custom Logging Using Event Handlers
> have you considered whether you would be able to build the package just> once and then "parameterise" it (using parent package variables)No can do - while similar, the 5 flat file flows have...
View Articlere: SSIS: Custom Logging Using Event Handlers
Perry,I couldn't agree more that code-reuse is the single biggest stumbling block at the moment in SSIS - and the situation isn't any better in the June CTP either I'm afraid. I have it on good...
View Articlere: SSIS: Custom Logging Using Event Handlers
Jamie (I couldn't respond over on the MSDN forum because of the bug in hotmail/passport leading to redirection failure, too many url redirections on Microsoft's servers),This looks very...
View Articlere: SSIS: Custom Logging Using Event Handlers
Gary,Thanks for trying this out - its good to know people are finding it useful.As a matter of fact I came up against the same problem myself recently whilst running parallel data-flows just last week...
View Articlere: SSIS: Custom Logging Using Event Handlers
Jamie,Thanks for the very well documented example! I started adding this tomy package, and ran into this:My package has multiple parallel data flows. Using your code verbatimwon't work (fair enough:-)...
View Article