Oracle Database Fundamentals
Covers core Oracle database concepts including tables, transactions, SQL functions, normalization, and memory management
Questions
When WORKAREA_SIZE_POLICY is set to AUTO, the work areas are sized to accomplish which two goals? (Choose two)
- To tune memory using the existing *_AREA_SIZE parameters.
- To allocate memory to work areas in order to optimize throughput only.
- To allocate memory to work areas in order to optimize response time only.
- To allocate memory to work areas in order to optimize both throughput and response time.
- To ensure that the overall size of the PGA will never exceed the value of PGA_AGGREGATE_TARGET.
In what way are the two initialization parameters PGA_AGGREGATE_TARGET and WORKAREA_SIZE_POLICY related to each other?
- The default value for PGA_AGGREGATE_TARGET depends on the setting of WORKAREA_SIZE_POLICY.
- You must provide a non-default value for PGA_AGGREGATE_TARGET before setting
- The value of PGA_AGGREGATE_TARGET can only be changed dynamically (that is, when the instance is
- You must not provide a non-default value for PGA_AGGREGATE_TARGET before setting
which is Implicit data type Conversion?
- Char >> number
- Char >> date
- Number >> varchar2
- Date >> varchar2
Which is NOT Date function?
- ADD_MONTHS
- NEXT_DAY
- LAST_DAY
- NEXT_MONTHS
Which is NOT TCL Statements ?
- SAVEPOINT
- GRANT
- ROLLBACK
- COMMIT
Which is Single Row Function?
- CONCAT
- MOD
- ROUND
- CONVERSION FUNCTION
Normalization: which is automatic NORMAL form? (NF=normal form)
- 1NF
- 2NF
- 3NF
- 4NF
You are developing SQL statements for the application. Which of the following SQL operations requires the use of a subquery?
- IN
- Between
- Exists
- Like
Which is the most commonly used type of table?
- Clustered
- Partitioned
- Regular
- Index organized
You are developing some code to handle transaction processing. Which signifies the beginning of a new transaction ?
- set transaction
- Opening a new session
- commit
- savepoint
An object in Oracle contains many columns, The object requires segments to be stored in areas of the database other than the data dictionary ?
- Sequence
- View
- Synonym
- Table