A range of SCN values
A list of SCN values
A starting and ending timestamp
Minimum and maximum sequence values
A list of sequence values
第1题:
Which of the following statements best describes Flashback Versions Query?()
第2题:
On which two database objects can the VERSIONS clause of the Flashback Versions Query be used?()
第3题:
Which of the following can be used in conjunction with a Flashback Versions Query to filter the results?()
第4题:
You executed the following query in your database: SELECT oldest_flashback_scn, oldest_flashback_time FROM V$FLASHBACK_DATABASE_LOG; What would you determine from the output?()
第5题:
Which statement is true regarding Flashback Version Query? ()
第6题:
You executed the following query in your database: FROM V$FLASHBACK_DATABASE_LOG; What would you determine from the output?()
第7题:
It returns versions of rows only within a transaction.
It can be used in subqueries contained only in a SELECT statement.
It will return an error if the undo retention time is less than the lower bound time or SCN specified.
It retrieves all versions including the deleted as well as subsequently reinserted versions of the rows.
第8题:
fixed tables
heap tables
external tables
temporary tables
Index-Organized Tables (IOTs)
第9题:
Flashback Versions Query is used to make changes to multiple versions of data that existed between two points in time.
Flashback Versions Query is used to view all version changes on rows that existed between the time the query was executed and a point in time in the past.
Flashback Versions Query is used to view version changes and the SQL to undo those changes on rows that existed between two points in time.
Flashback Versions Query is used to view all version changes on rows that existed between two points in time.
第10题:
The LAST_SCN value in the first row is NULL, which means that the versions of the row still exist at SCN 6636300. LAST_SCN
The LAST_SCN value in the second row in NULL, which means that the version of the row still exists at SCN 6636300.
The LAST_SCN value in the third row is 6636280, which means that the version of row exists above SCN 6636280.
The LAST_SCN value in the second row is NULL, which means that the version of the row no longer exists because it was deleted. LAST_SCN
第11题:
A neighbor distribute - list out command, referencing a standard ACL
A neighbor prefix - list out command
A neighbor filter - list out command
A neighbor distribute - list out command, referencing an extended ACL
A neighbor route - map out command
第12题:
You use a NEXTVAL pseudo column to look at the next possible value that would be generated from a sequence, without actually retrieving the value.
You use a CURRVAL pseudo column to look at the current value just generated from a sequence, without affecting the further values to be generated from the sequence.
You use a NEXTVAL pseudo column to obtain the next possible value from a sequence by actually retrieving the value from the sequence.
You use a CURRVAL pseudo column to generate a value from a sequence that would be used for a specified database column.
If a sequence starting from a value 100 and incremented by 1 is used by more then one application, then all of these applications could have a value of 105 assigned to their column whose value is being generated by the sequence.
You use REUSE clause when creating a sequence to restart the sequence once it generates the maximum value defined for the sequence.
第13题:
By mistake, you ran the batch job (for updating the BILL_DETAILS table) twice. You are not sure which rows in the BILL_DETAILS table were affected. You need to identify: a) a list of changes made along with the transaction identifier of each change b) the necessary SQL statements to undo the erroneous changes Which option would you choose?()
第14题:
You are maintaining your OLTP database in Oracle10g. You are performing the Flashback Transaction Query to find the undo SQL statements that can be used to undo the changes made to the database in the specific time period. Which pseudocolumn will you use to perform the Flashback Transaction Query?()
第15题:
For which two database objects can the VERSIONS clause of the Flashback Versions Query be used?()(Choose two.)
第16题:
Which two statements about sequences are true? ()
第17题:
You are working in an online transaction processing (OLTP) environment. You used the FLASHBACK TABLE command to flash back the CUSTOMERS table. Before executing the FLASHBACK TABLE command, the System Change Number (SCN) was 663571. After flashing back the CUSTOMERS table, you realize that the table is not in the correct state and the resultant changes are not what you had desired. So, you need to reverse the effects of the FLASHBACK TABLE command while ensuring that: a) No other user data in the database is affected. b) The operation takes the minimum possible time. Which option would you choose?()
第18题:
1, 2, and 5
1, 3, and 4
2, 3, 4, and 5
1, 2, 3, 4, and 5
第19题:
views
fixed tables
heap tables
external tables
temporary tables
index-organized tables (IOT)
第20题:
VERSIONS_STARTSCN
VERSIONS_STARTTIME
VERSIONS_XID
VERSIONS_OPERATION
第21题:
the time when the last flashback operation in your database was performed
the time when the first flashback operation in your database was performed
a list of flashback operations performed in your database using SCN and time
the approximate time and the lowest system change number (SCN) to which you can flash back your database
第22题:
The time when the last flashback operation in your database was performed.
The time when the first flashback operation in your database was performed.
A list of flashback operations performed in your database using SCN and time.
The approximate time and the lowest system change number (SCN) to which you can flash back your database.
第23题:
A range of SCN values
A list of SCN values
A starting and ending timestamp
Minimum and maximum sequence values
A list of sequence values
第24题:
A sequence will never generate duplicate values
The MAXVALUE of a sequence can be equal to the MINVALUE
It is not possible to create a sequence that generates a constant since the INCREMENT value must be greater than zero
When a sequence cycles back to either the MAXVALUE or MINVALUE, it will always be equal to the specified value of either of these two boundaries