Scenario 9: How to send alternate record to target?
Scenario 9: How to send alternate record to target? Or Sending Odd numbered records to one target and even numbered records to another target. How to achieve this in SSIS in various ways....(inlcuding any SQL quries)......? Thanks and Regards, Desparado.
April 18th, 2011 3:08am

Use a Conditional Split and use an expression to figure out if your number is even or odd: @Value % 2 == 0? "even":"odd" Please mark the post as answered if it answers your question | My SSIS Blog: http://microsoft-ssis.blogspot.com
Free Windows Admin Tool Kit Click here and download it now
April 18th, 2011 3:20am

Use a Conditional Split and use an expression to figure out if your number is even or odd.Please mark the post as answered if it answers your question | My SSIS Blog: http://microsoft-ssis.blogspot.com
April 18th, 2011 3:23am

You could add a row number to the source data and use an expression to check if the rowid is an odd or even number and you could split them based on conditional split.Request to please mark my post as an answer if I helped you to resolve the issue or vote up if I helped you.Thanks. Regards and good Wishes, Deepak.
Free Windows Admin Tool Kit Click here and download it now
April 18th, 2011 4:30am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics