I used SYSTEM user to create MYSCHEMANAME schema.
So executing the above statements results in errors for both (but different errors):
GRANT SELECT ON SCHEMA "MYSCHEMANAME" TO _SYS_REPO WITH GRANT OPTION;
Could not execute 'GRANT SELECT ON SCHEMA "MYSCHEMANAME" TO _SYS_REPO WITH GRANT OPTION' in 1 ms 873 µs .
SAP DBTech JDBC: [258]: insufficient privilege: Not authorized
GRANT SELECT ON SCHEMA "MYSCHEMANAME" TO SYSTEM WITH GRANT OPTION;
Could not execute 'GRANT SELECT ON SCHEMA "MYSCHEMANAME" TO SYSTEM WITH GRANT OPTION' in 1 ms 582 µs .
SAP DBTech JDBC: [7]: feature not supported: grantor and grantee are identical
I know I shouldn't be using SYSTEM user to be doing the development but since I have already done so...is there any way to get around these issues without recreating/redeveloping everything using a different user?
Thanks,
Clint