Viewing 15 posts - 106 through 120 (of 196 total)
Did u rule out any data type conversions (like for ex: coming from DB2 source to SQL Server dest, even though the data type is datetime or similar on both...
April 16, 2009 at 12:20 pm
This is a quick read and one of the most frequent prob in SSIS.
April 16, 2009 at 11:38 am
elegant vs efficient .. i guess elegant wins.
🙂
April 16, 2009 at 11:36 am
Use OLEDB connection managers (much faster than ADO.NET... u dont necessarily have to use ADO.NET).
Map the SSIS variables to parameters of the stored proc based on ordinal positioning of the...
April 16, 2009 at 10:47 am
You can apply CHECKSUM(AllColumnsSepBycommas) in your SELECT in the Data Flow Task Sources (on both sources of merge join).
[ps - u can automate this from the metadata]
April 16, 2009 at 10:44 am
Mod your SELECT to SELECT ColumnNames, CHECKSUM(ColumnNames) AS 'Checksum_Column'.... if u can mod the query.
April 16, 2009 at 10:38 am
have u tried using BIDS Helper
http://www.codeplex.com/bidshelper/Release/ProjectReleases.aspx?ReleaseId=9557
April 16, 2009 at 10:37 am
Cool. Now i also have numbers to back my technology suggestions for using SSIS for transfers.
April 14, 2009 at 11:37 am
Do you have any configurations for your connection (to excel)
April 14, 2009 at 11:32 am
Could be the PK, but is it the only key on that table
April 14, 2009 at 9:39 am
david,
i think the TABLOCK is already being specified.
dndaughtery , Maybe your transaction log is getting filled up or growing at a very rapid rate (ok, on this point i...
April 14, 2009 at 8:59 am
David, u can change the batch size and commit size the destination adapter...any other difference?
April 14, 2009 at 8:46 am
Just have the table lock checked, remove any null checks, constraint checks.
set the batch size to 100000 and commit size the same.
Do you have any transformations between the RAW source...
April 14, 2009 at 8:45 am
David, i have question - doesnt the data flow task execute Bulk Insert when u use the fast load option? (if u see from profiler it says Insert Blulk but...
April 14, 2009 at 8:35 am
Viewing 15 posts - 106 through 120 (of 196 total)