View previous topic :: View next topic
|
Author |
Message |
cmohanraj
New User
Joined: 04 Apr 2005 Posts: 15
|
|
|
|
how can i make a VSAM data set Read only? |
|
Back to top |
|
|
learnmf
Active User
Joined: 14 Mar 2005 Posts: 123
|
|
|
|
Through ALTER + INHIBIT COMMAND we can make it REad only |
|
Back to top |
|
|
cmohanraj
New User
Joined: 04 Apr 2005 Posts: 15
|
|
|
|
can you explain it detaily? (if possible with codding) |
|
Back to top |
|
|
learnmf
Active User
Joined: 14 Mar 2005 Posts: 123
|
|
|
|
By Using INHIBIT option along with ALTER command.
e.g.,
//STEP1 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
ALTER
COMPANY.KSDS.DATA
INHIBIT
ALTER
COMPANY.KSDS.DATA
INHIBIT
/*
// |
|
Back to top |
|
|
cmohanraj
New User
Joined: 04 Apr 2005 Posts: 15
|
|
|
|
thank you very much |
|
Back to top |
|
|
|