1Z0-052 · Question #82
In your database instance, the user sessions are connected to the database server from the remote machines. You want to achieve the following for these users: 1. The user account must be locked…
The correct answer is A. By assigning profiles for the users. Oracle profiles are the mechanism used to enforce password policies, login attempt limits, session limits, and connection time limits for database users.
Question
Options
- ABy assigning profiles for the users
- BBy implementing Fine-Grained Auditing (FGA)
- CBy granting a secure application role to the users
- DBy implementing the Database Resource Manager plan
How the community answered
(26 responses)- A77% (20)
- B4% (1)
- C12% (3)
- D8% (2)
Why each option
Oracle profiles are the mechanism used to enforce password policies, login attempt limits, session limits, and connection time limits for database users.
Oracle profiles allow a DBA to set resource and password parameters including FAILED_LOGIN_ATTEMPTS (locks account after N failed logins), PASSWORD_LIFE_TIME (forces periodic password changes), SESSIONS_PER_USER (limits concurrent sessions), and CONNECT_TIME (auto-logs off sessions exceeding elapsed time). A single profile assigned to a user enforces all four requirements simultaneously.
Fine-Grained Auditing is used to audit access to specific table rows or columns based on conditions - it does not enforce login attempt limits, session counts, or password policies.
A secure application role controls which privileges are granted to an application session - it does not manage password aging, login lockouts, or session resource limits.
Database Resource Manager controls CPU, parallel execution, and I/O resource allocation among sessions - it does not handle password management or failed login attempt tracking.
Concept tested: Oracle profile resource and password limit parameters
Source: https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/CREATE-PROFILE.html
Topics
Community Discussion
No community discussion yet for this question.