The tempfile belonging to the default temporary tablespace is missing.
The database is opened in restricted mode, so queries are not allowed.
The default temporary tablespace required to execute the query is offline.
The default temporary tablespace required to execute the query is dropped.
The default temporary tablespace required to execute the query is readonly.
第1题:
Which data dictionary table should you query to view the object privileges granted to the user on specific columns?()
第2题:
Your database is running in ARCHIVELOG mode. The SCOTT.EMP table belongs to the DATA1 tablespace. The junior DBA erroneously runs a script that executes the following statement: SQL> DROP TABLE SCOTT.EMP PURGE; After one hour, you are performing the user managed incomplete recovery. Which datafiles will you restore from the last full backup?()
第3题:
You need to perform certain data manipulation operations through a view called EMP_DEPT_VU, which you previously created. You want to look at the definition of the view (the SELECT statement on which the view was create.) How do you obtain the definition of the view? ()
第4题:
The nested query executes after the outer query returns the row.
The nested query executes first and then the outer query executes.
The outer query executes only once for the result returned by the inner query.
Each row returned by the outer query is evaluated for the results returned by the inner query.
第5题:
Alice only
Alice and Reena
Alice, Reena, and Timber
Sue, Alice, Reena, and Timber
第6题:
when the schema of the user, SCOTT, was deleted by mistake 15 minutes ago
when the table EMP of the SCOTT schema was dropped by mistake 15 minutes ago
when some rows of the table, EMP, in the SCOTT schema were deleted by mistake 15 minutes ago
when some incorrect values were inserted in the EMP table in the user Scott’s schema during the last 15 minutes
never, because FLASHBACK TABLE is not a valid command in Oracle 10g.
第7题:
The tempfile belonging to the default temporary tablespace is missing.
The database is opened in restricted mode, so queries are not allowed
The default temporary tablespace required to execute the query is offline.
The default temporary tablespace required to execute the query is dropped.
The default temporary tablespace required to execute the query is read-only.
第8题:
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.
第9题:
LOCK TABLE emp IN SHARE MODE;
LOCK TABLE emp IN EXCLUSIVE MODE;
DELETE FROM emp WHERE job=’MANAGER’;
INSERT INTO emp(empno,ename) VALUES (1289,’Dick’);
SELECT job FROM emp WHERE job=’CLERK’ FOR UPDATE OF empno;
第10题:
LOCK TABLE emp IN SHARE MODE;
LOCK TABLE emp IN EXCLUSIVE MODE;
UPDATE emp SET sal=sal*1.2 WHERE job=MANAGER;
INSERT INTO emp(empno,ename) VALUES (1289,’Harry’);
SELECT ename FROM emp WHERE job=’CLERK’ FOR UPDATE OF empno;
第11题:
GRANT select ON dept TO ALL_ USER;
GRANT select ON dept TO ALL;
GRANT QUERY ON dept TO ALL_USERS
GRANT select ON dept TO PUBLIC;
第12题:
You are employed as a DBA in an organization. You are informed that the record of EMP_NO 1000 is missing from the SCOTT.EMP table. You are required to identify the user who deleted the record, the SQL statement that will undo the deletion, and the transaction ID of the transaction that deleted the employee record. Which feature will you use to perform the tasks?()
第13题:
Which view should a user query to display the columns associated with the constraints on a table owned by the user?()
第14题:
User A executes the following command to drop a large table in your database:SQL> DROP TABLE trans; While the drop table operation is in progress, user B executes the following command on the same table:SQL> DELETE FROM trans WHERE tr_type=’SL’; Which statement is true regarding the DELETE command()
第15题:
the datafiles associated with the SYSTEM tablespace
the datafiles associated to the DATA1 tablespace
the datafiles associated to the SYSTEM and DATA1 tablespaces
all the datafiles in the database
第16题:
Only the Flashback Table
Both the Flashback Transaction Query and the Flashback Version Query
Only the Flashback Drop
Only the Flashback Version
第17题:
The tempfile belonging to the default temporary tablespace is missing.
The database is opened in restricted mode, so queries are not allowed.
The default temporary tablespace required to execute the query is offline.
The default temporary tablespace required to execute the query is dropped.
The default temporary tablespace required to execute the query is readonly.
第18题:
It fails to delete the records because the records are locked in SHARE mode.
It deletes the rows successfully because the table is locked in SHARE mode
It fails to delete the records because the table is locked in EXCLUSIVE mode.
It deletes the rows successfully because the table is locked in SHARE ROW EXCLUSIVE mode.
第19题:
USER_CONSTRAINTS
USER_OBJECTS
ALL_CONSTRAINTS
USER_CONS_COLUMNS
USER_COLUMNS
第20题:
because of redo data from redo log file
because of data from database buffer cache
because of data from a temporary tablespace
because of undo data from the undo tablespace
第21题:
LOCK TABLE emp IN SHARE MODE;
LOCK TABLE emp IN EXCLUSIVE MODE;
UPDATE emp SET sal=sal*1.2 WHERE job=ANAGER?UPDATE emp SET sal=sal*1.2 WHERE job=?ANAGER?
INSERT INTO emp(empno,ename) VALUES (1289,’Harry’);
SELECT ename FROM emp WHERE job=’CLERK’ FOR UPDATE OF empno
第22题:
Exhibit A
Exhibit B
The query returns no rows
The query fails because the outer query is retrieving more than one column
The query fails because both the inner and outer queries are retrieving data from the same table.