Viewing 15 posts - 46 through 60 (of 193 total)
Also, I'd recommend that the ensure that the stats are updated asynchronously, otherwise the queries running against them have to wait until the updates are completed before they can access...
March 10, 2010 at 10:21 am
It's possible that the issue is statistics related, rather than index.
Particularly if some of the tables are large and busy, hte statistics for that day may be returning an estimated...
March 4, 2010 at 9:25 am
TheSQLGuru (2/22/2010)
Boy, if I had a nickel for every time I have seen this problem posted in a forum!! :w00t:
Your trousers would be terribly uncomfortable and weigh about a...
February 22, 2010 at 10:15 am
Paul White (2/22/2010)
vino.kumar587 (2/22/2010)
Can i know how many nvarchar(max) column can add in one index?. Its very urgent situation.
Can I ask why you are wondering, and why it is so...
February 22, 2010 at 8:32 am
You can't have an mvarchar(max) as a key column (a searchable column) in an index. Only as an included column
February 22, 2010 at 5:38 am
For index maintenance, tere's a brilliant and very well regarded script here
http://sqlfool.com/2009/06/index-defrag-script-v30/
Works extremely well 'out of the box' but can be configured to meet any particular requirements you have.
February 18, 2010 at 2:21 am
Hi,
you can use the following to check PLE. A value of around 300 is recommended by MS as the minimum for an OLTP system
select
object_name, counter_name,...
February 18, 2010 at 2:05 am
One issue with replication is, if you're using transactional replication and the downtime is caused by someone running
DELETE
FROM ReallyCriticalTable
-- Oops, forgot the where clause
this is going to take down...
January 27, 2010 at 8:42 am
Sounds like hard trimming.
This covers this issue and provides a link to further information
http://blogs.msdn.com/psssql/archive/2007/05/31/the-sql-server-working-set-message.aspx
It can also - from what I've seen - happen if there's a problem with your hardware,...
January 19, 2010 at 8:42 am
GilaMonster (1/6/2010)
Manic Star (1/6/2010)
Except for some locker room behavior at a few clients, I've not noticed any serious discrimination in my 20 years in the business.
Same here. Worst I've...
January 6, 2010 at 8:50 am
tscott (12/17/2009)
We had an external networking company setup the machine for us.
:w00t:
Um - external to your campany, or external to accepted reality?
December 17, 2009 at 8:38 am
Good question. I'll have to have a dig there.
It was from a MS article on lock escalation to the effect that threshold for Lock Escalation was c....
December 14, 2009 at 10:30 am
Any idea how many rows are normally deleted by your delete process?
If it's more than about 5000, then you're likely to be getting table locks due to lock escalation, in...
December 14, 2009 at 10:13 am
Michelle Ufford, aka SQLFool, has a very well regarded script to do what the Guru recommends;
December 4, 2009 at 3:21 am
As well as Grant's recommendations, personally I'd also set the Auto Update Statistics Asynchronously to True if you're using Auto Update Statistics
December 2, 2009 at 10:10 am
Viewing 15 posts - 46 through 60 (of 193 total)