Acquire locks on table queried
Generate redo for statement
Fetch data from disk into memory
Write changes to disk
第1题:
From SQL*Plus, you issue this SELECT statement: SELECT* FROM order; You use this statement to retrieve data from a data table for ().
第2题:
The user is trying to execute a SELECT statement. Which of the following background processes will obtain data from a disk for the user?()
第3题:
The user HR owns the EMP table. The user HR grants privileges to the user SCOTT by using this command: SQL> GRANT SELECT,INSERT,UPDATE ON emp TO scott WITH GRANT OPTION; The user SCOTT executes this command to grant privileges to the user JIM: SQL> GRANT SELECT,INSERT,UPDATE ON hr.emp TO jim; Now, the user HR decides to revoke privileges from JIM using this command: SQL> REVOKE SELECT,INSERT,UPDATE ON emp FROM jim; Which statement is true after HR issues the REVOKE command()
第4题:
A user issues a SELECT command against the Oracle database. Which of the following choices describes a step that Oracle will execute in support of this statement?()
第5题:
by using the DBMS_REPAIR package
by using the DBVERIFY utility
by using Block Media Recovery
by issuing the ANALYZE TABLE HR.EMPLOYEES VALIDATE STRUCTURE command
第6题:
Alice only
Alice and Reena
Alice, Reena, and Timber
Sue, Alice, Reena, and Timber
第7题:
1
2
3
4
1,2,and 4
1,2,3,and 4
第8题:
DISPATCHER
USER
SERVER
LGWR
DBW0
第9题:
The command fails because SCOTT still has privileges.
The command succeeds and privileges are revoked from JIM.
The command fails because HR cannot revoke the privileges from JIM.
The command succeeds and only HR has the privilege to perform the SELECT, INSERT, and UPDATEoperations on the EMP table.
第10题:
Updating
Viewing
Deleting
Inserting
Truncating
第11题:
UPDATE pets…
SELECT….FROM pets
INSERT INTO pets…
ALTER TABLE pets…
第12题:
Load data from a disk, tape, or named pipes.
Load data into an Oracle database using DML statements.
Extract, reorganize, and insert data within an Oracle database.
Load data from external files into tables in an Oracle database.
Load data into an Oracle database using operating system commands.
Load data directly from a non-Oracle database to an Oracle database.
第13题:
The user Sue issues this SQL statement: GRANT SELECT ON sue. EMP TO alice WITH GRANT OPTION; The user Alice issues this SQL statement: GRANT SELECT ON sue. EMP TO reena WITH GRANT OPTION; The user Reena issues this SQL statement: GRANT SELECT ON sue. EMP TO timber; The user Sue issues this SQL statement: REVOKE select on sue. EMP FROM alice; For which users does the revoke command revoke SELECT privileges on the SUE.EMP table?()
第14题:
Examine the statement: SQL> CREATE TABLESPACE user_data 2> EXTENT MANAGEMENT LOCAL 3> SEGMENT SPACE MANAGEMENT AUTO; Which twp assumptions must be true for this statement to execute successfully?()
第15题:
You issue the following statement: SQL> SELECT FIRSTNAME, LASTNAME FROM HR.EMPLOYEE; You receive the following error: 01578: ORACLE data block corrupted (file# 6, block # 54) ORA-01110 : data file 6: ’u01/oracle/oradata/data1.dbf’ How will you resolve this problem of data block corruption by reducing the mean time to recover (MTTR)?()
第16题:
User A issues the command: LOCK TABLES pets READ; Which command can User B execute against the pets table?()
第17题:
1
2
3
4
1 and 3
1, 2, 3, and 4
第18题:
The statement would not execute because table aliases are not allowed in the JOIN clause.
The statement would not execute because the table alias prefix is not used in the USING clause.
The statement would not execute because all the columns in the SELECT clause are not prefixed with table aliases.
The statement would not execute because the column part of the USING clause cannot have a qualifier in the SELECT list.
第19题:
Writes buffers to disk
Writes current redo log number to datafile headers
Writes redo log information to disk
Reads information into memory for users
第20题:
Both SQL and /SQL*plus allow manipulation of values in the database.
/SQL* Plus recognizes SQL satement and sends them to the server; SQL is the Oracle proprietary interface for executing SQL statements.
/SQL* Plus language for communicating with the Oracle server to access data; SQL recognizes SQL statements and sends them to the server.
/SQL manipulates data and table definition in the database; /SQL* Plus does not allow manipulation of values in the database.
第21题:
Immediately following statement execution
After the ALTER TABLE DROP UNUSED COLUMNS command is issued
After the ALTER TABLE SET UNUSED COLUMN command is issued
After the ALTER TABLE MODIFY command is issued
第22题:
CREATE SYNONYM ord FOR orders; This command is issued by OE
CREATE PUBLIC SYNONYM ord FOR orders; This command is issued by OE
CREATE SYNONYM ord FOR oe.orders; This command is issued by the database administrator
CREATE PUBLIC SYNONYM ord FOR oe.orders; This command is issued by the database administrator
第23题:
All database operations performed by the impdp command are logged.
Only CREATE INDEX and CREATE TABLE statements generated by the import are logged.
Only CREATE TABLE and ALTER TABLE statements generated by the import are logged.
None of the operations against the master table used by Oracle Data Pump to coordinate its activities are logged.