Viewing 15 posts - 45,376 through 45,390 (of 49,571 total)
Downside is that snapshot isolation puts extra load on your TempDB
July 30, 2008 at 1:20 am
I generally prefer to keep two fulll backups (weekly), the diffs made against them (daily) and and of the log backups going back to the first of the fulls. That...
July 30, 2008 at 1:19 am
What do you mean by 'memory consumption issues'?
July 30, 2008 at 1:12 am
Since everyone's beaten me to the 'don't shrink', I'll just touch on other areas
You said the DBs are in full recovery. Do you have log backups running and, if so,...
July 30, 2008 at 1:10 am
webrunner (7/29/2008)
I happened to be running a T-SQL Duration profile trace yesterday. Could this be the performance info on that trace?
Depends. Were you running it to file or to table....
July 29, 2008 at 2:40 pm
Rename the table and see who complains? 😀
Seriously, there's no easy way. You'll have to trace the server for a while (a day, a week, a month) until you're happy...
July 29, 2008 at 1:43 pm
Not exactly.
SQL will use the index that is most optimal for the particular query. If none of the NC indexes are useful, it will use the cluster. That's probably not...
July 29, 2008 at 1:41 pm
Don't worry about self-blocking. It's usually short lived and just means that pieces of the query are waiting internally for other pieces.
July 29, 2008 at 1:30 pm
Less activity on the test server. Is your query having to wait for locks? Wait for IO? Wait for time on the CPU? All are possible and more likely on...
July 29, 2008 at 1:23 pm
Do you have anything else running on this server? Any antivirus or other IO filter drivers? The sec/write is way too high, but the writes/sec aren't. Doesn't make sense.
Could you...
July 29, 2008 at 1:17 pm
SQLServerLifer (7/29/2008)
GilaMonster (7/29/2008)
Haven't we all. 😉 It's a good place to start, nothing more.
That's why I prefaced mine with the ever popular disclaimer "It depends" 🙂
Last time I gave...
July 29, 2008 at 10:24 am
Windows authentication is best. It's more secure than SQL authent. That said, their windows accounts only need access to SQL, not to the server itself. They don't need any rights...
July 29, 2008 at 10:23 am
To extend your example, if there's a frequent query for all people living in a certain city, then I would probably want an index on the Address table on City...
July 29, 2008 at 10:18 am
It's not really possible to say where that comes from. It doesn't look like a system query, but that doesn't mean it isn't.
I would suggest you set up a server-side...
July 29, 2008 at 9:57 am
Viewing 15 posts - 45,376 through 45,390 (of 49,571 total)