Forum Replies Created

Viewing 15 posts - 1 through 15 (of 30 total)

  • RE: A SSIS Design Pattern for Change Data Capture

    From MSDN : MOST , but not ALL, modification

    BINARY_CHECKSUM(*), computed on any row of a table, returns the same value as long the row is not subsequently modified. BINARY_CHECKSUM(*)...

  • RE: Convert Bigint time to datetime

    Lynn Pettis (4/17/2014)


    PSB (4/17/2014)


    select DATEADD(Minute, 1397750400000, '1970-00-01')

    Getting an overflow error .

    Arithmetic overflow error converting expression to data type int.

    Yep, told you that would happen earlier.

    Now, what date and time...

  • RE: Converting to datetime a char field with several possible date formats

    Thanks a lot, I did not know about SET DATEFORMAT

  • RE: Update statistics in parallel

    Arjun Sivadasan (3/27/2013)


    Hi Federico, I gave this a try.

    We have daily tasks running in our system. Every day at a specific time, we truncate certain tables and repopulate them. We...

  • RE: T-SQL insert using SSIS Data Pump

    mishaluba (2/7/2013)


    Thank you for the article! Note that if you are using SQL 2012 there is now a way to invoke SSIS package from T-SQL without having to resort...

  • RE: T-SQL insert using SSIS Data Pump

    philcart (2/7/2013)


    nick.mcdermaid (2/6/2013)


    SQL Agent is tricky because:

    1. If you have only one SQL Agent job being your 'host' you can't run mutliple jobs in parallel

    2. If you want to have...

  • RE: T-SQL insert using SSIS Data Pump

    BULK INSERT on Windows OS is not pipelined : first you need to save all to a file, then Bulk Insert from the file.

    SSIS use C# to achieve pipelining .

  • RE: T-SQL insert using SSIS Data Pump

    philcart (2/5/2013)


    Sorry you lost me on a few fronts.

    1) you reference another article stating, "The method SSIS Data Pump represents the most effective way to load large amount of data...

  • RE: Update statistics in parallel

    chadmjordan (2/2/2013)


    Part of our current daily db maintenance is a sql script that reads through all indexes in a db and determines if they need a reorg or rebuild, or...

  • RE: T-SQL insert using SSIS Data Pump

    It depends how many rows and how many bytes per row you are going to insert.

    If you start making DWH / ETL with SqlServer, you will probably face this...

  • RE: T-SQL insert using SSIS Data Pump

    You can try by yourself to compare .. as I have written, Insert Into is fully logged operations, requires more restrictive lock on target table and makes heavy use of...

  • RE: Update statistics in parallel

    Thanks to Alexander for the fix.

    About performance metrics :

    in general, my update statistics runs N times faster than built-in sp_updatestats , where N is number of threads ....

  • RE: Update statistics in parallel

    Good correction !

  • RE: Using a TSQL semaphore in SSIS

    Henry B. Stinson (1/14/2013)


    Two problems I see right off:

    1. You may not want isolation level serializable for the whole package. That may cause unnecessary blocking in other processes.

    I suppose...

  • RE: Using a TSQL semaphore in SSIS

    Release the semaphore : just end the transaction that is holding the semaphore by a commit ( or rollback, is the same since no data are modified) ...

Viewing 15 posts - 1 through 15 (of 30 total)