Deck 6: Additional Database Objects

ملء الشاشة (f)
exit full mode
سؤال
The NEXTVAL pseudocolumn can be referenced in an INSERT command to add the value to a database table.
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
The highest possible value for a descending sequence is -1.​
سؤال
Pre-generated sequence numbers that have not been used when the database is shut down will no longer be available when the database is restarted.
سؤال
​The highest possible value for a sequence can be specified through the MAXVALUE clause.
سؤال
​The NOCACHE option specifies that the sequence can generate a number only after a request has been made by a user.
سؤال
​The USER_SEQUENCES view of the data dictionary can be used to determine the current values and settings for a sequence.
سؤال
The START WITH clause is used to identify the starting numeric value for a synonym.​
سؤال
By default,the lowest value that can be generated by a sequence is 0.​
سؤال
When a negative value is assigned to the INCREMENT BY clause of the CREATE SEQUENCE command,numeric values are generated in descending order.​
سؤال
To change the starting value for a sequence,the sequence must be dropped and then re-created.
سؤال
When a positive value is assigned to the INCREMENT BY clause of the CREATE SEQUENCE command,numeric values are generated in descending order.​
سؤال
A synonym is an alternate name assigned to a database object.​
سؤال
A database index allows users and application programs to quickly locate specific records.​
سؤال
The NEXTVALUE pseudocolumn is used to actually generate the next value in a sequence.​
سؤال
When a sequence is created for internal control purposes,the values should not be cached otherwise gaps may appear in the sequence.
سؤال
​The START WITH clause of a sequence cannot be reset with the ALTER SEQUENCE command.
سؤال
If the minimum value for a sequence is not specified,then NOMINVALUE will be assumed as the default.​
سؤال
After the highest possible value for a sequence has been reached,previous values can be reused if the NOCYCLE option has been specified.
سؤال
A sequence serves as a nickname for a database object.​
سؤال
By default,the START WITH clause has a value of one.​
سؤال
​The default value for the INCREMENT BY clause is two._________________________
سؤال
Using an identity column is particularly suited to use for a primary key when only random values are needed to uniquely identify rows.
سؤال
A column has low cardinality if it contains many distinct values.
سؤال
A sequence can be used to speed up row retrieval.​
سؤال
An explicitly created index can be dropped with the DROP INDEX command.
سؤال
All synonyms are PUBLIC.
سؤال
​The USER_INDEXES data dictionary view can be used to verify existing indexes.
سؤال
A DEFAULT sequence value will override any value provided for the column in an INSERT statement.
سؤال
A(n)sequence can be used to generate a series of numeric values._________________________
سؤال
An index is implicitly created when a NOT NULL constraint is added to a table.​
سؤال
A synonym can be created for any database object such as a table or sequence.​
سؤال
A sequence value may be set as a DEFAULT value for a column.​
سؤال
A Bitmap index is useful for improving queries on columns that have low cardinality.​
سؤال
​A function-based index can be used for queries that include searches based upon arithmetic expressions or functions.
سؤال
A synonym is an alternate name assigned to database instances._________________________
سؤال
Only one identity column may be defined on a table.
سؤال
A(n)index can be used to generate a series of unique numbers._________________________​
سؤال
The default beginning value for a sequence is one._________________________​
سؤال
​When a positive value is assigned to the INCREMENT BY clause of the CREATE SEQUENCE command,numeric values are generated in ascending order._________________________
سؤال
​A basic CREATE INDEX command will create a B-Tree index.
سؤال
A(n)____ generates sequential integers that can be used by organizations to assist with internal controls or simply to serve as a primary key for a table.​

A) ​view
B) ​index
C) ​synonym
D) ​sequence
سؤال
An index is implicitly created whenever a(n)CHECK constraint is created for a table column._________________________​
سؤال
​The USER_ALL data dictionary view displays information about all the relevant objects owned by the user._________________________
سؤال
A(n)index can be used to quickly determine whether a value already exists in a specific column._________________________​
سؤال
Both a minimum and maximum value can be defined for a(n)sequence._________________________
سؤال
​A(n)index can be created based on more than one column._________________________
سؤال
​The USER_INDEXES data dictionary view can be used to verify existing indexes.________________________
سؤال
Which of the following is defined in Oracle12c as simply anything that has a name and a defined structure?

