Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

RA-01952: system privileges not granted to 'user

Status
Not open for further replies.

zircon06

Technical User
Jan 8, 2007
81
How to fix this error ! I'm using REVOKE SELECT ANY TABLE FROM USER and getting

ORA-01952: system privileges not granted to 'user

Thanks in advance

 
Hi,
Is 'USER' and actual user name??( I hope not)

the error says what the problem is:
Code:
ORA-01952 system privileges not granted to 'string'

Cause: A system privilege you tried to revoke was not granted to the user.

Action: Make sure the privileges you are trying to revoke are granted.



[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Hi zircon06,

You can see what privileges USER has before you revoke them, or verify he has what you're attempting to revoke.

select * from sys.DBA_TAB_PRIVS where OWNER='SCHEMA_NAME';

Good luck
DrD
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top