0
如何在不帶光標的情況下編寫以下sp?更重要的是它沒有給我期望的輸出。我沒有寫這個,我試圖解釋這是什麼問題。不帶遊標的存儲過程
ALTER PROCEDURE [dbo].[AccreditationExpiryCheck]
AS
BEGIN
SET NOCOUNT ON;
declare @taskTypeId int = 19 -- Accreditations, automated
declare @firstActionTypeId int = 23 -- Accreditation expiring
declare @nextActionTypeId int = 3 -- Call company
declare @companyId int
declare @accreditationId int
declare @comment nvarchar(max) = N' accreditation for this company has expired.'
-- find all companies and accreditations expiring
declare companies cursor local forward_only read_only for
select c.Company_Id, a.Accred_ID
from COMPANY c
inner join MEMBERSHIP m on c.Company_ID = m.Company_ID
inner join ACCREDITATION a on c.Company_ID = a.Company_ID
where
-- Accreditation expired yesterday
cast(a.Accred_ExpDate as DATE) = cast(DATEADD(DAY, -1, GETDATE()) as DATE)
and m.IsMember_Ind = 1
and (c.HQ_ID IS NULL OR c.HQ_ID = c.Company_ID) -- FB4640: this isn't a 'team' co (with an HQ)
-- and there is no action of this type created within 1 day
-- of the expiry date
and not exists (
select * from TaskAction ta where
ta.FirstActionTypeId = @firstActionTypeId and
ta.TaskTypeId = @taskTypeId and
ta.TaskCreatedOn BETWEEN a.Accred_ExpDate AND DATEADD(DAY, 1, a.Accred_ExpDate) and
ta.EntityId = c.Company_ID and
ta.EntityTypeId = 1)
open companies
fetch next from companies into @companyId, @accreditationId
declare @title nvarchar(max) =
(select AccredType_Name from ACCREDITATION_TYPE at
inner join ACCREDITATION a on at.AccredType_ID = a.AccredType_ID
where a.Accred_ID = @accreditationId)
declare @comment2 nvarchar(max) = isnull(@title, '') + ' accreditation for this company has expired.'
while @@FETCH_STATUS = 0
begin
exec CreateSystemTask
@taskTypeId,
@firstActionTypeId,
@nextActionTypeId,
@companyid,
@comment2,
@title
fetch next from companies into @companyId,@accreditationId
end
close companies
deallocate companies
END
以上來自上述sp的select語句給了我正確的數據集,但循環的遊標給了我不同的輸出。
select c.Company_Id, a.Accred_ID
from COMPANY c
inner join MEMBERSHIP m on c.Company_ID = m.Company_ID
inner join ACCREDITATION a on c.Company_ID = a.Company_ID
where
-- Accreditation expired yesterday
cast(a.Accred_ExpDate as DATE) = cast(DATEADD(DAY, -1, GETDATE()) as DATE)
and m.IsMember_Ind = 1
and (c.HQ_ID IS NULL OR c.HQ_ID = c.Company_ID) -- FB4640: this isn't a 'team' co (with an HQ)
-- and there is no action of this type created within 1 day
-- of the expiry date
and not exists (
select * from TaskAction ta where
ta.FirstActionTypeId = @firstActionTypeId and
ta.TaskTypeId = @taskTypeId and
ta.TaskCreatedOn BETWEEN a.Accred_ExpDate AND DATEADD(DAY, 1, a.Accred_ExpDate) and
ta.EntityId = c.Company_ID and
ta.EntityTypeId = 1)
絆腳石將是循環(CreateSystemTask)內執行的進程內。您需要修改此PROC以使用一組輸入,例如通過使用表值參數。 – StuartLC 2012-08-16 08:28:30
你能舉個例子嗎? – Joshua 2012-08-16 08:29:36
在這裏發佈的答案http://stackoverflow.com/questions/11983455/writing-the-stored-procedure-without-cursor/11991156#11991156 – Justin 2012-08-16 16:13:01