|
|
Archives of the TeradataForum
Message Posted: Thu, 24 May 2007 @ 13:55:26 GMT
Subj: | | Stored Procedure - 3927 Error |
|
From: | | Hassinger, Bill |
I am trying my first SP and am getting a "3927:Response Parcel requested a max byte count of less than 256" error.
Here is the script, I am using SQLAssistant. Can anyone give me a hint on how to proceed?
CREATE PROCEDURE xxxx.bh_test1()
BEGIN
FOR cur_ptr AS my_ptr
CURSOR FOR
SELECT CaseNumber
, ProgramID
, EffectiveDate
, DerivedEndDate
, RANKEffDt
FROM xxxx.DSpanLapse
order by 1,2,5
DO
SET tCN = cur_ptr.CaseNumber;
SET tPI = cur_ptr.ProgramID;
SET tED = cur_ptr.EffectiveDate;
SET tDED = cur_ptr.DerivedEndDate;
SET tRank = cur_ptr.RankEffDt;
INS INTO xxxx.bh_DSpanTST
VALUES (tCN, tPI, tED, tDED,tRank);
END FOR;
END;
THANKS
Bill H
| |