Viewing 6 posts - 61 through 67 (of 67 total)
Henry,
Here's a way to do the first part of the question using a join and making sure you don't overwrite OldEmail with a NULL as Sushila just pointed out:
UPDATE A
Set...
February 3, 2006 at 12:25 pm
You are getting a "Disk or Network Error". You might want to check for file existance before the transform.
Try an ActiveX Script Task before the transform. You can...
February 3, 2006 at 9:40 am
You need to "Refresh Fields" after you finish entering the EXEC statement. It's a little icon next to the dataset dropdown. If done properly, you will get a...
February 2, 2006 at 12:21 pm
Correction:
Maybe this is a scope or session problem.
Since the execute sql task basically puts a "GO" after each sql statement, try to put a semicolon after your insert command:
INSERT INTO...
February 2, 2006 at 11:27 am
Maybe this is a scope or session problem.
Since the execute sql task basically puts a "GO" after each sql statement, try to put a semicolon after your insert...
February 2, 2006 at 11:25 am
Don't forget the semicolons:
DECLARE @DateParm DATETIME;
SELECT @DateParm = ?;
select *
from tableA a
where exists (Select ID
from tableB b
where b.ID = A.ID
and b.Date = @DateParm )
February 2, 2006 at 10:09 am
Viewing 6 posts - 61 through 67 (of 67 total)