Author Topic: ARSEXOAM V9.5  (Read 2141 times)

Greg Ira

  • Full Member
  • ***
  • Posts: 240
    • View Profile
ARSEXOAM V9.5
« on: September 11, 2015, 07:47:42 AM »
Anyone else run into problems running ARSEXOAM on V9.5?   We migrated to 9.5 and now when I try to run ARSEXOAM it no longer recognizes the format of the ARSPARM.  No changes are described in the 9.5 manuals and it works fine in 8.5.
I get:
ARS5024I ARSEXOAM 9.5.0.2 invoked on 09/11/15 14:39:09
ARS5003I ODINSTANCE=OND05P
ARS5006I Unrecognized keyword:
ARS5003I ODUSER=ODADMIN
ARS5006I Unrecognized keyword:
ARS5003I ODUSERPW=password
ARS5006I Unrecognized keyword:
ARS5013I Control statements processing completed - RC=4 (X'00000004')
ARS5015I ODINSTANCE must be specified

Larry

  • Guest
Re: ARSEXOAM V9.5
« Reply #1 on: September 14, 2015, 09:20:27 AM »
Greg,  is it possible the parms are shifted?  What I mean is that when I test this

//ARSPARM  DD *       
  odinstance=ARCH950 
  oduser=ODV793       
  oduserpw=pw1 
  commitcnt=1         
  unloadmax=1         

I get this:

ARS5024I ARSEXOAM 9.5.0.3 invoked on 09/14/15 16:12:16                 
ARS5003I   odinstance=ARCH950                                         
ARS5003I   oduser=ODV793                                               
ARS5003I   oduserpw=********                                           
ARS5003I   commitcnt=1                                                 
ARS5003I   unloadmax=1                                                 
ARS5013I Control statements processing completed - RC=0 (X'00000000') 

But if I shift over the parms to column 1 like this:

//ARSPARM  DD *   
odinstance=ARCH950
oduser=ODV793     
oduserpw=fubars2a 
commitcnt=1       
unloadmax=1       

I get this:

ARS5003I odinstance=ARCH950                                         
ARS5006I Unrecognized keyword: 00110013                             
ARS5003I oduser=ODV793                                               
ARS5006I Unrecognized keyword: 00120006                             
ARS5003I oduserpw=fubars2a                                           
ARS5006I Unrecognized keyword: 00130013                             
ARS5003I commitcnt=1                                                 
ARS5006I Unrecognized keyword: 00140008                             
ARS5003I unloadmax=1                                                 
ARS5006I Unrecognized keyword: 00141008                             
ARS5013I Control statements processing completed - RC=4 (X'00000004')

Not exactly the same messages  you are getting (and I tested on 9.5.0.3) but close


Greg Ira

  • Full Member
  • ***
  • Posts: 240
    • View Profile
Re: ARSEXOAM V9.5
« Reply #2 on: September 15, 2015, 08:57:05 AM »
Yep, Thank Larry,
I did have to shift them over a column to the right.  I also noticed that in V8.5 I had to put the password in quotes but in V9.5 I had to remove the quotes.