Forum Replies Created

Viewing 13 posts - 106 through 118 (of 118 total)

  • RE: SSIS: Checking for IsNumeric()

    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]...

  • RE: Can SQL 2008/2005 read SSIS packages created with SQL 2008 R2?

    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:

  • RE: Can SQL 2008/2005 read SSIS packages created with SQL 2008 R2?

    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...

  • RE: Can SQL 2008/2005 read SSIS packages created with SQL 2008 R2?

    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...

  • RE: SSIS Package Hangs

    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...

  • RE: Datetime column as primary key?

    Business rules change. Always code it as if in a month the process will start inserting two records at the exact same time.

  • RE: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER

    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...

  • RE: SSIS File System Task

    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...

  • RE: SSRS - Number of days between 2 dates.

    Can you not use the datediff function as a part of your extraction query?

  • RE: CDC

    I've used the SCD component, lookups on Type1/Type2 columns to determine new/inserts/updates and hashbytes. There is simply no comparison in performance when dealing with large data sets. Hashbytes...

  • RE: Advantages of Time Dimension

    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...

  • RE: CDC

    vineet1234 (6/18/2010)


    5) This way we get the non-matching rows in the error out put. These are the new records coming in.

    Among the matching rows we can use a Conditional Split...

  • RE: How do you Code Slowly Changing Dimensions

    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...

Viewing 13 posts - 106 through 118 (of 118 total)