Viewing 4 posts - 1 through 5 (of 5 total)
I want to see the historical data and who has changed the data.
April 27, 2012 at 7:23 pm
Hi GilaMaster,
Thanks for the help.
Can you please let me know what is the exact problem.
Which statement deadlock is being created on? (Select or Update)
and which table is causing deadlock?
Thanks &...
February 6, 2012 at 6:33 am
there is no Primary Key, No Index on any table
February 6, 2012 at 6:18 am
Hi,
Please Find the Needed Info :
CREATE PROCEDURE [dbo].[UpdateMailMergeStatus]
AS
BEGIN
Update MailMergeFile set MailMergeFile.Status=4,StatusUpdatedOn=CURRENT_TIMESTAMP
where MailMergeFile.Status=3
And
0=(select COUNT(*) from MailMergeWorkItem
where MailMergeWorkItem.MailMergeID=MailMergeFile.MailMergeID
and MailMergeWorkItem.Status!=3);
update MailMerge set IsMailMerged='True', MergeStatusID=2, CompletedDate=CURRENT_TIMESTAMP
where MailMerge.IsMailMerged='False'
and 0 =...
February 6, 2012 at 5:57 am
Viewing 4 posts - 1 through 5 (of 5 total)