Flashback Table can be performed on system tables.
Flashback Table operation does not shrink the segments.
Flashback Table uses log mining to extract SQL_REDO and SQL_UNDO statements.
Flashback Table operation acquires exclusive data manipulation language (DML) locks.
第1题:
On Monday, you dropped the DEPT table from your schema and then you re-created the DEPT table in your schema. On Wednesday, you have a requirement to restore the DEPT table from the recycle bin. Which statement is correct?()
第2题:
You are performing flashback of the EMPLOYEE table in SCOTT’s schema because some incorrect data was inserted into the table and committed by mistake. Which two clauses will you use in the FLASHBACK TABLE statement for using the Flashback Table feature? ()
第3题:
For which two SQL statements can you use the Flashback Table feature to revert a table to its previous state?()
第4题:
You are working in an online transaction processing (OLTP) environment. You realize that the salary for an employee, John, has been accidentally modified in the EMPLOYEES table. Two days ago, the data was in the correct state. Flashback logs generated during last two days are available in the flash recovery area. Which option would you choose to bring the data to the correct state while ensuring that no other data in the same table is affected?()
第5题:
The RECYCLEBIN parameter is set to ON for your database. You drop a table,PRODUCTS,from the SCOTT schema. Which two statements are true regarding the outcome of this action?()
第6题:
Which of the following statements is true regarding implementing a Flashback Table recovery? ()
第7题:
All the related indexes and views are automatically dropped
The flashback drop feature can recover only the table structure
Only the related indexes are dropped whereas views are invalidated
The flashback drop feature can recover both the table structure and its data
第8题:
All the triggers are disabled.
All the triggers are enabled by default.
Enabled triggers remain enabled and disabled triggers remain disabled.
Triggers are deleted when a Flashback Table operation is performed.
第9题:
by using Oracle Enterprise Manager
by issuing the FLASHBACK TABLE statement at the RMAN prompt
by issuing the FLASHBACK TABLE statement at the SQL prompt
by issuing the FLASHBACK TABLE statement at the LSNRCTL prompt
第10题:
UPDATE TABLE
CREATE CLUSTER
TRUNCATE TABLE
ALTER TABLE MOVE
INSERT INTO···VALUES
ALTER TABLE···DROP COLUMN
ALTER TABLE···DROP PARTITION
第11题:
Flashback Table can be performed on system tables.
Flashback Table operation does not shrink the segments.
Flashback Table uses log mining to extract SQL_REDO and SQL_UNDO statements.
Flashback Table operation acquires exclusive data manipulation language (DML) locks.
第12题:
All the related indexes and views are automatically dropped
The flashback drop feature can recover only the table structure
Only the related indexes are dropped whereas views are invalidated
The flashback drop feature can recover both the table structure and its data
第13题:
You executed the following FLASHBACK TABLE command: FLASHBACK TABLE emp TO TIMESTAMP (’11:45’,’hh12:mi’); Which two statements are correct?()
第14题:
On Jan 11, 2005 at 2:30 P.M., an erroneous update operation modified all the values of column LASTNAME in the EMPLOYEE table in the Scott schema to an empty string. You are the system administrator, and you want to return the original values in the table. To do so, you decided to flash back the table. Which two options can you use to flash back a table?()
第15题:
Which two statements are correct regarding the Flashback Versions Query feature?()
第16题:
Which two statements are correct regarding the Oracle Flashback Drop feature? ()
第17题:
You executed the following SQL statement to shrink the EMPLOYEES table segment stored in the EXAMPLE tablespace: ALTER TABLE employees SHRINK SPACE CASCADE; Which statement is correct in this scenario?()
第18题:
You have just performed a FLASHBACK TABLE operation using the following command: flashback table employees to scn 123456; The employees table has triggers associated with it. Which of the following statements is true regarding the state of the triggers during the Flashback Table operation?()
第19题:
The FLASHBACK TABLE statement will not be written to the alert log file.
The EMP table that was dropped by mistake from the database will be restored.
The changes made to the EMP table since the specified time will be undone.
The FLASHBACK TABLE statement will not maintain the existing indexes on the EMP table.
The FLASHBACK TABLE statement will be executed within a single transaction.
The list of transactions that have modified the EMP table since the specified time will be displayed.
第20题:
RESETLOGS
TO TIMESTAMP
TO BEFORE DROP
RENAME TO
TO SCN
第21题:
Recycle bin exists for the tables only in non-SYSTEM, locally managed tablespaces.
You can flash back a dropped table provided row movement has been enabled on the table.
If you drop an index before dropping its associated table, then the recovery of the index is not supported when you flash back the dropped table.
When you execute the DROP TABLESPACE? INCLUDING CONTENTS command, the objects in the tablespace are places in the recycle bin.
When a dropped table is moved to the recycle bin, only the table is renamed to a system-generated name; its associated objects and constraints are not renamed.
If you drop a table that is protected by the recycle bin, then associated bitmap-joined indexes and materialized view logs are also stored in the recycle bin.
第22题:
The data in the segment will be compacted but the high water mark will not be adjusted
The EMPLOYEES table will be changed to read-only mode during the shrink operation
The indexes created on the EMPLOYEES table will need to be rebuilt after the shrink operation is over
The shrink behavior will be cascaded to all dependent segments of the table that support a shrink operation
Data manipulation language (DML) operations will not be possible on the EMPLOYEES table during the COMPACTION phase of the shrink operation
第23题:
You can use this feature to identify the committed versions of the rows, but not the uncommitted versions.
You can use this feature to identify the versions of V$ views.
You can use this feature to identify the inserts, deletes, and updates performed on a particular row but not the data definition language (DDL) operations performed on the table.
You can use this feature for a table only if row movement is enabled for the table.
You can use this feature to identify the versions of external and fixed tables.
第24题:
When a table is dropped, the corresponding indexes are automatically dropped.
For each DML operation performed, the corresponding indexes are automatically updated.
Indexes should be created on columns that are frequently referenced as part of an expression.
A non-deferrable PRIMARY KEY or UNIQUE KEY constraint in a table automatically creates a uniqueindex.