Hi experts!
I need get data from SYS.P_USERS_ table with limited user.
What I did:
Logon in system as SYSTEM user and created user TEST1 with System Privileges CATALOG READ.
Logon in system as TEST1 user and input SQL query:
SELECT NAME from SYS.P_USERS_
Get error:
Could not execute 'SELECT NAME from SYS.P_USERS_' in 2 ms 24 µs .
SAP DBTech JDBC: [258]: insufficient privilege: Not authorized
Ok, go to TEST1 user properties as SYSTEM user and trying add SELECT privileges for 'P_USERS_ (SYS)'.
Get error:
Could not modify user 'TEST1'. Could not grant privilege SELECT on P_USERS_ (SYS) You are not authorized to perform the required actions
QUESTION!
How I can get data from SYS.P_USERS_ table with limited user TEST1 ????
UPD:
As an experiment, I added ALL system privileges to user TEST1
butthis alsodid not remedythe situation.