Viewing 15 posts - 31 through 45 (of 265 total)
Attaching the table structure and indexes on deadlock related tables just to complete information....
USE [Lightyear]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[dms_topic_entry](
[subscriber_id] [numeric](19, 0) NOT NULL,
[msg_id] [numeric](19, 0) NOT NULL,
[delivery_date] [numeric](19,...
February 4, 2010 at 2:33 pm
sam rebus (2/3/2010)
February 4, 2010 at 1:15 pm
CirquedeSQLeil (2/3/2010)
carloparcon (2/3/2010)
the bigger in difftime is 16160, if i upgrade to 4gb is it possible solve my problem?
More than likely not. As Jeff and Elliott said - it...
February 4, 2010 at 1:01 pm
Now this is crazy one I am lost whats happening here...
Here's the question why 944 has exclusive lock on dms_topic_msg_idx here its just doing an update on another table(dms_msg) completely...
February 4, 2010 at 10:37 am
GilaMonster (2/4/2010)
Prakash Heda (2/3/2010)
though there are scenerio where many columns are in select clause, making covering index too big or crossing character limit...
There's no character limit to included columns in...
February 4, 2010 at 9:48 am
timscronin (1/20/2010)
Thanks for the feedback, as far as getting help, I looked in the foxhole an I am all that is here, no money = self-learn and self-help
This is exactly...
February 3, 2010 at 8:29 pm
I suspect you are using some process which is using nay extended procedures or clr ones causing memory leak
or
Have a external backup utility like veritas or litespeed purging memory
or...
February 3, 2010 at 8:13 pm
Every counter has its own guidelines for thresholds, though i would suggest to see the trend and define a baseline for acceptable threshold...even what is suggested online may not exactly...
February 3, 2010 at 8:08 pm
Quite confusing what exactly is the problem, I would say you need to explain it better to get right help...
Are you saying that after cleaning buffers first time procedure run...
February 3, 2010 at 8:01 pm
One of the simplest way to load data is to store in CSV format and then use openrowset to read it
Though you need to create a schema file for the...
February 3, 2010 at 7:52 pm
Since its happening at 00 and 12 hours, my best guess is there could be a backup job (Ideally that should be an external utility like litespeed) running that time...
February 3, 2010 at 7:30 pm
There are various things to look here though I will first try to see whats taking the memory so lets try this....
Run below statement, it will give you exactly what...
February 3, 2010 at 7:23 pm
GilaMonster (2/3/2010)
What indexes exist on the table dms_topic_entry? If this is a key-lookup deadlock (as I suspect) then simply widening the index to be covering will fix this completely.
Right, for...
February 3, 2010 at 5:00 pm
Michael Valentine Jones (2/2/2010)
February 3, 2010 at 4:58 pm
try this...
declare @command1 varchar(8000)
select @command1 =
'
IF ''@'' ''master'' AND ''@'' ''model'' AND ''@'' ''msdb'' AND ''@'' ''tempdb''
begin
use [@] execute sp_MSForEachTable ''print ''''?'''' ''
end
'
exec...
August 10, 2009 at 8:12 pm
Viewing 15 posts - 31 through 45 (of 265 total)