Viewing 15 posts - 496 through 510 (of 758 total)
GilaMonster (7/23/2012)
Yes. Either a index seek + key lookup or a clustered index scan, depending on the % of rows that the query will retrieve
Thanks
I have created that table twice,...
July 24, 2012 at 12:15 am
GilaMonster (7/23/2012)
SQLSACT (7/23/2012)
July 23, 2012 at 8:34 am
GilaMonster (7/23/2012)
The clustered index doesn't do the lookups. It's the target of the lookups. That tells you how many lookups were done to the clustered index.
Thanks
I thought that a Lookup...
July 23, 2012 at 8:16 am
😎
Grant Fritchey (7/20/2012)
SQLSACT (7/20/2012)
Grant Fritchey (7/20/2012)
July 20, 2012 at 5:28 am
Grant Fritchey (7/20/2012)
July 20, 2012 at 5:09 am
SQLDBA360 (7/18/2012)
July 18, 2012 at 4:09 am
SQLDBA360 (7/18/2012)
that DMV will only show current information, to capture blocking information the only thing I can think of is sp_blocker_ps008
I understand that it only shows current information
Will that DMV...
July 18, 2012 at 4:01 am
Suresh B. (7/18/2012)
BOL:NULL when mode = LIMITED.
Thanks
July 18, 2012 at 12:57 am
OTF (7/17/2012)
I would use a Powershell Script for this. Flexible and easy to change, if required.If you need help with it let us know.
Thanks
I definately need help with this
Is...
July 17, 2012 at 1:20 pm
Lynn Pettis (7/16/2012)
SQLSACT (7/16/2012)
Lynn Pettis (7/15/2012)
July 16, 2012 at 8:59 am
Lynn Pettis (7/15/2012)
Also,...
July 16, 2012 at 8:46 am
Lynn Pettis (7/14/2012)
July 15, 2012 at 3:06 am
Reji PR (7/14/2012)
why don't you use a while loop here?.
select @maxrow = max(id) from #T
SET @row = 1
While (@row < @maxrow )
Begin
select x, y,......
July 14, 2012 at 11:47 am
bitbucket-25253 (7/14/2012)
CREATE TABLE #T(Id INT IDENTITY(1,1),Tname VARCHAR(100),NumRows INT,RowsMod INT,Rspace INT, Uspace INT, StatDate DATETIME)
INSERT INTO #T(Tname,NumRows,RowsMod,Rspace,Uspace,StatDate)
SELECT --...
July 14, 2012 at 8:51 am
GilaMonster (7/12/2012)
Given it's name, what do you think? "waiting tasks"Also, what does Books Online say?
Apologies
I realised the mootness of the question the moment I hit "Post Quoted Reply"
Thanks
July 12, 2012 at 11:28 am
Viewing 15 posts - 496 through 510 (of 758 total)