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.
第1题:
A.CONTROL
B.UPDATE
C.USAGE
D.ALTER
第2题:
You issued the following statement: SQL> ALTER SESSION SET NLS_LANG=FRENCH_CANADA.WE8ISO8859P1; Which parameter is NOT overridden by using the above statement?()
第3题:
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?()
第4题:
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?()
第5题:
Which of the following privileges permits a user to update the comment on a sequence?()
第6题:
Your database operates in ARCHIVELOG mode. The redo log files are not multiplexed and one of the online redo logs is missing. The missing redo log sequence, 230, is not archived, and it contained information from 10:35 a.m. onwards. The current time is 11:00 a.m. Because of a disk crash, you executed the following command to perform an incomplete recovery: RMAN> RUN { 2> SET UNTIL SEQUENCE 230 THREAD 1; 3> ALTER DATABASE MOUNT; 4> RESTORE DATABASE; 5> RECOVER DATABASE; 6> ALTER DATABASE OPEN RESETLOGS; 7> }; With reference to this scenario, which statement is true?()
第7题:
What is true about sequences? ()
第8题:
第9题:
the value of the NLS_LANGUAGE variable
the value of the NLS_TERRITORY variable
the value of the NLS_CURRENCY variable
the character encoding scheme used by the client application
第10题:
2
3
11
30
第11题:
It applies to a single data server.
It is a recoverable sequence of operations.
Its value can be queried from the system catalog tables.
It begins when the application connects to the data server.
第12题:
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
第13题:
Given the following ALTER SEQUENCE statement: ALTER SEQUENCE myseq RESTART WITH 0 INCREMENT BY 1 NO MAXVALUE CACHE 5 ORDER Assuming that the sequence had reached a value of 100 prior to the RESTART, which of the following is true?()
第14题:
Which of the following is a characteristic of a sequence?()
第15题:
Which of the following is a feature of a unit of work?()
第16题:
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?()
第17题:
When performing an online backup,what is the proper order of the following steps?() a. Issue the alter database end backup command. b. Back up the archived redo logs. c. Issue the alter database begin backup command. d. Back up the database files. e. Determine the beginning log sequence number. f. Determine the ending log sequence number. g. Force a log switch with the alter system switch logfile command.
第18题:
Which two statements about sequences are true? ()
第19题:
RMAN recovers up to log sequence 230, but not including 230.
RMAN returns an error because the log sequence number mentioned in the command should be 229.
RMAN returns an error because the log sequence number mentioned in the command may never be missing.
RMAN recovers up to and including log sequence 229 but then returns an error because log sequence 230 is missing.
第20题:
After a ROLLBACK is issued
After the sequence is altered
After the sequence is dropped
After the current session ends
第21题:
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.
第22题:
20
25
50
55
第23题:
Shut down the database.
Set the appropriate parameters in init.ora file.
Start the database in NOMOUNT state.
Issue the ALTER DATABASE ARCHIVELOG command.
Open the database.
Take a full closed backup.