(1) what is the error you get ? its hard toguess unless you give us complete infoCreate PROCEDURE UpdRequestRecordFwd
@.oldITIDint ,
@.newITID int
AS
Declare @.RRID int
Declare @.APID int
Declare crReqRec cursor for
select RRID from RequestRecords where ITID = @.oldITID
open crReqRec
fetch next from crReqRec
into
@.RRID
while @.@.fetch_status = 0
BeginUpdate RequestRecords
set ITID = @.newITID
where RRID = @.RRIDFETCH NEXT FROM crReqRec
into
@.RRID
endclose crReqRec
deallocate crReqRecGO
(2) for what you are doing above you dont seem to need a cursor.
Update RequestRecords set ITID = @.newITID where RRID = @.RRIDwould work just fine without any cursor..unless you are doing other stuff in between.
either way, you need to give more details.
hth|||(1) I am not getting any error. It's just won't update
(2) I am have multiple RRID's (unique primary key) with one ITID. I want all the RRID's with this ITID to be replaced with the new ITID returned.
I removed the fetch as you suggested... still doesn't work..
Create PROCEDURE UpdRequestRecordFwd
@.oldITIDint ,
@.newITID int
AS
Declare @.RRID int
set @.RRID = (select RRID from RequestRecords where ITID = @.oldITID and RRStatus = 'IA' and APID is null)
Update RequestRecords
set ITID = @.newITID
where RRID = @.RRID
Go|||if you just need to update ITID's then how do the RRID's come into picture...
see if this helps :
Create PROCEDURE UpdRequestRecordFwd
@.oldITID int ,
@.newITID int
ASUpdate RequestRecords set ITID = @.newITID where ITID = @.oldITID
Go
hth|||I do appreciate your help but it was my mistake, permission to execute was not checked. Thank you for your time.
No comments:
Post a Comment