I need to check Oracle 12c timeout for an active connection. I don't have access to the database itself but I do have some creds. Is there a table to query to get this information?
Thank you!
These are properties of user profiles. Query DBA_PROFILES.
resource_parameters
...
CONNECT_TIME
Specify the total elapsed time limit for a session, expressed in minutes.
IDLE_TIME
Specify the permitted periods of continuous inactive time during a session, expressed in minutes. Long-running queries and other operations are not subject to this limit.
...
SELECT CONNECT_TIME FROM SCHEMA_NAME.DBA_PROFILES; but it gives me ORA-00942: table or view doesn't exist
SYS owns DBA_PROFILES. Their is also a public synonym for it. If you can't see it, then you don't have the proper "creds". Your DBA should be able to help if you don't have the proper credentials
CONNECT_TIMEin the resource profile? something else?