网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
Consider the following: Which statement best describes the meaning of the value for the key_len column?()
A
It shows the total size of the index row
B
It shows how many columns in the index are examined
C
It shows the number of characters indexed in the key
D
It shows how many bytes will be used from each index row
参考答案
参考解析
解析:
暂无解析
更多 “单选题Consider the following: Which statement best describes the meaning of the value for the key_len column?()A It shows the total size of the index rowB It shows how many columns in the index are examinedC It shows the number of characters indexed in the keyD It shows how many bytes will be used from each index row” 相关考题
考题
To the author, the best thing that shows how a man is full of contradictions is the matter of sleep.()
考题
In which scenario would index be most useful? ()
A. The indexed column is declared as NOT NULL.B. The indexed columns are used in the FROM clause.C. The indexed columns are part of an expression.D. The indexed column contains a wide range of values.
考题
Consider the following:Which statement best describes the meaning of the value for the key_len column?()
A.It shows the total size of the index rowB.It shows how many columns in the index are examinedC.It shows the number of characters indexed in the keyD.It shows how many bytes will be used from each index row
考题
Of the two types of sentence stress, sense stress shows contrast, while logical stress shows meaning.()
考题
The Device Manager in Windows XP shows that an incompatible device driver is installed. Which of the following BEST describes the icon that is displaying next to that device?()A、Yellow question mark next to deviceB、Black checkmark next to deviceC、Yellow exclamation point next to deviceD、Red X next to the device
考题
Which two statements are true about constraints? ()A、The UNIQUE constraint does not permit a null value for the column.B、A UNIQUE index gets created for columns with PRIMARY KEY and UNIQUE constraints.C、The PRIMARY KEY and FOREIGN KEY constraints create a UNIQUE index.D、The NOT NULL constraint ensures that null values are not permitted for the column.
考题
Which two statements are true about a bitmap index? ()A、It is recommended for the columns that have unique values.B、It can be converted to a B-tree index by using the ALTER INDEX command.C、It has a bitmap segment for each distinct value in the key column, containing a string of bits in which each bit represents the presence or absence of a key column value.D、Updating the key column locks the whole bitmap segment that contains the bit for the key value to be updated.
考题
Which statement describes the effect on an index, when the indexed column for the rows is updatedin the base table()A、An update in a leaf row takes place.B、The index becomes invalid after the update.C、The leaf block containing the row to be updated is marked as invalid.D、A row in the leaf block of the index for the key value is logically deleted and a new leaf row is inserted
考题
When tuning Automatic PGA Memory Management, which of the following views will provide the information specified?() A、 The V$PGA_TARGET_ADVICE view shows the predicted cache hit-ratio improvement if you increase PGA_AGGREGATE_TARGETB、 The V$PGA_TARGET_ADVICE view shows how the V$SQL_WORKAREA histogram will change if you change the value of PGA_AGGREGATE_TARGETC、 The V$PGA_TARGET_ADVICE_HISTOGRAM view shows how the V$SQL_WORKAREA_HISTOGRAM will change if you switch between Manual and Automatic PGA Memory ManagementD、 The V$PGA_TARGET_ADVICE view shows how performance will improve for the different work areas if you switch from Manual to Automatic PGA Memory Management
考题
You are using Oracle Enterprise Manager to estimate the size of a table to be created. You have typed data regarding the column names, data types, sizes of the columns, and the projected number of rows in the table. Which additional information does the Oracle Enterprise Manager return?()A、 space allocated in the tablespaceB、 space required for the bitmap index on a column of the tableC、 space remaining in the tablespace after creating the tableD、 estimated value of the PCTFREE storage parameter
考题
Consider the following statement: SQL EXECUTE DBMS_STATS.GATHER_SHEMA_STATS (- 2 ownname = ‘OE’, - 3 estimate_percent = DBMS_STATS.AUTO_SAMPLE_SIZE, - 4 method opt = ‘for all columns size AUTO’); What is the effect of ‘for all columns size AUTO’ of the METHOD_OPT option?()A、The Oracle server creates a new histogram based on existing histogram definitions for all table, column, and index statistics for the OE schema. B、The Oracle server creates a histogram based on data distribution regardless of how the application uses the column/s for all table, column, and index statistics for the OE schema.C、The Oracle server creates a histogram based on data and application usage of the column/s for all table, column, and index statistics for the OE schema. D、The Oracle server creates a histogram based on application usage, regardless of data distribution, for all table, column, and index statistics for the OE schema.
考题
In which scenario would index be most useful?()A、The indexed column is declared as NOT NULL.B、The indexed columns are used in the FROM clause.C、The indexed columns are part of an expression.D、The indexed column contains a wide range of values.
考题
which one of the following best describes the use of hidden column formula?()A、views can be hidden based on a formula B、hidden columns are not a supported feature C、table columns can be hidden based on a formula D、view columns can be displayed or hidden based on a formula
考题
单选题Which statement describes the effect on an index, when the indexed column for the rows is updatedin the base table()A
An update in a leaf row takes place.B
The index becomes invalid after the update.C
The leaf block containing the row to be updated is marked as invalid.D
A row in the leaf block of the index for the key value is logically deleted and a new leaf row is inserted
考题
单选题You are using Oracle Enterprise Manager to estimate the size of a table to be created. You have typed data regarding the column names, data types, sizes of the columns, and the projected number of rows in the table. Which additional information does the Oracle Enterprise Manager return?()A
space allocated in the tablespaceB
space required for the bitmap index on a column of the tableC
space remaining in the tablespace after creating the tableD
estimated value of the PCTFREE storage parameter
考题
单选题In which scenario would index be most useful? ()A
The indexed column is declared as NOT NULL.B
The indexed columns are used in the FROM clause.C
The indexed columns are part of an expression.D
The indexed column contains a wide range of values.
考题
单选题The Device Manager in Windows XP shows that an incompatible device driver is installed. Which of the following BEST describes the icon that is displaying next to that device?()A
Yellow question mark next to deviceB
Black checkmark next to deviceC
Yellow exclamation point next to deviceD
Red X next to the device
考题
多选题Which two statements are true about a bitmap index? ()AIt is recommended for the columns that have unique values.BIt can be converted to a B-tree index by using the ALTER INDEX command.CIt has a bitmap segment for each distinct value in the key column, containing a string of bits in which each bit represents the presence or absence of a key column value.DUpdating the key column locks the whole bitmap segment that contains the bit for the key value to be updated.
考题
多选题Which two statements are true about constraints? ()AThe UNIQUE constraint does not permit a null value for the column.BA UNIQUE index gets created for columns with PRIMARY KEY and UNIQUE constraints.CThe PRIMARY KEY and FOREIGN KEY constraints create a UNIQUE index.DThe NOT NULL constraint ensures that null values are not permitted for the column.
考题
多选题Examine the SQL statement that creates ORDERS table: CREATE TABLE orders (SER_NO NUMBER UNIQUE, ORDER_ID NUMBER, ORDER_DATE DATE NOT NULL, STATUS VARCHAR2(10) CHECK (status IN ('CREDIT', 'CASH')), PROD_ID NUMBER REFERENCES PRODUCTS(PRODUCT_ID), ORD_TOTAL NUMBER, PRIMARY KEY (order_id, order_date)); For which columns would an index be automatically created when you execute the above SQL statement? ()ASER_NOBORDER_IDCSTATUSDPROD_IDEORD_TOTALFcomposite index on ORDER_ID and ORDER_DATE
考题
单选题When tuning Automatic PGA Memory Management, which of the following views will provide the information specified?()A
The V$PGA_TARGET_ADVICE view shows the predicted cache hit-ratio improvement if you increase PGA_AGGREGATE_TARGETB
The V$PGA_TARGET_ADVICE view shows how the V$SQL_WORKAREA histogram will change if you change the value of PGA_AGGREGATE_TARGETC
The V$PGA_TARGET_ADVICE_HISTOGRAM view shows how the V$SQL_WORKAREA_HISTOGRAM will change if you switch between Manual and Automatic PGA Memory ManagementD
The V$PGA_TARGET_ADVICE view shows how performance will improve for the different work areas if you switch from Manual to Automatic PGA Memory Management
考题
单选题Which of the following is the best way to combine sentences 9 and 10 (reproduced below)?Huge billboards advertise shows, shops, and mutts. Hotels, motels, and tour buses are everywhere.A
The streets are lined with hotels, motels, tour buses, and huge billboards advertising shows, shops, and mails.B
The streets are lined with hotels, motels, and tour buses whose occupants take in huge billboards that are everywhere advertising shows, shops, and malls.C
Huge billboards surrounding hotels, motels, and tour buses, which are everywhere, advertise shows, shops, and mails.D
Huge billboards advertise shows, shops, and malls and surround hotels, motels, and tour buses, which are everywhere.E
The streets are lined: hotels, motels, and tour buses me everywhere, and their occupants take in huge billboards advertising shows, shops, and malls.
考题
单选题Consider the following statement: SQL EXECUTE DBMS_STATS.GATHER_SHEMA_STATS (- 2 ownname = ‘OE’, - 3 estimate_percent = DBMS_STATS.AUTO_SAMPLE_SIZE, - 4 method opt = ‘for all columns size AUTO’); What is the effect of ‘for all columns size AUTO’ of the METHOD_OPT option?()A
The Oracle server creates a new histogram based on existing histogram definitions for all table, column, and index statistics for the OE schema. B
The Oracle server creates a histogram based on data distribution regardless of how the application uses the column/s for all table, column, and index statistics for the OE schema.C
The Oracle server creates a histogram based on data and application usage of the column/s for all table, column, and index statistics for the OE schema. D
The Oracle server creates a histogram based on application usage, regardless of data distribution, for all table, column, and index statistics for the OE schema.
考题
多选题Examine the SQL statement that creates ORDERS table: CREATE TABLE orders (SER_NO NUMBER UNIQUE, ORDER_ID NUMBER, ORDER_DATE DATE NOT NULL, STATUS VARCHAR2(10) CHECK (status IN ('CREDIT', 'CASH')), PROD_ID NUMBER REFERENCES PRODUCTS(PRODUCT_ID), ORD_TOTAL NUMBER, PRIMARY KEY (order_id, order_date)); For which columns would an index be automatically created when you execute the above SQL statement? ()ASER_NOBORDER_IDCSTATUSDPROD_IDEORD_TOTALFcomposite index on ORDER_ID and ORDER_DATE
考题
单选题A total of 250 students participate in five different school-sponsored clubs. The bar graph below shows the number of students who participate in each club. 40% of the members of Club A are in Club B. How many of the members in Club A are not in Club B?A
28B
32C
42D
48E
52
考题
单选题which one of the following best describes the use of hidden column formula?()A
views can be hidden based on a formula B
hidden columns are not a supported feature C
table columns can be hidden based on a formula D
view columns can be displayed or hidden based on a formula
热门标签
最新试卷