Viewing 15 posts - 44,266 through 44,280 (of 49,571 total)
If you define an explicit transaction, and do the appropriate error handling, you can roll the whole lot back. I suggest using Try..Catch as @@error requires a check after every...
September 23, 2008 at 12:20 pm
To recover in this scenario you need a full backup from before the table was dropped and an unbroken log backup chain from that full backup up until just before...
September 23, 2008 at 12:16 pm
sqldba (9/23/2008)
Instead of creating two new file groups, Can I add two files to the same primary filegroup point to new disks, then use dbcc shrinkfile(filename, empty)...
September 23, 2008 at 12:14 pm
Do you have a reason for wanting the queries to not run paralleled?
September 23, 2008 at 11:35 am
Dunno. Probably.
I've seen people suggest snapshots for month-end reporting with the intention of keeping the snapshots in place for a year.
September 23, 2008 at 10:56 am
Jack Corbett (9/23/2008)
September 23, 2008 at 10:24 am
Doesn't mean that the index is completely appropriate. The DTA sometimes gets it wrong.
Can you please post table structure, index defs, query and exec plan please. (exec plan saved as...
September 23, 2008 at 10:06 am
Also have a read through this for a quick overview of how recovery models affect the tran log:
http://sqlinthewild.co.za/index.php/2008/07/23/recovery-model-and-transaction-logs/
September 23, 2008 at 9:56 am
You can, however if a column isn't indexed a change to it won't reflect in that DMV. I don't know if, for the purposes of that DMV, all the columns...
September 23, 2008 at 9:53 am
AlexSQLForums (9/23/2008)
I had a truncate log step right after full backup.
You need the full backup after the truncate to restart the broken log chain.
September 23, 2008 at 9:51 am
I don't think it will make any difference. The extra time comes from writing the original version of the modified pages into the snapshot files, not from searching through tables...
September 23, 2008 at 9:37 am
Can you post the exec plan please? (saved as a .sqlplan file, zipped and attached)
September 23, 2008 at 9:30 am
There's no DMV that tracks that. You can run profiler or you can put a trigger on to the tables to count the changes made.
September 23, 2008 at 9:25 am
As soon as you truncate the log you've broken the log chain. Any log backups taken after that point are useless and the log records will be automatically discarded (when...
September 23, 2008 at 9:20 am
Viewing 15 posts - 44,266 through 44,280 (of 49,571 total)