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

Accessing DB2 table using REXX


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

New User


Joined: 16 Jun 2008
Posts: 40
Location: bangalore

PostPosted: Thu Jun 19, 2008 3:07 pm
Reply with quote

Hi,
I am trying to access DB2 tables using REXX.

My program is :

*************************************************************

/* Rexx */
/* Access DB2 Tables */

/* Assign the query to a variable */

QUERYSQL = "SELECT USER_NAME FROM USER_DETAILS" ,
"WHERE EDIT_ACCESS='Y'"

Drop ResTable.

Cnt = 1

/* Check whether the DSNREXX environment is available */

'SUBCOM DSNREXX'

/* If not, then make it available */

IF RC THEN
DO
S_RC = RXSUBCOM('ADD','DSNREXX','DSNREXX')
END

/* Connect to the DB2 subsystem */

ADDRESS DSNREXX 'CONNECT' 'SubsystemName' /* eg: DBT2 */

/* Set the DSNREXX environment */

ADDRESS DSNREXX

/* Prepare the SQL statement */

"EXECSQL PREPARE S1 FROM :QUERYSQL"

************************************************************

The problem is with CONNECT statement.
When I execute it, i got the error msg : "Routine not found"

Can anyone please tell me what may went wrong with the statement ?
Back to top
View user's profile Send private message
Aaru

Senior Member


Joined: 03 Jul 2007
Posts: 1287
Location: Chennai, India

PostPosted: Thu Jun 19, 2008 4:02 pm
Reply with quote

ssk,

Quote:
Can anyone please tell me what may went wrong with the statement ?


The error message says it all. The connection has failed. Just check whether you have given the correct subsystem name.
Back to top
View user's profile Send private message
ofer71

Global Moderator


Joined: 27 Dec 2005
Posts: 2358
Location: Israel

PostPosted: Thu Jun 19, 2008 4:27 pm
Reply with quote

Or whether the REXX/DB2 feature was correctly installed (DB2 installation process).

O.
Back to top
View user's profile Send private message
ssk1711

New User


Joined: 16 Jun 2008
Posts: 40
Location: bangalore

PostPosted: Mon Jun 23, 2008 2:58 pm
Reply with quote

Thanks.
I have to contact my system administrator regarding this.
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 Compile Several JCL JOB Through one r... CLIST & REXX 4
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Load new table with Old unload - DB2 DB2 6
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
Search our Forums:

Back to Top