IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Query on stored procedure


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
nkothako

Active User


Joined: 26 Nov 2008
Posts: 125
Location: chennai

PostPosted: Tue May 19, 2009 8:27 am
Reply with quote

1) Currently in my cobol+Db2 pgms, we are using simple sql statments, in this case coding stored procedures are suggestable are not.

Code:
ex : EXEC SQL                               
         SELECT  DISTINCT CURRENT TIMESTAMP 
              INTO :WS-CURR-TIMESTAMP           
              FROM  WW_INDUSTRY                 
     END-EXEC.                             

    EXEC SQL                                   
          UPDATE  WW_COMMIT_DATA                   
                        SET  DESCRIPTION_TX = :DESCRIPTION-TX
                        WHERE  APPLICATION_ID = :APPLICATION-ID
                AND  PARAMETER_ID   = :PARAMETER-ID   
    END-EXEC.   


for the above statements coding a stored procedure are suggestable

2) Can we replace with a stored procedure instead of a cursor in cobol+DB2 pgm. which is most efficient to use. in this
kindly let me know how to receive more than one result from SP to calling cobol pgm.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Tue May 19, 2009 2:38 pm
Reply with quote

1.
Code:
EXEC SQL                               
         SELECT  DISTINCT CURRENT TIMESTAMP
              INTO :WS-CURR-TIMESTAMP           
              FROM  WW_INDUSTRY                 
     END-EXEC.           


the above makes no sense. there is only one CURRENT_TIMESTAMP during an SQL call. CURRENT_TIMESTAMP belongs to DB2, not in any of your tables.

2. Here are some links to Redbooks for Stored Procedures:
DB2 Vsn9 for z/OS Stored Procedures: thru the CALL and Beyond
DB2 for z/OS Stored Procedures: thru the CALL and Beyond
Any Application Programmers Guide, Appendix A, show format for calling stored procedure from cobol module.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
No new posts Issue with EXEC CICS QUERY SECURITY c... CICS 6
Search our Forums:

Back to Top