Viewing 15 posts - 9,361 through 9,375 (of 22,214 total)
The other recommendations for MAXDOP are good. You can also leave it at zero if you're not experiencing any particular CPU pressure.
But, the one thing I would suggest changing on...
November 7, 2013 at 4:07 am
GilaMonster (11/6/2013)
Restoring or recovering?A DB will go restoring if someone runs BACKUP LOG ... WITH NORECOVERY ....
In what might be an epic role reversal, don't you mean RESTORE LOG etc.?
November 7, 2013 at 4:03 am
For the two queries listed, one shows an actual row count of 10,000+ rows. The other shows an actual count of 1 row. You can also see a difference in...
November 6, 2013 at 12:30 pm
The reason snapshots are so fast is that they're only tracking changes pages. It's not an actual backup. It completely dependent on your original database being in place. As Gail...
November 6, 2013 at 12:14 pm
If it was just the query you show and no other statements, no other processing updating tables or anything else, yeah, I'm a little surprised that query all by itself...
November 5, 2013 at 2:15 pm
zi (11/5/2013)
November 5, 2013 at 2:12 pm
I'd suggest not relying too much on those screens. Instead, if you're interested in monitoring the system, use a combination of Performance Monitor, Dynamic Management Objects and Extended Events. You'll...
November 5, 2013 at 9:27 am
It doesn't sound like tempdb was the issue. I'd suggest monitoring your wait statistics (sys.dm_os_wait_stats) and running an extended event session to capture query metrics.
Don't run the Profiler gui against...
November 5, 2013 at 8:47 am
Use extended events to capture the data to a file.
Then, you can use fn_xe_file_target_read_file to read the file. It'll output as XML. Here's an example XML query that might be...
November 4, 2013 at 12:31 pm
I'm not sure who wrote that tip, but in case it was me...
I must have meant to just clean up the code. It's actually not a major performance enhancement...
November 4, 2013 at 12:24 pm
Without more details, I can't tell you what's wrong.
I'm with Gail though. Use backup and restore. Doing that will not only get you your copy of of the database, but...
November 4, 2013 at 7:02 am
Ed Wagner (10/31/2013)
GilaMonster (10/31/2013)
Jeff Moden (10/31/2013)
GilaMonster (10/31/2013)
I'm unlikely to be around much during the week from now on (at...
October 31, 2013 at 1:15 pm
In general, more disks can improve performance, not generally hurt it. But, you also have to have more controllers to really achieve meaningful benefits. In general, based on what you're...
October 30, 2013 at 12:37 pm
Your second query, the UNION, is getting a timeout from the optimizer. That means the plan is likely to be suboptimal. I'd suggest looking at ways to simplify the query....
October 30, 2013 at 12:03 pm
I meant internal memory measurements within SQL Server such as ConnectionMemory, DatabaseCacheMemory or FreeMemory. In theory you should be able to look at all the these and see what the...
October 30, 2013 at 7:46 am
Viewing 15 posts - 9,361 through 9,375 (of 22,214 total)