我有一个SQL查询,有时第一个语句中的IDENTITY
中的INSERT [Form]
值返回为NULL
,并导致批处理中的其余语句失败。
我包括了该过程的第二个块,以指示由于与表FK
上的Form
约束冲突而导致失败的地方
以前,它一直使用SCOPE_IDENTITY
,但是我将其更改为使用SQL Server的临时表和一个OUTPUT
子句,以查看它是否可以缓解问题,但没有缓解。
此过程是从ASP.NET Webforms应用程序中调用的,并且该调用是由在该应用程序中运行的Web API调用发起的。
以前,在进行Web API调用之前,它是由webforms应用程序中的click事件启动的。那时我会不时看到此错误。
随着对应用程序的越来越多的使用和越来越重的负载,这种情况似乎更经常发生。
我检查了一下,桌上没有触发的触发器。我想不出任何办法来复制或跟踪问题。
在大多数情况下,该过程可以正常运行,但有时却无法正常运行,我不确定为什么。有时,当用户尝试保存他们正在处理的内容时,我会连续多次看到该错误的日志。如果他们尝试了足够的时间,它似乎可以工作。
我已经研究过使用其他形式的身份检索,例如@@IDENTITY
,但这些形式无法满足我的需求。
有什么我想念的吗?
ALTER PROCEDURE [dbo].[IC_Note_UpdateForm]
@FormID int = -1 OUTPUT, @ConsultFormID int = -1 OUTPUT, @PatientSignature bit, @DSPSignature bit, @Editable bit, @Narrative nvarchar(MAX) = NULL, @SignificantIssues nvarchar(MAX), @UserID int, @DSPID int, @FormTypeID int, @ServiceID int, @ApptID int OUTPUT, @LocationID int, @LoggedInUser int, @PortalId int,@ClientNotes nvarchar(MAX)
WITH EXEC AS CALLER
AS
SET NOCOUNT ON;
--This is needed for whatever reason in order to get the correct date submitted. Using the function call inline causes weird stuff to happen
DECLARE @DateSubmitted DATETIME = dbo.GetLocalTime(default)
DECLARE @count int
--See if a record exists for the Form
SELECT @count = COUNT(FormId) FROM Form WHERE (formID = @FormID OR (apptID = @ApptID AND apptID >= 1))
if @count > 0 BEGIN
UPDATE dbo.Form SET
FormTypeID = @FormTypeID,
patientSignature = @PatientSignature,
dspSignature = @DSPSignature,
editable = @Editable,
dateSubmitted = @DateSubmitted
WHERE
formID = @FormID
IF @Editable = 0 BEGIN
exec IC_NoteAudit_Insert @FormId, @DSPID, 'SUBMITTED'
END ELSE BEGIN
exec IC_NoteAudit_Insert @FormID, @DSPID, 'UPDATED'
END
END ELSE BEGIN
DECLARE @tempForm TABLE (FormId int)
INSERT dbo.Form (
PortalId
,userID
,dspID
,dateSubmitted
,patientSignature
,dspSignature
,editable
,approved
,dateApproved
,rejected
,formTypeID
,paid
,billed
,serviceID
,apptID
) OUTPUT inserted.formId INTO @tempForm
VALUES (
@PortalId
,@UserID -- userID - int
,@DSPID -- dspID - int
,@DateSubmitted -- dateSubmitted - datetime
,@PatientSignature -- patientSignature - bit
,@DSPSignature -- dspSignature - bit
,@Editable -- editable - bit
,null -- approved - bit
,null -- dateApproved - datetime
,null -- rejected - bit
,@FormTypeID -- formTypeID - int
,0 -- paid - bit
,0 -- billed - bit
,@ServiceID -- serviceID - int
,@ApptID -- apptID - int
)
--This was SET @FormId = SCOPE_IDENTITY() before and had the same NULL FK constraint occur
SET @FormID = (SELECT TOP 1 FormId FROM @tempForm)
END
--Move these out of scope of the IDENTITY retrieval
IF @count = 0 BEGIN
exec IC_NoteAudit_Insert @formID, @DSPID, 'CREATED'
IF @Editable = 0 BEGIN
exec IC_NoteAudit_Insert @formID, @DSPID, 'SUBMITTED'
END
END
SELECT @count = COUNT(FormId) FROM ConsultForm WHERE formId = @FormID
IF @count > 0 BEGIN
--See if a row exists for the ConsultForm
UPDATE dbo.ConsultForm SET
narrative = @Narrative,
significantIssues = @SignificantIssues
WHERE
consultFormID = @ConsultFormID
AND formID = @FormID
END ELSE BEGIN
DECLARE @tempConsultForm TABLE (ConsultFormId int)
INSERT dbo.ConsultForm (
PortalId
,formID
,dateOfService
,timeIn
,timeOut
,narrative
,significantIssues
,locationOfService
) OUTPUT inserted.ConsultFormID INTO @tempConsultForm
VALUES (
@PortalId,
@FormID -- formID - int
,null -- dateOfService - datetime
,null -- timeIn - datetime
,null -- timeOut - datetime
,@Narrative -- narrative - nvarchar(MAX)
,@SignificantIssues -- significantIssues - nvarchar(MAX)
,null -- locationOfService - nvarchar(MAX)
)
/*** Failure with FK constraint happens here, @FormId is NULL ***/
SET @ConsultFormID = (SELECT TOP 1 ConsultFormId FROM @tempConsultForm)
END ````
答案 0 :(得分:0)
哪个版本的SQL似乎是SQL中的错误。您可以在SQL代码中使用RAISERROR来确保它是否是SQL本身的问题。