If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > error calling procedure

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-10-06, 05:08
nelapsi nelapsi is offline
Registered User
 
Join Date: Dec 2004
Posts: 43
error calling procedure

DB2 v7 on Mainframe.
I have procedure:
Code:
create procedure lasrProc.updChNum(in iOrgId integer)
language sql
modifies sql data
no wlm environment
    update lasr_org.organisations outerO
        set childrennum = (select count(id) from lasr_org.organisations innerO where innerO.parentId = outerO.id)
        where id = iOrgId
but when a call it via
Code:
call lasrProc.updChNum(123)
I get sql error SQLSTATE 22503 SQLCODE -188
What's wrong?
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On