|
|
| Author |
Message |
andycool
Active User
Joined: 12 Apr 2005 Posts: 65
|
|
|
|
Hi Guys,
1. I want to know is it possible to password protect a PDS or a dataset ?
2. I have a PDS containing some vital jobs, i wish to restrict its access only to some of the TSO ids. Is it possible to do so?
Please let me know,
Thanks. |
|
| Back to top |
|
 |
References
|
|
 |
somasundaran_k
Active User
Joined: 03 Jun 2003 Posts: 141
|
|
|
|
Andy
| Quote: |
1. I want to know is it possible to password protect a PDS or a dataset ?
|
Password protection for dataset is rarely used in mainfrmes and it is not advisable.Also it may not be supported or will be prohibited in some shops.
Also if you are working in a client's mainframe my advice is do not go for it. But for your information there is TSO command available.
TSO PROTECT or give TSO HELP to get the complete list.
| Quote: |
2. I have a PDS containing some vital jobs, i wish to restrict its access only to some of the TSO ids. Is it possible to do so?
|
This is possible. Check for ADDSD and PERMIT.
http://ibmmainframes.com/viewtopic.php?t=1915&highlight=addsd
hth
-Som |
|
| Back to top |
|
 |
ankyhunk
Moderator
Joined: 05 May 2005 Posts: 102 Location: Navi Mumbai, India
|
|
|
|
Hope the following JCL is useful -
//REPLPASS JOB ...
//STEP1 EXEC PGM=IEHPROGM,PARM='NOPRINT'
//SYSPRINT DD SYSOUT=A
//DD1 DD UNIT=disk,VOLUME=SER=111111,DISP=OLD
//DD2 DD VOLUME=(PRIVATE,SER=(222222,333333)),
// UNIT=(disk,,DEFER),DISP=OLD
//SYSIN DD *
LIST DSNAME=A.B.C,PASWORD1=ABLE
REPLACE DSNAME=A.B.C,PASWORD1=ABLE,PASWORD2=ABLE,TYPE=3,
VOL=disk=(222222,333333),
DATA='NO SECONDARIES; ASSIGNED TO DEPT 31'
/*
The utility control statements are discussed below:
? LIST specifies that the access counter, protection mode, and user data from the entry for password ABLE
are listed. Listing the entry permits the content of the access counter to be recorded before the counter is
reset to zero by the REPLACE statement.
? REPLACE specifies that the protection mode of password ABLE is to be changed to allow both read and
write access and that the protection status of the data set is changed to write-only protection. The VOL
parameter is required because the protection status of the data set is changed and the data set, in this
example, is not cataloged. Because this is a control password, the CPASWORD parameter is not required. |
|
| Back to top |
|
 |
gnagakishore
New User
Joined: 26 Mar 2005 Posts: 25 Location: Hyderabad
|
|
|
|
IF IT IS A VSAM DATASET , then we can protect it by using
INHIBIT COMMAND IN COMBINATION WITH ALTER.
if it is a pds which is created by option 3.2 a then there will be an
option for password protection. |
|
| Back to top |
|
 |
|
|
|