Hi,
I am working in integration services SSIS. I have the following issue: I have to write an SSIS job which can be scheduled to run at a specific time.
It needs to run these two queries and email me the results.
select account, flatfilename, dateadded, count(*)
from stockloan..dw_positioncurr
ent
group by account , flatfilename, dateadded
order by account, dateadded
select account, dateadded, count(*)
from stockloan..v_position p
group by account , dateadded
order by account, dateadded
How do i do this? Please help!!!
Start Free Trial