A) ​object
B) index
C) synonym
D) sequence
سؤال
The USER_SEQ data dictionary view can be used to verify sequence settings._________________________​
سؤال
The INCREMENT BY setting for a sequence cannot be changed with the ALTER SEQUENCE command._________________________
سؤال
​The CURRVAL pseudocolumn is used to generate the next value in a sequence._________________________
سؤال
A sequence can be deleted from the database using the DROP SEQUENCE command._________________________
سؤال
The CYCLE option prevents a sequence from regenerating previous values._________________________
سؤال
Indexes are usually created for frequently referenced or searched columns._________________________
سؤال
​Sequence settings can be altered using the ALTER SEQUENCE command._________________________
سؤال
The GENERATE option can be used to have a sequence pre-generate a set of numbers before they are requested by a user._________________________
سؤال
A large table containing a particular column that is frequently referenced by a WHERE clause would probably benefit from a(n)sequence._________________________
سؤال
The lowest possible value for an increasing sequence is 1._________________________
سؤال
To create a PUBLIC synonym,the PUBLIC keyword must be used in the CREATE SYNONYM command._________________________​
سؤال
​A(n)synonym is a collection of objects._________________________
سؤال
A(n)____ synonym is used by others to access an individual's database objects.

A) ​unique
B) ​duplicated
C) ​public
D) ​private
سؤال
A negative number can be assigned to the ____ clause to generate sequential numbers in decreasing order.

A) DECREMENT BY
B) INCREMENT BY
C) DECREASE BY
D) GENERATE BY
سؤال
Which command will create a synonym for a table?​

A) ​CREATE SYNONYM synonymname IN tablename;
B) ​CREATE SYNONYM synonymname ON tablename;
C) ​CREATE SYNONYM synonymname REFERENCE tablename;
D) ​CREATE SYNONYM synonymname FOR tablename;
سؤال
Which of the following statements about sequences is incorrect?​

A) ​A sequence can be used to generate unique names for database objects.
B) ​A sequence can be used to generate unique values to serve as a primary key.
C) ​A sequence can be used to generate sequential values for internal control purposes.
D) ​A sequence can be used to generate sequential numbers to track records like checks,invoices,and purchase orders.
سؤال
​Which options are used in application cluster environments where multiple users may be requesting sequence values at the same time?

A) ​CYCLE | NOCYCLE
B) ​MINVALUE | MAXVALUE
C) ​VALUECACHE | NOVALUECACHE
D) ​ORDER | NOORDER
سؤال
Which of the following serves the same basic purpose as an index in a book,by allowing users to quickly locate specific records?​

A) view
B) index
C) synonym
D) sequence
سؤال
Oracle12c will begin each sequence with the value of one,unless another value is specified in the ____ clause.

A) START WITH
B) INTERVAL SIZE
C) INCREMENT BY
D) VALUE START
سؤال
A(n)____ synonym is used by an individual to reference objects owned by that person.​

A) ​unique
B) ​duplicated
C) ​public
D) ​private
سؤال
​The ____ options are used to determine whether Oracle12c should begin reissuing values from the sequence once the minimum or maximum value has been reached.

A) ​CYCLE | NOCYCLE
B) ​MINIMUMVALUE | MAXIMUMVALUE
C) ​CACHE | NOCACHE
D) ​REORDER | NOREORDER
سؤال
If a sequence is set to pre-generate sequential values,____ values will be generated at one time by default.

A) ​5
B) ​10
C) ​15
D) ​20
سؤال
Which command will create a sequence named NEWSEQUENCE to generate a series of integers?​

A) ​CREATE SEQUENCE newsequence;
B) ​CREATE SEQUENCE STARTING WITH 5;
C) ​CREATE SEQUENTIAL newsequence STARTING WITH 5;
D) ​none of the above
سؤال
When creating a sequence,which of the following is not an optional clause?​

