Viewing 15 posts - 76 through 90 (of 252 total)
I've tried running repair and everything else I can think of. It is a non production instance that can be rebuilt and will be phased out at some point. ...
September 6, 2013 at 12:18 pm
Thanks for the responses. I'll check into opening a case. Microsoft support is very expensive isn't it?
September 6, 2013 at 10:20 am
Microsoft SQL Server 2012 (SP1) - 11.0.3000.0 (X64)
Oct 19 2012 13:38:57
Copyright (c) Microsoft Corporation
Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
It shows 11.0.3000...
September 5, 2013 at 4:33 pm
I guess now that I think about it, the clustered index might be greatly speeding up the updates so just comparing reads to writes isn't a good way to determine...
June 4, 2013 at 3:30 pm
SQL Guy 1 (6/4/2013)
Are your clustered indexes ever-increasing, narrow and unique ? If at least one "No", that might be a reson.
The one with 0 reads is not unique.
I'm...
June 4, 2013 at 3:21 pm
I assumed if the writes were significantly more than reads than the index is bad. If the clustered index has very few reads then doesn't that mean that the table...
June 4, 2013 at 3:15 pm
Steve,
Thanks for sharing that article with me. She has good insight that I can learn from.
May 17, 2013 at 1:16 pm
Thanks Erin. I try to break them down to understand them too.
Many times the scripts are to alter some stored procedure or view so there is no execution plan...
May 17, 2013 at 12:15 pm
Thanks.
They instances are listed there but SQL Server install does not see either one. I'm just going to go a clean install then move the databases into the new...
May 6, 2013 at 10:29 am
Still stuck on this one. How does the SQL Server installer detect existing instances to add features? How can I get analysis services added to an existing instance...
May 3, 2013 at 1:00 pm
Thanks for responding John. There is no blocking going on. If I try to run index maintenance on an index that belongs to a table in the long-running select query,...
April 21, 2013 at 12:12 am
Thanks much. What could I provide that would be useful? The XML of the execution plan? Product has been discontinued and the vendor is no longer actively supporting it...
April 20, 2013 at 5:16 pm
Mainly I am interested in understanding why a select query would stay open and running for almost an entire week. CPU use rarely if ever goes above 5 to 10%....
April 20, 2013 at 4:40 pm
Adding the plan guide for that one query has changed the hit rate from 60% to 99%.
I don't know if it made a performance difference though because the query plan...
April 1, 2013 at 12:58 pm
Hi everyone. I added a plan guide.
DECLARE @stmt nvarchar(max);
DECLARE @params nvarchar(max);
EXEC sp_get_query_template
N'SELECT * FROM dbo.REFER WHERE USERID = 619 AND MSGID =...
March 31, 2013 at 5:04 pm
Viewing 15 posts - 76 through 90 (of 252 total)