Viewing 13 posts - 106 through 118 (of 118 total)
Script component
or use a derived column(note that this will not work if numbers use leading 0's):
Result = !ISNULL([Col]) && ((DT_STR,20,1252) [Col] == ((DT_STR,20,1252) (DT_I4) [Col] )) ? (DT_I4) [Col]...
November 2, 2010 at 3:12 pm
Alvin Ramard (11/2/2010)
What timing? While you were writing this, I was adding a few words to your comment about blocking in another post. 😀
You complete me :hehe:
November 2, 2010 at 3:02 pm
Alvin Ramard (11/2/2010)
SQL 2005 packages can be easily upgraded to 2008 but will then no longer run on SQL 2005. There is no downgrade option to convert 2008 packages...
November 2, 2010 at 2:46 pm
There isn't backwards compatibility between 2005 and 2008. You can upgrade a SQL Server 2005 package to a SQL Server 2008 package with a wizard. Typically the only...
November 2, 2010 at 2:41 pm
A couple of things could cause this issue that I've run into...
-A blocking issue...perhaps inserting to the same table that you are extracting from as your source
-Commit size on the...
November 2, 2010 at 2:31 pm
Business rules change. Always code it as if in a month the process will start inserting two records at the exact same time.
October 29, 2010 at 8:18 am
Installing both 32 bit and 64 bit drivers/providers on the server has helped resolve this issue in the past at clients. (BIDS uses 32 bit, but Job Agent uses 64...
October 28, 2010 at 2:55 pm
One idea:
-Loop through D1.txt, D2.txt, and D3.txt files in D:\data. Instead of trying to move and append using the File System Task, use a Data Flow Task and extract...
October 28, 2010 at 1:25 pm
Can you not use the datediff function as a part of your extraction query?
June 23, 2010 at 7:30 am
There are typically a few attributes in the date dimension that are custom made and specific to that particular organization. These attributes include fiscal calendar columns and holiday/workingday indicator...
June 21, 2010 at 3:53 pm
I use Hashbytes.
1) Cast any non-string data to string values
2) Use Hashbytes function(create in either a VB script or extract query) and create a HashByteType1 value stored in a HashByteType1...
June 16, 2010 at 2:19 pm
Viewing 13 posts - 106 through 118 (of 118 total)