Is there a way for a non admin user to check the uptime of an Oracle instance? I.e. I don’t have sysdba privileges.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your question specifies “non admin user” so I’m afraid the answer is probably no. The usual mechanisms require selecting from V$ views – V$INSTANCE or V$SESSION. Neither of these are granted to PUBLIC by default.
If you ask your DBA nicely they might be prepared to grant you access to those views, or at least write a wrapping function (or functions) to expose those values.