Viewing 2 posts - 1 through 3 (of 3 total)
Hi, here is a sugestion:
Create a View like this:
CREATE VIEW VWAuxTable
AS
SELECT ROW_NUMBER() OVER (ORDER BY c1) PK, c2 FROM
(
SELECT c1, c2 FROM TABLE1
UNION ALL
SELECT c1, c2 FROM TABLE2
) T
Where TABLE1...
December 9, 2010 at 5:19 am
#1260500
Hello Thomas,
After some investigation on the subject you mencioned I came to a conclusion about this.
I tried Error Handling with Execute SQL Tasks, Bulk Insert Tasks, Data Flow Tasks, Execute...
April 9, 2010 at 9:40 am
#1149227