cancel
Showing results for 
Search instead for 
Did you mean: 

How to give a grant any database object or any table to any user ??

Former Member
0 Kudos

how to give a grant any database object or any table to any user ??

Accepted Solutions (0)

Answers (2)

Answers (2)

pikakala_sebastian
Participant
0 Kudos

Check what access the existing SIDADM & ORASID or ant existing user has

Example

select granted_role from dba_role_privs where grantee = 'OPS$SIDADM';

select granted_role from dba_role_privs where grantee = 'OPS$ORASID';


grant connect, resource, sapdba to OPS$SIDADM;

grant connect, resource, sapdba to OPS$ORASID;

Hope this helps

Regards,

Sebastian

DellSC
Active Contributor
0 Kudos

That's if you're using Oracle.  If you're connecting to another database, you would have to use different syntax.  In either case, you need to work with your DBA to handle this.

-Dell

former_member185603
Active Contributor
0 Kudos

check with your DBA. Is it for DB access or BO access?

Former Member
0 Kudos

it's DB access.