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

Password protect a PDS


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

New User


Joined: 12 Apr 2005
Posts: 64

PostPosted: Fri May 06, 2005 3:14 pm
Reply with quote

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
View user's profile Send private message
somasundaran_k

Active User


Joined: 03 Jun 2003
Posts: 134

PostPosted: Fri May 06, 2005 9:10 pm
Reply with quote

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.
ibmmainframes.com/viewtopic.php?t=1915&highlight=addsd

hth
-Som
Back to top
View user's profile Send private message
ankyhunk

Moderator


Joined: 05 May 2005
Posts: 98
Location: Navi Mumbai, India

PostPosted: Mon May 09, 2005 10:02 am
Reply with quote

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
View user's profile Send private message
gnagakishore

New User


Joined: 26 Mar 2005
Posts: 25
Location: Hyderabad

PostPosted: Mon May 09, 2005 10:06 pm
Reply with quote

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
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 - connect with certificate, no pa... JCL & VSAM 1
No new posts Random Password (in string format) ge... COBOL Programming 10
No new posts REST API call - username and password... All Other Mainframe Topics 1
No new posts Need help in Finding who changed the ... JCL & VSAM 6
No new posts How to transfer file password protect... TSO/ISPF 9
Search our Forums:

Back to Top