The start value of the sequence is always 1.
A sequence always increments by 1.
The minimum value of an ascending sequence defaults to 1.
The maximum value of descending sequence defaults to 1.
第1题:
You are maintaining your database in Oracle10g. You are performing an incomplete recovery because the tablespace, DATA1, was dropped and purged from the Recycle Bin. After performing an incomplete recovery, you open the database with the RESETLOGS option. What will NOT be the impact of using the RESETLOGS option?()
第2题:
Within the application MY_APP the following PREVIOUS VALUE expression references the sequence MY_SEQ: PREVIOUS VALUE FOR my_seq After which of the following events will the most recently generated value of MY_SEQ persist so that it can be returned to the active MY_APP application?()
第3题:
A sequence was created with the DDL statement shown below:CREATE SEQUENCE my_seq START WITH 5 INCREMENT BY 5 CACHE 5 User1 successfully executes the following statements in Connection1: VALUES NEXT VALUE FOR my_seq INTO :con1hvar VALUES NEXT VALUE FOR my_seq INTO :con1hvar User2 successfully executes the following statement in Connection2: VALUES NEXT VALUE FOR my_seq INTO :con2hvar After User1 & User2 are finished, User3 executes the following statement in Connection3: SELECT NEXT VALUE FOR my_seq FROM sysibm.sysdummy1Which value will be returned by the query?()
第4题:
Which two statements are true about setting the FAST_START_MTTR_TARGET initialization parameter to anonzero value()
第5题:
What is true regarding subqueries?()
第6题:
What is true about sequences? ()
第7题:
What is true regarding subqueries?()
第8题:
After a ROLLBACK is issued
After the sequence is altered
After the sequence is dropped
After the current session ends
第9题:
Once created, a sequence belongs to a specific schema.
Once created, a sequence is linked to a specific table.
Once created, a sequence is automatically available to all users.
Only the DBA can control which sequence is used by a certain table.
Once created, a sequence is automatically used in all INSERT and UPDATE statements.
第10题:
2
3
11
30
第11题:
The next value will be 0 and the sequence will never use the values 101 to 105.
The next value will be 101 to ensure uniqueness between existing and newly generated sequence values.
Previously cached values are retained by DB2, and after the restart, will be used for values 101 to 105.
The next value will be 0 and DB2 will not ensure uniqueness between existing and newly generated values.
第12题:
The inner query always sorts the results of the outer query
The outer query always sorts the results of the inner query
The outer query must return a value to the outer query
The inner query returns a value to the outer query
The inner query must always return a value or the outer query will give an error
第13题:
Which of the following is a characteristic of a sequence?()
第14题:
A sequence was created with the DDL statement shown below:CREATE SEQUENCE my_sequence CACHE 10 ORDER The following statements are successfully executed in sequence through separate database connections: CONNECTION1 - VALUES NEXT VALUE FOR my_sequence INTO :con1hvar CONNECTION2 - VALUES NEXT VALUE FOR my_sequence INTO :con2hvar CONNECTION1 - VALUES NEXT VALUE FOR my_sequence INTO:con1hvarWhat is the current value of the :con1hvar host variable?()
第15题:
What is true about sequences? ()
第16题:
Which of the following can be used in conjunction with a Flashback Versions Query to filter the results?()
第17题:
Which two statements about sequences are true? ()
第18题:
Which two statements are true about setting the FAST_START_MTTR_TARGET initializationparameter to a nonzero value()
第19题:
You are developing an ASP.NET Web page that will display the median value from a sequence of integer values. You need to create an extension method to compute the median value. Which interface should you add the extension method to?()
第20题:
The start value of the sequence is always 1.
A sequence always increments by 1.
The minimum value of an ascending sequence defaults to 1.
The maximum value of descending sequence defaults to 1.
第21题:
The MTTR advisor will be disabled.
Automatic checkpoint tuning will be enabled.
The value for the LOG_CHECKPOINT_INTERVAL initialization parameter will be override the value forFAST_START_MTTR_TARGET.
The time taken to recover the instance after the crash is always exactly the same as the value given for theinitialization parameter.
第22题:
IComparer<T>
IEnumerable<T>
IEnumerator<T>
IEqualityComparer<T>
第23题:
20
25
50
55
第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