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

jcl for creating vsam ksds file


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

New User


Joined: 31 Jan 2007
Posts: 27
Location: virginia

PostPosted: Sat Feb 10, 2007 12:42 am
Reply with quote

hi,

can someone please give me the jcl steps to delete a vsam ksds file and then create it.

thanks & regards
vamshi
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: Sat Feb 10, 2007 12:52 am
Reply with quote

Hello,

You'll need to check and see what else you need to add as well as change parameters for the file you're working with. If this is for an existing file, you'll need to make "this" run look like "that" file or the programs that reference it will not work.
Code:

//DELDEF01 EXEC PGM=IDCAMS                       
//SYSPRINT DD SYSOUT=*                           
//SYSIN    DD *                                   
 DELETE your.cluster.dsn PURGE                   
 DEFINE CLUSTER                           -       
   (NAME(your.cluster.dsn)               -       
    SPEED                                 -       
    DATACLASS(DCDFAULT)                   -       
    TO(99365)                             -       
    SHAREOPTIONS(3 3)                     -       
    UNIQUE)                               -       
 DATA                                     -       
   (NAME(your.data.dsn)                   -       
    CYLINDERS(600 300)                    -       
    CONTROLINTERVALSIZE(8192)             -       
    RECORDSIZE(700 11578)                 -       
    KEYS(12 0)                            -       
    FREESPACE(0 5))                       -       
 INDEX (NAME(your.indx.dsn) REPLICATE IMBED) 


You will want to use the IDCAMS manual for any parameters you are not sure of.
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 Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
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
Search our Forums:

Back to Top