Examine the parameters for your database instance:
You execute the following command:
SQL> ALTER TABLESPACE undotbs1 RETENTION NOGUARANTEE;
Which statement is true in this scenario?
Correct Answer:
D
🗳️
A user establishes a connection to a database instance by using an Oracle Net connection. You want to ensure the following:
1. The user account must be locked after five unsuccessful login attempts.
2. Data read per session must be limited for the user.
3. The user cannot have more than three simultaneous sessions.
4. The user must have a maximum of 10 minutes session idle time before being logged off automatically.
How would you accomplish this?
Correct Answer:
D
🗳️
As a user of the ORCL database, you establish a database link to the remote HQ database such that all users in the ORCL database may access tables only from the SCOTT schema in the HQ database. SCOTT’s password is TIGER. The service mane "HQ" is used to connect to the remote HQ database.
Which command would you execute to create the database link?
Correct Answer:
C
🗳️
What happens if a maintenance window closes before a job that collects optimizer statistics completes?
Correct Answer:
D
🗳️
The stop_on_window_close attribute controls whether the GATHER_STATS_JOB continues when the maintenance window closes. The default setting for the stop_on_window_close attribute is TRUE, causing Scheduler to terminate GATHER_STATS_JOB when the maintenance window closes. The remaining objects are then processed in the next maintenance window.
References:
https://docs.oracle.com/cd/B19306_01/server.102/b14211/stats.htm#g49431
You plan to create a database by using the Database Configuration Assistant (DBCA), with the following specifications:
Applications will connect to the database via a middle tier.
The number of concurrent user connections will be high.
The database will have mixed workload, with the execution of complex BI queries scheduled at night.
Which DBCA option must you choose to create the database?
Correct Answer:
C
🗳️
References:
Which two statements are true about the logical storage structure of an Oracle database? (Choose two.)
Correct Answer:
DE
🗳️
References:
Which two statements correctly describe the relationship between data files and logical database structures? (Choose two.)
Correct Answer:
BC
🗳️
A single extent can never span data files.
https://docs.oracle.com/database/121/CNCPT/logical.htm#CNCPT1095
Which statement is true about the Log Writer process?
Correct Answer:
D
🗳️
References:
http://docs.oracle.com/cd/B19306_01/server.102/b14220/process.htm
(see log writer process (LGWR))
The ORCL database is configured to support shared server mode. You want to ensure that a user connecting remotely to the database instance has a one-to-one ratio between client and server processes.
Which connection method guarantees that this requirement is met?
Correct Answer:
D
🗳️
Which two tasks can be performed on an external table? (Choose two.)
Correct Answer:
DE
🗳️
http://docs.oracle.com/cd/B28359_01/server.111/b28310/tables013.htm#ADMIN01507
You can, for example select, join, or sort external table data. You can also create views and synonyms for external tables. However, no DML operations
(UPDATE, INSERT, or DELETE) are possible, and no indexes can be created, on external tables.