My preference is to understand how to do this from the TSO command line, and not with ISPF. I would also like to understand if a systems programmer needs to be involved for setting up the group first
On z/OS, using RACF, how do I give a number of people READ access to my dataset?
424 Views Asked by mike At
2
There are 2 best solutions below
3

One thing I don't see mentioned yet is the ability to grant "universal" access. This can come in handy to create data set profiles so access is automatically granted without having to create new profiles when new data sets are created.
For example: Perhaps there is a scenario where all the data sets matching a filter like BOB.SHARE.*.** should be "readable" by everyone. This can be accomplished with the UACC keyword in RACF when defining or altering a data set profile.
To add a new RACF profile:
ADDSD 'BOB.SHARE.*.**' UACC(READ)
To alter an existing RACF profile:
ALTDSD 'BOB.SHARE.*.**' UACC(READ)
UACC(READ)
could be changed to UACC(ALTER)
if desired!
Of course it should be mentioned that setting any kind of universal access must be carefully considered.
First you have to create a RACF dataset profile to cover the dataset in question if it doesn't already exist using ADDSD:
Where userid1.JCL.CNTL is the dataset you want to give access to.
Note that this command will create a discrete profile, unless you add the optional
GEN
(for generic) to theADDSD
. Discrete profiles only ever protect a single data set, and more importantly, discrete profiles are deleted when the data set they protect is deleted. This is mostly unwanted, so most always it is better to create a generic profile even if it shall protect a single data set only.Also, you should decide what access level you want allow to the "universe" by specifying the
UACC
keyword. The default forUACC
depends on your current connect group. You may disallow access to anyone, except the ones youPERMIT
access by specifyingUACC(NONE)
Then PERMIT access to this newly created profile.
Where userid1 is your userid and userid2 is your collaborator. Under typical conventions you will be allowed to have control of the permissions of datasets under your high level qualifier. You can also create generic profiles to give access to multiple datasets:
You can also permit a group of users to your datasets by entering a group name in the ID field:
It's likely you'll need help from a systems programmer if you need a new group created. To add a user to a group you need the CONNECT command.
You need AUTH=CONNECT authority to add (connect) new users to the group. You can check if you have connect authority to the groups you have access to by issuing the LISTUSER command:
Where userid1 is your userid. The output will be similar to:
But you need AUTH=JOIN authority in a superior group in order to use the ADDGROUP command to create a new subordinate group. Groups in RACF are in a hierarchical structure and you'll need the appropriate authority in a superior group.