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

SAS program with Mainframe


IBM Mainframe Forums -> All Other Mainframe Topics
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
amit225394

New User


Joined: 07 Jan 2011
Posts: 3
Location: America

PostPosted: Fri Jan 07, 2011 8:26 pm
Reply with quote

Hi

I worked in SAS approximately 4 years in windows environment. Now I want to use SAS with mainframe. But I have no idea of mainframe. I just want to execute simple sas code in mainframe to get an idea.
I used below code:

Code:
//STEP   EXEC  SAS                                                   
//OUTFILE   DD  DSN=E147.TEST.PVS,                                   
//          DISP=(NEW,CATLG,DELETE),                                 
//          SPACE=(CYL,(1000,100)),DCB=(RECFM=FB,LRECL=300,BLKSIZE=0)
//SYSIN     DD  *                                                     
DATA OUTFILE.OUT;                                                     
  X = 5;                                                             
  Y = 10;                                                             
RUN;   


JCL is working fine. I write very simple sas datastep. After executing i am getting error "ERROR: Library OUTFILE is not in a valid format for access method SASE7.". Please help me how I can run the sas code in mainframe.
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Fri Jan 07, 2011 8:48 pm
Reply with quote

What is OUTFILE supposed to be, a flat file or SAS format dataset.

If it's a SAS dataset use RECM=FS,LRECL=27998,BLKSIZE=27998

Errrrrrrrrrrrrr, isn't that rather a large space allocarion for one observation icon_eek.gif
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Fri Jan 07, 2011 10:07 pm
Reply with quote

Hello and welcome to the forum,

I suspect you are not the first in your organization to run SAS on the mainframe.

Suggest you look at some process that already works and talk with whoever runs/supports this working process - then change your job accordingly.

As Expat mentions, that does appear to be a rather large space allocation. . .
Back to top
View user's profile Send private message
Phrzby Phil

Senior Member


Joined: 31 Oct 2006
Posts: 1042
Location: Richmond, Virginia

PostPosted: Sat Jan 08, 2011 9:13 pm
Reply with quote

Some installations have other JCL parameters for saslibs; that may or may not also set the LRECL for you.

Check on DATACLAS or MGMTCLAS.

As noted, check existing code to clone.
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 -> All Other Mainframe Topics

 


Similar Topics
Topic Forum Replies
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Using API Gateway from CICS program CICS 0
No new posts Mainframe openings in Techmahnidra fo... Mainframe Jobs 0
No new posts DB2 Event passed to the Application P... DB2 1
No new posts How to pass the PARM value to my targ... COBOL Programming 8
Search our Forums:

Back to Top