tags:

views:

13

answers:

1

Hi Folks,

I have table called Table1 with columns, col1 and col2 with col1 having weblinks for the report and col2 the name of the report. Now, i have a package with a variables var1 and var2 which should get the col1 and col2 values respectively from table1 and send it through an email. if the weblink gets updated in the table, package should send the updated link. i know the reverse way of it but trying to do somethig like this.

Appreciate any help from you guys.

Thanks

A: 
bobs
Thank you very much. thats how an answer should be. thanks. just one question how do i see the value of the variable, i dont see it in variables window?
CombatCaptain
You can view the variable values at runtime by setting breakpoints. For example, if you want to see the values at every iteration of the Foreach Loop Container, you can set a breakpoint on the container. Right-click the container and select Edit Breakpoints. Check the Enabled boxes for the appropriate events, "Break at the beginning of every iteration of the loop" in this case. Start the package and when there's a break, look in the Locals window for your variables to see the current values. Click the start button to continue processing.
bobs
Thanks bob. really appreciate your help and your expertise in SQL. Thanks a million.
CombatCaptain