Forum Replies Created

Viewing 15 posts - 7,561 through 7,575 (of 11,678 total)

  • RE: OLE DB Excel connection Manager problem

    PradeepVallabh (3/19/2012)


    Yes it does have header excel sheet. Also i m running the package in a 32 bit machine but i did set the runtime to 64 bit

    Thanks

    Do not do...

  • RE: preformance issue..with this

    Grant Fritchey (3/19/2012)


    Or just perform the MAX statement as a derived table (same thing as a CTE) and join to that. In this situation a CTE just changes the location...

  • RE: SSIS Disconnected Edit?

    If you open an SSIS project in BIDS, you can select "Work Offline" in the SSIS menu.

    I don't know if it really works though...

  • RE: preformance issue..with this

    At first sight that's because you have a correlated subquery in your SELECT statement.

    For every row, the SELECT MAX(createddate) query is executed.

    You can try to create a CTE that has...

  • RE: help with sql server understanding

    pacioaga.alisia (3/19/2012)


    So to understand correctly sql server is to store important companies info for do not loose it.

    In a nutshell, yes.

    But as Gail mentioned, there are other reasons as well.

    You...

  • RE: ROWLOCK Escalation

    GilaMonster (3/19/2012)


    The RowLock (or pageLock) hints just say what the locks should start as, nothing more. In this case they'll start as row, but once past the 5000 or so...

  • RE: weird SCD

    weston_086 (3/19/2012)


    i am using code1 as business key ,name as type 2 and code as type 1 .

    I mean, did you implement it using TSQL or using the SCD component...

  • RE: Excel connection Manger in 64 bit

    Elliott Whitlow (3/16/2012)


    The suggestion of the previous poster only handles the BIDS environment.. It is not honored on the server..

    What version of SQL are you using, if its 2008...

  • RE: business key in Scd

    I wouldn't use an identity column as a business key.

    An identity column doesn't have a "real" value to uniquely identify a row.

    For example.

    Table A has two records containing client info.

    1,...

  • RE: Need to map network drive

    Elliott Whitlow (3/16/2012)


    I would actually warn against mapping drives if there is any way to prevent it. It is far better to use UNC paths. In my experieince...

  • RE: OLE DB Excel connection Manager problem

    So the sheet called Header exists in your Excel file?

    Did the design change? (columns added or removed?)

    Are you running the package in 32-bit?

  • RE: help with sql server understanding

    pacioaga.alisia (3/17/2012)


    (why not stocking that datas on our own pc?)

    Because enterprise data usually takes more then just a few gigabytes.

    And it needs to be available 24/7. If you store it...

  • RE: How can I tell if Implicit Transactions are turned on in my database?

    You can specify the connection options at the server level.

    Right-click on your server in the Object browser and select properties.

    Go to Connections and you'll see Implicit Transactions in the list.

  • RE: weird SCD

    How did you implement the SCD?

Viewing 15 posts - 7,561 through 7,575 (of 11,678 total)