Viewing 15 posts - 4,231 through 4,245 (of 6,026 total)
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?...
January 13, 2015 at 7:37 am
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...
January 13, 2015 at 7:11 am
Steve Jones - SSC Editor (1/12/2015)
January 12, 2015 at 3:20 pm
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...
January 12, 2015 at 2:01 pm
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...
January 12, 2015 at 1:00 pm
bantrim (1/12/2015)
Eric M Russell (1/12/2015)
January 12, 2015 at 9:54 am
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...
January 12, 2015 at 8:18 am
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...
January 12, 2015 at 8:14 am
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...
January 12, 2015 at 8:00 am
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...
January 12, 2015 at 7:49 am
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...
January 12, 2015 at 7:17 am
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...
January 9, 2015 at 7:25 am
Scott D. Jacobson (1/8/2015)
January 9, 2015 at 6:23 am
ScottPletcher (1/8/2015)
SELECT
CASE
WHEN message_text LIKE '%ThePartToGroupBy%' THEN '%ThePartToGroupBy%'
...
January 9, 2015 at 6:14 am
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...
January 8, 2015 at 10:47 am
Viewing 15 posts - 4,231 through 4,245 (of 6,026 total)