A) ​INCREMENT BY value
B) ​CYCLE | NOCYCLE
C) ​MAXVALUE value | NOMAXVALUE
D) ​CREATE SEQUENCE
سؤال
Which command will modify a sequence?​

A) ​ALTER SEQUENCE...MODIFY
B) ​ALTER SEQUENCE sequencename
C) ​ALTER SEQUENTIAL sequencename
D) ​ALTER SEQUENTIAL sequencename
سؤال
Which of the following can be used to provide an alternative,simplified name,to identify database objects?​

A) view
B) index
C) synonym
D) sequence
سؤال
​Which option is used to have Oracle12c pre-generate a set of values and store those values in the server's memory?

A) ​INTERVAL STORE
B) ​CACHE VALUE
C) ​CACHE
D) ​INCREMENT BY
سؤال
The ____ clause is used to specify the interval between two sequential values.

A) INTERVAL SIZE
B) INCREMENT BY
C) STEP BY
D) START WITH
سؤال
​Which command will create an index?

A) ​CREATE INDEX indexname IN tablename (columnname)
B) ​CREATE INDEX indexname REFERENCE (columnname)
C) ​CREATE INDEX indexname ON tablename (columnname)
D) ​CREATE INDEX indexname INCREMENT BY (columnname)
سؤال
Which command will delete a sequence?​

A) ​ALTER SEQUENCE...DELETE
B) ​ALTER SEQUENCE...DROP
C) ​DELETE SEQUENCE sequencename
D) ​DROP SEQUENCE sequencename
سؤال
When working with cached sequence values,which of the following is correct?​

A) ​The cache option instructs Oracle 12c to return the sequence values in the same order in which the user requests were received.
B) ​The cache option instructs Oracle 12c not to generate any more numbers after the minimum or maximum value has been reached.
C) ​When a value has been generated and cached,that value has been assigned and cannot be regenerated until the sequence begins a new cycle.
D) ​The highest value for a cached number is 10^44.
سؤال
Which of the following is used to establish a minimum or maximum value,respectively,for a sequence?​

A) ​MINIMUMVALUE | MAXIMUMVALUE
B) ​MINVALUE | MAXVALUE
C) ​STARTWITH | ENDWITH
D) ​BEGINVALUE | ENDVALUE
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/138
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 6: Additional Database Objects
1
The NEXTVAL pseudocolumn can be referenced in an INSERT command to add the value to a database table.
True
2
The highest possible value for a descending sequence is -1.​
True
3
Pre-generated sequence numbers that have not been used when the database is shut down will no longer be available when the database is restarted.
True
4
​The highest possible value for a sequence can be specified through the MAXVALUE clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
5
​The NOCACHE option specifies that the sequence can generate a number only after a request has been made by a user.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
6
​The USER_SEQUENCES view of the data dictionary can be used to determine the current values and settings for a sequence.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
7
The START WITH clause is used to identify the starting numeric value for a synonym.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
8
By default,the lowest value that can be generated by a sequence is 0.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
9
When a negative value is assigned to the INCREMENT BY clause of the CREATE SEQUENCE command,numeric values are generated in descending order.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
10
To change the starting value for a sequence,the sequence must be dropped and then re-created.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
11
When a positive value is assigned to the INCREMENT BY clause of the CREATE SEQUENCE command,numeric values are generated in descending order.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
12
A synonym is an alternate name assigned to a database object.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
13
A database index allows users and application programs to quickly locate specific records.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
14
The NEXTVALUE pseudocolumn is used to actually generate the next value in a sequence.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
15
When a sequence is created for internal control purposes,the values should not be cached otherwise gaps may appear in the sequence.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
16
​The START WITH clause of a sequence cannot be reset with the ALTER SEQUENCE command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
17
If the minimum value for a sequence is not specified,then NOMINVALUE will be assumed as the default.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
18
After the highest possible value for a sequence has been reached,previous values can be reused if the NOCYCLE option has been specified.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
19
A sequence serves as a nickname for a database object.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
20
By default,the START WITH clause has a value of one.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
21
​The default value for the INCREMENT BY clause is two._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
22
Using an identity column is particularly suited to use for a primary key when only random values are needed to uniquely identify rows.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
23
A column has low cardinality if it contains many distinct values.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
24
A sequence can be used to speed up row retrieval.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
25
An explicitly created index can be dropped with the DROP INDEX command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
26
All synonyms are PUBLIC.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
27
​The USER_INDEXES data dictionary view can be used to verify existing indexes.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
28
A DEFAULT sequence value will override any value provided for the column in an INSERT statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
29
A(n)sequence can be used to generate a series of numeric values._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
30
An index is implicitly created when a NOT NULL constraint is added to a table.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
31
A synonym can be created for any database object such as a table or sequence.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
32
A sequence value may be set as a DEFAULT value for a column.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
33
A Bitmap index is useful for improving queries on columns that have low cardinality.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
34
​A function-based index can be used for queries that include searches based upon arithmetic expressions or functions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
35
A synonym is an alternate name assigned to database instances._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
36
Only one identity column may be defined on a table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
37
A(n)index can be used to generate a series of unique numbers._________________________​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
38
The default beginning value for a sequence is one._________________________​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
39
​When a positive value is assigned to the INCREMENT BY clause of the CREATE SEQUENCE command,numeric values are generated in ascending order._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
40
​A basic CREATE INDEX command will create a B-Tree index.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
41
A(n)____ generates sequential integers that can be used by organizations to assist with internal controls or simply to serve as a primary key for a table.​

