|
|
| Author |
Message |
COUNT
New User
Joined: 15 Jan 2008 Posts: 6 Location: kolkata
|
|
|
|
hi !
can anyone suggest me how to chage the MTMTCLAS of a dataset? |
|
| Back to top |
|
 |
References
|
|
 |
murmohk1
Senior Member
Joined: 29 Jun 2006 Posts: 1477 Location: Bangalore,India
|
|
|
|
Pritesh,
Speak with your storage team. |
|
| Back to top |
|
 |
COUNT
New User
Joined: 15 Jan 2008 Posts: 6 Location: kolkata
|
|
|
|
I think there is a command as 'ALter \ mgmtclas(dataset)' but i am not able to use it. can any one suggest me how to use this command?
| murmohk1 wrote: |
Pritesh,
Speak with your storage team. |
|
|
| Back to top |
|
 |
Anuj D.
Global Moderator
Joined: 22 Apr 2006 Posts: 2215 Location: Phoenix, AZ
|
|
|
|
Hi,
Assuming that you have the RACF (or other security product) authority to do this, something like below should work -
| Code: |
/*REXX */
ARG DSN
"ALTER "DSN" MANAGEMENTCLASS(NEWMGMT)" |
The management class name must be one of those predefined by the storage administrator at your site. |
|
| Back to top |
|
 |
Anuj D.
Global Moderator
Joined: 22 Apr 2006 Posts: 2215 Location: Phoenix, AZ
|
|
|
|
| COUNT wrote: |
| I think there is a command as 'ALter \ mgmtclas |
IDCAMS ALTER ? |
|
| Back to top |
|
 |
0d311
Active User
Joined: 17 Jun 2007 Posts: 53 Location: manila
|
|
|
|
| COUNT wrote: |
| I think there is a command as 'ALter \ mgmtclas(dataset)' |
I'm not sure if it's site specific... as a line command...
ALTER / MGMTCLAS(NEWMCLAS)
but
ALTER 'DATASET.NAME' MGMTCLAS(NEWMCLAS)
works  |
|
| Back to top |
|
 |
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 3541 Location: Brussels once more ...
|
|
|
|
As a storage person I would recommend that you first have a word with your friendly, sociable and helpful storage team before doing this.
1) MGMTCLAS definitions are set up for a purpose, and if you wish to deviate from that purpose / standard it is advisable to refer the matter to the storage team, as many like myself will merely delete a users dataset where the user has deemed to change the MGMTCLAS without informing me. See below.
2) Changes via IDCAMS to the MGMTCLAS may cause errors / problems in HSM housekeeping which will need to be investigated and corrected by the storage team, who tend to get a little upset at doing this because someone has deemed to change the MGMTCLAS on a whim. |
|
| Back to top |
|
 |
ofer71
Global Moderator
Joined: 27 Dec 2005 Posts: 1954 Location: Israel
|
|
|
|
Od311 -
When issuing a command from 3.4, the "/" sign stands for the dataset name.
O. |
|
| Back to top |
|
 |
|
|