Viewing 15 posts - 11,506 through 11,520 (of 22,214 total)
You don't want your average business person mucking about in your database. First thing is to have something in front of it to make it easy for those people.
Next, the...
December 15, 2011 at 4:35 am
sqldba2k8 (12/15/2011)
in software industry most of the working people are fake.
You have to define fake. Is fake being that you don't know everything about everything? Yes, we're all fake. Is...
December 15, 2011 at 4:27 am
Cleaning up unused indexes is an OK use for your time, but, you need to be aware, sys.dm_db_index_usage_stats only records information since the last time the server was restarted (and...
December 15, 2011 at 4:20 am
Your approach is basically sound, yes. Be sure that two hours is how much data the business is prepared to lose in the event of a catastrophic issue. Also, test...
December 15, 2011 at 4:15 am
RSP (12/14/2011)
<<Maybe that index will save you tons...
December 14, 2011 at 8:06 am
LOB's? No, that index doesn't make that much sense.
There are a couple of fundamental problems with missing index recommendations. First, they're based on the stats available to them, so if...
December 14, 2011 at 7:41 am
If you do need to set up a custom set of monitors to keep track of changes long term, instead of relying on the default trace or using your own...
December 14, 2011 at 4:25 am
Page life expectancy is a constantly changing measure. You can't take a reading once and have some idea for how it's behaving. Same goes for most of the monitored values....
December 14, 2011 at 4:21 am
Things like this:
CONVERT(DATE,LR.FromDate) BETWEEN CONVERT(DATE,@FromDate) AND CONVERT(DATE,@ToDate)
Are going to cause major performance headaches because indexes, if you have any, won't be used to find the data in LR.FromDate. Instead...
December 14, 2011 at 4:16 am
Oracle is just a whole different world with a different set of capabilities and problems. If you don't know Oracle now, time to learn. You're going to have to change...
December 13, 2011 at 8:25 am
Lots of key lookup operations. I'd be concerned that my clustered indexes are not useful. And that SORT operator is the main cost currently. See if you can modify that...
December 13, 2011 at 8:23 am
ashanair70 (12/12/2011)
December 12, 2011 at 7:22 am
And after copying the files use ATTACH to get the database set up on the new server.
December 12, 2011 at 6:48 am
And there is the problem with the DTA in a nutshell. How important are the suggestions it has, not even worrying about whether or not those suggestions are helpful.
Unfortunately, you...
December 12, 2011 at 6:12 am
What do you mean by "refresh"? There's not a command or process that specifically defines this, so you could be referring to a lot of different things.
December 12, 2011 at 6:06 am
Viewing 15 posts - 11,506 through 11,520 (of 22,214 total)