A) ​view
B) ​index
C) ​synonym
D) ​sequence
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
42
An index is implicitly created whenever a(n)CHECK constraint is created for a table column._________________________​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
43
​The USER_ALL data dictionary view displays information about all the relevant objects owned by the user._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
44
A(n)index can be used to quickly determine whether a value already exists in a specific column._________________________​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
45
Both a minimum and maximum value can be defined for a(n)sequence._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
46
​A(n)index can be created based on more than one column._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
47
​The USER_INDEXES data dictionary view can be used to verify existing indexes.________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
48
Which of the following is defined in Oracle12c as simply anything that has a name and a defined structure?

A) ​object
B) index
C) synonym
D) sequence
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
49
The USER_SEQ data dictionary view can be used to verify sequence settings._________________________​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
50
The INCREMENT BY setting for a sequence cannot be changed with the ALTER SEQUENCE command._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
51
​The CURRVAL pseudocolumn is used to generate the next value in a sequence._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
52
A sequence can be deleted from the database using the DROP SEQUENCE command._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
53
The CYCLE option prevents a sequence from regenerating previous values._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
54
Indexes are usually created for frequently referenced or searched columns._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
55
​Sequence settings can be altered using the ALTER SEQUENCE command._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
56
The GENERATE option can be used to have a sequence pre-generate a set of numbers before they are requested by a user._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
57
A large table containing a particular column that is frequently referenced by a WHERE clause would probably benefit from a(n)sequence._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
58
The lowest possible value for an increasing sequence is 1._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
59
To create a PUBLIC synonym,the PUBLIC keyword must be used in the CREATE SYNONYM command._________________________​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
60
​A(n)synonym is a collection of objects._________________________
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
61
A(n)____ synonym is used by others to access an individual's database objects.

A) ​unique
B) ​duplicated
C) ​public
D) ​private
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
62
A negative number can be assigned to the ____ clause to generate sequential numbers in decreasing order.

A) DECREMENT BY
B) INCREMENT BY
C) DECREASE BY
D) GENERATE BY
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
63
Which command will create a synonym for a table?​

A) ​CREATE SYNONYM synonymname IN tablename;
B) ​CREATE SYNONYM synonymname ON tablename;
C) ​CREATE SYNONYM synonymname REFERENCE tablename;
D) ​CREATE SYNONYM synonymname FOR tablename;
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
64
Which of the following statements about sequences is incorrect?​

