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

parameterizing File attributes


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
tssnvrk

New User


Joined: 13 Dec 2004
Posts: 4
Location: Bangalore

PostPosted: Thu Sep 28, 2006 12:42 pm
Reply with quote

Hi
My Name is Ramakrishna.,I want some suggestion on setting file attributes
like..
I am Extracting file as input and i have to find the file attributes like
RECFM, LRECL and BLKSIZE and pass the same attributes in next-step so that for each time no need to change DCB parameter

can any one help with example it will be a great help for me

Regards
Ramakrishna
Back to top
View user's profile Send private message
shreevamsi

Active User


Joined: 23 Feb 2006
Posts: 305
Location: Hyderabad,India

PostPosted: Thu Sep 28, 2006 1:53 pm
Reply with quote

hi Ramakrishna,

You can use 'LIKE' parameter as DSB paramenter to avoid the repetition of the same RECFM, LRECL and BLKSIZE.

For example:
//NEWDD DD DSNAME=XXXX.XXXX.XXXX,
LIKE=AAAA.AAAA,DISP=(NEW,KEEP)

Teh new DSN XXXX.XXXX.XXXX will have the same DCG parameters as AAAA.AAAA.

~Vamsi
Back to top
View user's profile Send private message
surya_pathaus

Active User


Joined: 28 Aug 2006
Posts: 110

PostPosted: Thu Sep 28, 2006 2:29 pm
Reply with quote

Hi Ramakrishna,

You can do like this also.

//Step01 your Extract step
//DD1 DD DSN=Extracted DATASET
//*
//STEP02 XXXXX
//DD2 DD DSN=YOUR NEW DATASET,
// DISP=(NEW,CATLG,DELETE),
// SPACE=..........,
// DCB=Extracted DATASET
//*

In DCB parameter mention the DSN name which you used in Extract.
Back to top
View user's profile Send private message
vishal_a

New User


Joined: 24 May 2005
Posts: 45
Location: Noida

PostPosted: Thu Sep 28, 2006 3:33 pm
Reply with quote

Hi ,

Another way is to use referback.

for ex: *.stepname

Thanks
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 1
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top