Hi,
I wonder if it is possible in SSIS package.
Actually I have table which has some null employee SEID,
Select email, SEID from employee table.
Where SEID is NULL
email SEID
sxx@xxx.gov null
first I like to have dateview which shows null SEID,( I will get the SEID from active directory)
Then I need to update the employee table
update employeetable
set SEID = 'xxx'
where email = 'sxx@xxx.gov'
Any help will be appreciated
simam