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

DRL1SQLX - DRL1005E - REXX variable cannot be set


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
satheeshkamal

New User


Joined: 09 Jan 2007
Posts: 28
Location: Chennai

PostPosted: Tue Jun 03, 2008 2:21 pm
Reply with quote

Hi guys,

I am current facing problems in executing an SQL using DRL1SQLX.

Here is my code:

Code:

DB2SUBS  = "DSND"                               
Drop  Owner1.                                   
   
Owner1. = ' '                                   
                                                 
SQLSTMT = "SELECT DISTINCT(OWNER)             ",
          "FROM SYSIBM.SYSTABSTATS            ",
          "WHERE OWNER LIKE 'DATAB%'           ",
          "FETCH FIRST 10 ROWS ONLY           " 
                                                 
SQLSTMT = Space(SQLSTMT,1)                       
say "SQLSTMT" SQLSTMT                           
SQLSTEM = "Owner1"                               
SQLMAX  = 10             
                     
Call DRL1SQLX "INIT"                                                 

Call DRL1SQLX SQLSTMT                           

Call DRL1SQLX  "TERM"


The error that displays from SQLMSG stem variable is
Code:

DRL1005E The REXX variable Owner1.NAME.0 could not be
set.                                                                         


SQL code returned after DRL1SQLX statement is 0 and the variable "Result" is set by DRL1SQLX to 16.

The above SQL query is working fine when executing normally using Fileaid/DB2.

I have executed a query on a different table in the same REXX code. That is perfectly working fine. I am wondering why this particular query is not working fine. Could anybody help out please?
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Tue Jun 03, 2008 2:47 pm
Reply with quote

try:
Code:

Drop  Owner1.                                   
Owner1. = ' '   
Owner1.0 = 0       <<<<<<<<<add this line
Back to top
View user's profile Send private message
satheeshkamal

New User


Joined: 09 Jan 2007
Posts: 28
Location: Chennai

PostPosted: Tue Jun 03, 2008 3:36 pm
Reply with quote

Hi Dick,

Tried your suggestion...But, encountered the same error... icon_sad.gif
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 -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
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 Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
No new posts run rexx code with jcl CLIST & REXX 15
Search our Forums:

Back to Top