Forum Replies Created

Viewing 15 posts - 4,246 through 4,260 (of 6,041 total)

  • RE: "poor man's replication" ETL process design

    TheSQLGuru (1/12/2015)


    So you believe that adding a timestamp and non-clustered index to a table is more likely to break production than adding a trigger than inserts into an audit table?...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: "poor man's replication" ETL process design

    If you had access to the transaction logs, then you could do log shipping replication. If you had an actual login account, then you could leverage SSIS.

    Having to operate...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Data Lakes

    Steve Jones - SSC Editor (1/12/2015)


    It is similar to a database, but the scale of data in most companies (overall), exceeds what a single RDBMS can handle. I'm not sure...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: "poor man's replication" ETL process design

    TheSQLGuru (1/12/2015)


    Eric M Russell (1/12/2015)


    bantrim (1/12/2015)


    I'm going to have to show my colleague yours and Kevin's posts since, to her, triggers are four-letter-words. We've gone back and forth since...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: "poor man's replication" ETL process design

    bantrim (1/12/2015)


    I'm going to have to show my colleague yours and Kevin's posts since, to her, triggers are four-letter-words. We've gone back and forth since we first met over...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: "poor man's replication" ETL process design

    bantrim (1/12/2015)


    Eric M Russell (1/12/2015)


    Using hash or checksum techniques to detect modifications to bulk numbers of records is inefficient (it has to read and hash all columns) and not reliable...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: "poor man's replication" ETL process design

    But how would any of this be a "poor man's" version of replication? Even SQL Server Standard Edition supports real replication, which may work better than anything you spend time...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: "poor man's replication" ETL process design

    Using hash or checksum techniques to detect modifications to bulk numbers of records is inefficient (it has to read and hash all columns) and not reliable (data changes but hash...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Is there a way to throttle or limit the amount of sql requests either by IP address or username?

    The "query governor cost limit" server option (and session override setting) has been around since at least v2000. You basically specify the maximum number of seconds, and then SQL Server...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Selling Automation to Ops

    It would be helpful if backup tools supported backing up and restoring server configurations (linked servers, maxdop, trace flags, etc.) Practically all SQL Server backup solutions are database centric. Maybe...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Selling Automation to Ops

    Occasionally automation means modifying the applications or developing a new table or stored procedure. But in my universe, Operations are part of IT and are capable of implementing their own...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Multiple Backup Files

    There are probably a lot more multi-TB instances than there are multi-TB databases. I don't currently manage backups, but in our environment we have a 10 TB instance partitioned both...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Two Days Off

    Scott D. Jacobson (1/8/2015)


    I for one would really like to know more about the reasons behind the outage. There was a Xen security advisory last September that caused huge ripples...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: group by part of string

    ScottPletcher (1/8/2015)


    You could also GROUP directly on the CASE expression itself:

    SELECT

    CASE

    WHEN message_text LIKE '%ThePartToGroupBy%' THEN '%ThePartToGroupBy%'

    ...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Two Days Off

    If it's not enterprise applications what are affected, then perhaps it's not that big of a deal. However, it does break my heart to think of all those millions of...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

Viewing 15 posts - 4,246 through 4,260 (of 6,041 total)