A) ​A sequence can be used to generate unique names for database objects.
B) ​A sequence can be used to generate unique values to serve as a primary key.
C) ​A sequence can be used to generate sequential values for internal control purposes.
D) ​A sequence can be used to generate sequential numbers to track records like checks,invoices,and purchase orders.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
65
​Which options are used in application cluster environments where multiple users may be requesting sequence values at the same time?

A) ​CYCLE | NOCYCLE
B) ​MINVALUE | MAXVALUE
C) ​VALUECACHE | NOVALUECACHE
D) ​ORDER | NOORDER
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
66
Which of the following serves the same basic purpose as an index in a book,by allowing users to quickly locate specific records?​

A) view
B) index
C) synonym
D) sequence
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
67
Oracle12c will begin each sequence with the value of one,unless another value is specified in the ____ clause.

A) START WITH
B) INTERVAL SIZE
C) INCREMENT BY
D) VALUE START
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
68
A(n)____ synonym is used by an individual to reference objects owned by that person.​

A) ​unique
B) ​duplicated
C) ​public
D) ​private
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
69
​The ____ options are used to determine whether Oracle12c should begin reissuing values from the sequence once the minimum or maximum value has been reached.

A) ​CYCLE | NOCYCLE
B) ​MINIMUMVALUE | MAXIMUMVALUE
C) ​CACHE | NOCACHE
D) ​REORDER | NOREORDER
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
70
If a sequence is set to pre-generate sequential values,____ values will be generated at one time by default.

A) ​5
B) ​10
C) ​15
D) ​20
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
71
Which command will create a sequence named NEWSEQUENCE to generate a series of integers?​

A) ​CREATE SEQUENCE newsequence;
B) ​CREATE SEQUENCE STARTING WITH 5;
C) ​CREATE SEQUENTIAL newsequence STARTING WITH 5;
D) ​none of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
72
When creating a sequence,which of the following is not an optional clause?​

A) ​INCREMENT BY value
B) ​CYCLE | NOCYCLE
C) ​MAXVALUE value | NOMAXVALUE
D) ​CREATE SEQUENCE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
73
Which command will modify a sequence?​

A) ​ALTER SEQUENCE...MODIFY
B) ​ALTER SEQUENCE sequencename
C) ​ALTER SEQUENTIAL sequencename
D) ​ALTER SEQUENTIAL sequencename
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
74
Which of the following can be used to provide an alternative,simplified name,to identify database objects?​

A) view
B) index
C) synonym
D) sequence
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
75
​Which option is used to have Oracle12c pre-generate a set of values and store those values in the server's memory?

A) ​INTERVAL STORE
B) ​CACHE VALUE
C) ​CACHE
D) ​INCREMENT BY
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
76
The ____ clause is used to specify the interval between two sequential values.

A) INTERVAL SIZE
B) INCREMENT BY
C) STEP BY
D) START WITH
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
77
​Which command will create an index?

A) ​CREATE INDEX indexname IN tablename (columnname)
B) ​CREATE INDEX indexname REFERENCE (columnname)
C) ​CREATE INDEX indexname ON tablename (columnname)
D) ​CREATE INDEX indexname INCREMENT BY (columnname)
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
78
Which command will delete a sequence?​

A) ​ALTER SEQUENCE...DELETE
B) ​ALTER SEQUENCE...DROP
C) ​DELETE SEQUENCE sequencename
D) ​DROP SEQUENCE sequencename
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
79
When working with cached sequence values,which of the following is correct?​

A) ​The cache option instructs Oracle 12c to return the sequence values in the same order in which the user requests were received.
B) ​The cache option instructs Oracle 12c not to generate any more numbers after the minimum or maximum value has been reached.
C) ​When a value has been generated and cached,that value has been assigned and cannot be regenerated until the sequence begins a new cycle.
D) ​The highest value for a cached number is 10^44.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
80
Which of the following is used to establish a minimum or maximum value,respectively,for a sequence?​

A) ​MINIMUMVALUE | MAXIMUMVALUE
B) ​MINVALUE | MAXVALUE
C) ​STARTWITH | ENDWITH
D) ​BEGINVALUE | ENDVALUE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 138 في هذه المجموعة.