Viewing 15 posts - 1 through 15 (of 36 total)
HanShi (7/17/2013)
Could you rewrite the delete statement to:
DELETE TOP (20) FROM [dbo].[ServerParametersInstance]
WHERE Expiration < @now
This will prevent the query to simultaneously read and delete from the same table.
Hi,
This has...
July 18, 2013 at 3:46 am
Thanks for the reply Chris.
I see what you mean, I've modified the query, the execution plans show a marked performance increase which is good.
Guess I'll just see what happens this...
July 17, 2013 at 3:51 am
HanShi (7/17/2013)
Could you rewrite the delete statement to:
DELETE TOP (20) FROM [dbo].[ServerParametersInstance]
WHERE Expiration < @now
This will prevent the query to simultaneously read and delete from the same table.
Hi,
Thanks...
July 17, 2013 at 2:54 am
Thanks for the reply.
You point on workload is valid.
Regards,
Nic
November 30, 2012 at 4:39 am
Hi,
Thanks for the SELECT.
I've picked out a time where the 'RESOURCE_MEMPHYSICAL_LOW' is raised in the ring buffer (process - 2, system 0) under the buffer type 'RING_BUFFER_RESOURCE_MONITOR'
I've then gone through...
November 30, 2012 at 2:45 am
GilaMonster (11/29/2012)
Nic-306421 (11/29/2012)
November 29, 2012 at 3:38 am
Hi,
This is where I have read about it;
Although re-reading it, my previous post was incorrect, I now take it to me;
IndicatorsProcess - 2 - This is the RESOURCE_MEMPHYSICAL_LOW...
November 29, 2012 at 3:02 am
Hi Gail,
Thanks for the response.
Regarding the machine, it has 3GB in it at the moment, this instance is set to 1GB max and there is another instance which is also...
November 29, 2012 at 2:35 am
Toreador (8/10/2012)
SQLPhil (8/10/2012)
It's one of those questions where you've got to re-read the answers several times before selecting.
and then select the wrong options anyway, even though you know...
August 10, 2012 at 3:43 am
"This is an opportunity to learn new/different thing and your answer will never be wrong if you read the related subject first. "
I dont think I would agree with that...
July 27, 2012 at 3:18 am
Hi,
Yes, I think you should be able to do this using a GROUP BY, if you are not familiar with that then there are loads of good examples on the...
June 18, 2012 at 6:52 am
Hi,
Managed to resolve this one.
Turned out to be a space after one of the SPN entries that was causing it to not be found and therefore go to NTLM.
Drop and...
June 18, 2012 at 6:38 am
Hi,
I'm not sure exactly what you are asking but I think you are refering to a 'GROUP BY', check out BOL and see if that's what you are after.
If not...
June 18, 2012 at 5:20 am
A great questions, got me thinking so well worth it.
Thank you.
April 17, 2012 at 4:39 am
Hi,
Perhaps I'm not understanding correctly, but you should be able to take your pick of;
Identity columns - Your table can increment itself automatically.
ROW_NUMBER - You can assign a row number...
February 17, 2012 at 3:24 am
Viewing 15 posts - 1 through 15 (of 36 total)