Questions
When is the SGA created in an Oracle database environment?
- When the database is created
- When the instance is started
- When the database is mounted
- When a user process is started
Which of the following are different types of record group?
- Query record group
- Non-query record group
- Static record group
- All of above
Can one listener process listen for more than one protocol?
- Yes
- No
One of the tasks of a DBA is to periodically monitor the alert log file and the background trace files. In doing so, the DBA notices repeated messages indicating that Log Writer (LGWR) frequently has to wait for a redo log group because a checkpoint has not completed or a redo log group has not been archived. What should he do to eliminate the wait LGWR frequently encounters?
- Increase the number of redo log groups to guarantee that the groups are always available to LGWR
- Increase the size of the log buffer to guarantee that LGWR always has information to write
- Decrease the size of the redo buffer cache to guarantee that LGWR always has information to write
- Decrease the number of redo log groups to guarantee that checkpoints are completed prior to LGWR writing
Which script should be executed to create user JOY and give him the ability to connect to the database and the ability to create tables, sequences, and procedures in his schema?
- CREATE Joy
IDENTIFIED BY Joy18;
GRANT CREATE CONNECT, TABLE, SEQUENCE, PROCEDURE
TO Joy - CREATE USER Joy
IDENTIFIED BY Joy18;
GRANT CREATE TABLE, CREATE SEQUENCE, CREATE PROCEDURE
TO Joy - CREATE OR REPLACE USER Joy
IDENTIFIED BY Joy18
GRANT CREATE SESSION, CREATE TABLE, CREATE SEQUENCE, CREATE PROCEDURE - CREATE USER Joy
IDENTIFIED BY Joy18;
GRANT CREATE SESSION, CREATE TABLE, CREATE SEQUENCE, CREATE PROCEDURE
TO Joy
In a client-server application connection with no middle-tier, what are the five server stack components?
- Oracle database, TTC, Oracle Net, OPS, and Protocol
- Oracle database, Oracle Net, OSI, TTC, and Protocol
- Forms/SQL*Plus, OPS, TTC, Oracle Net, and Protocol
- Oracle Net, TTC, OPS, OCI, and Protocol
The Product Line data block is defined in the Order Management .fmb module. Product Line items are displayed in the default window at run time. In a second window called Buttons a set of icon buttons is displayed. At run time, the user must be able to freely navigate between the two windows. Which of the following statements identifies the types of windows to be defined?
- Both windows must be defined as dialog and modal.
- Both windows must be defined as document and modeless.
- Both windows must be defined as document and modal.
- The default window must be defined as modeless and the Buttonswindow must be modal.
Which of the following parameters enables users to perform a data-only unloading of data?
- EXCLUDE
- INCLUDE
- CONTENT
- DATA_ONLY
Examine the structure of the EMPLOYEES table:
EMPLOYEE_ID NUMBER Primary Key
FIRST_NAME VARCHAR2 (25)
LAST_NAME VARCHAR2 (25)
HIRE_DATE DATE
Which UPDATE statement is valid?
- UPDATE employees SET first_name = 'John' SET last_name='Smith' WHERE employee_id = 180;
- UPDATE employees SET first_name = 'John', SET last_name ='Smith' WHERE employee_id = 180;
- UPDATE employees SET first_name = 'John' AND last_name ='Smith' WHERE employee_id = 180;
- UPDATE employees SET first_name = 'John', last_name ='Smith' WHERE employee_id = 180;
The following statement was issued:
ALTER TABLESPACE users_data READ ONLY;
Which of the following statements is not true?
- A checkpoint occurs for each data file associated with the USERS_DATA tablespace.
- The data files for the USERS_DATA tablespace will need to be recovered if they become corrupt or a media failure occurs.
- The control file is updated to identify the data files for the USERS_DATA tablespace as read-only during recovery.
- The checkpoint numbers in the data files for the USERS_DATA tablespace are frozen and do not need to be synchronized with the checkpoint number in the control file.
When using MTS, which of the following will be shared among user processes?
- Server processes
- Client processes
- Server sessions
- Client sessions
- Nothing
What should be the first step in the tuning process?
- Tune the OS
- Tune database I/O
- First monitor performance
- Tune the design
Which of the following sequences is correct?
- Extent -> data block -> segment
- Data block -> extent -> segment
- Segment -> data block -> extent
- Segment -> extent -> data block
Which of the following will reduce the number of disk sorts?
- Increasing SORT_AREA_SIZE
- Decreasing SORT_AREA_RETAINED_SIZE
- Increasing the SORT_MEMORY_ALLOCATED parameter
- Altering SORT_AREA_SIZE dynamically based on available memory within SGA_MAX_SIZE
The Department form is a part of a multiform application that also includes the Customer and Orders forms. The Department form must include a query-based PRODUCT Record Group. All three forms must be able to access the PRODUCT Record Group. Which built-in should be used to create the PRODUCT Record Group?
- CREATE_GROUP('PRODUCT')
- CREATE_GROUP('PRODUCT', FORM_SCOPE)
- CREATE_GROUP('PRODUCT', GLOBAL_SCOPE)
- CREATE_GROUP_FROM_QUERY('PRODUCT', 'Select id, desc from products', GLOBAL_SCOPE)
SQL is pronounced as SEQEL, what does 'E' stands for ?
- Enquiry
- Element
- English
- Exclusive
Which of the following is not true of SQL views?
- Oracle views cannot use the ORDER BY clause in view definitions.
- Oracle views are created using the standard SQL-92 CREATE VIEW command.
- Oracle views can be queried.
- The SQL-92 standard does not allow the use of the ORDER BY clause in view definitions.
Which of the following options lists the correct hierarchy of storage structures, from largest to the smallest?
- Segment, extent, tablespace, data block
- Data block, extent, segment, tablespace
- Tablespace, extent, data block, segment
- Tablespace, segment, extent, data block
A team is designing the backup and recovery strategy for a company. Management's priority is to minimize downtime. Which business requirement should they focus on?
- MTBF
- RMAN
- MTTR
- Evolutionary Process