- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Add an additional rights to a VMS account
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 03:16 AM
тАО10-04-2006 03:16 AM
I need to give addtional rights to an existing VMS account with Identifier Value Attributes
ORA_SGA %X80010002
ORA_DBA %X80010001
I really need to know the commands to do this modifications.
Thank you in advance.
Jorge
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 03:41 AM
тАО10-04-2006 03:41 AM
Solution- The specific values are NOT critial.
Anway... Just ask Oracle!
Specically, just type in ORA_SGA at the METALINK search prompt.
All you need to know, and some more!
It will find for example:
VMS: QUICK START GUIDE: Alpha Open VMS - Oracle 9.0.1.0.0
Doc ID: Note:174248.1
Which reads:
"---3. Add Identifiers in the Rightslist using the SYSUAF Utility.
Verify ORA_SGA is added to the SYSUAF Rightslist. This identifier
is NOT granted to any users.
Ex: Add/identifier ORA_SGA"
And searching for ORA_DBA finds:
" How to Add and Grant Privileges:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1) Add a process rights identifier, i.e.:
$ SET DEFAULT SYS$SYSTEM:
$ RUN AUTHORIZE
UAF> ADD/IDENTIFIER ORA_DBA
%UAF-I-RDBADDMSG, identifier ORA_DBA value %X80010008 added to rights database
2) Grant the process rights identifier, i.e.:
UAF>GRANT/IDENTIFIER ORA_DBA
where
Good luck,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 03:49 AM
тАО10-04-2006 03:49 AM
Re: Add an additional rights to a VMS account
use
$ MC AUTHORIZE
UAF> GRANT/IDENTIFIER %X80010002 ORA_SGA
UAF> GRANT/IDENTIFIER %X80010001 ORA_SGA
and to remove
UAF> REVOKE/IDENTIFIER %X80010002 ORA_SGA
UAF> REVOKE/IDENTIFIER %X80010001 ORA_SGA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 06:24 AM
тАО10-04-2006 06:24 AM
Re: Add an additional rights to a VMS account
UAF> GRANT/IDENTIFIER %X80010002 ORA_SGA
%UAF-E-GRANTERR, unable to grant identifier %X80010002 to ORA_SGA
-SYSTEM-F-IVIDENT, invalid identifier format
UAF> GRANT/IDENTIFIER %X80010001 ORA_SGA
%UAF-E-GRANTERR, unable to grant identifier %X80010001 to ORA_SGA
-SYSTEM-F-IVIDENT, invalid identifier format
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 06:47 AM
тАО10-04-2006 06:47 AM
Re: Add an additional rights to a VMS account
READ the ORACLE doc / metalinks
READ the error message
USE the HELP in VMS.
$MCR AUTHORIZE
UAF> HELP GRANT
Regards,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 08:49 PM
тАО10-04-2006 08:49 PM
Re: Add an additional rights to a VMS account
read Hein message
UAF>help grant/id
Parameters
id-name
Specifies the identifier name. The identifier name is a string
of 1 to 31 alphanumeric characters that can contain underscores
and dollar signs. The name must contain at least one nonnumeric
character.
If you have defined ORA_SGA identifier, you can grant to a VMS account using:
UAF>grant/id ora_sga
Saludos.
Daniel.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 09:32 PM
тАО10-04-2006 09:32 PM
Re: Add an additional rights to a VMS account
if you use
$ pipe mc authorize show/ident/brief * | search sys$input %X80010002
this will bring up the identifier name
assigned to the value %X80010002
i.e
ADMIN %X80010002
then use
GRANT/IDENTIFIER ADMIN [100,113]
OR GRANT/IDENTIFIEr ADMIN CRAMER
where [100,113] is the UIC of the USER
where CRAMER is the name of the user
where ADMIN was the returned identifier name
in your case
GRANT/IDENTIFIER ADMIN ORA_SGA
Repeat the process for %X80010001 and
ORA_DBA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 10:50 PM
тАО10-04-2006 10:50 PM
Re: Add an additional rights to a VMS account
I beg to differ. Jorge should not focus on the number, but on the name. The system will hand out a number when the identifier is created. From then on, just use the name.
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-05-2006 07:19 AM
тАО10-05-2006 07:19 AM
Re: Add an additional rights to a VMS account
This is a perfect demonstration why I _HATE_ the
MC AUTHORIZE ADD/IDEN
without explicit /VALUE clause.
reasons:
- do it on 2 different systems.
BACKUP something from A to B trying to retain security by using /OWN=Original
... The _NUMERIC_ values are retained, but usually mean something different!
- merge two different system. (just see the various threads on the issue to get a feel of the relevance!) Ident values meaning different things on different systems? LOTS of "joy"!
- REMOVE an identifier. (any ACEs refering it are still there, now displaying the numeric value).
Some time later, ADD a (completely unrelated) identifier. The available value is re-used, and... any previoous ACEs refering yhat value happily apply for the new ident!
We ALWAYS create ident with /VALUE=IDENT=
For
We tend to not REMOVE idents (regrattably, not rigidly enough).
Merging systems now becomes easy, as is tranfer while maintaining ACLs.
But, it has to be set up so from the start.
hth
Proost.
Have one on me.
jpe