310-811 Exam
Sun Certified MySQL 5.0 Database Administrator Part II
- 科目编号:310-811
- 科目名称:Sun Certified MySQL 5.0 Database Administrator Part II
- 考题数目:138 Q&As
- 更新日期:2010-05-11
- 价 格 :
¥ 462.00¥ 413.00
此题库需要特別定制。如需定制,您可以联系我们。2~3周內可以交付相应的认证考试题库。
选择 Testinside 310-811 题库
310-811 考试是 SUN 公司的 Sun Certified MySQL 5.0 Database Administrator Part II 认证考试官方代号,TestInside 310-811 权威考试题库软件是 SUN 认证厂商的授权产品,TestInside 绝对保证第一次参加 310-811 考试的考生即可顺利通过,否则承诺全额退款!
Sun Certified MySQL 5.0 Database Administrator Part II 认证作为全球IT领域专家 SUN 热门认证之一,是许多大中IT企业选择人才标准的必备条件。 如果你正在准备 310-811 考试,为 SUN Sun Certified MySQL 5.0 Database Administrator Part II认证做最后冲刺,又苦于没有绝对权威的考试真题模拟, TestInside 希望能助你成
1、Testinside考题大师310-811试题都是考试原题的完美组合,覆盖率95%以上,答案由多位专业资深讲师原版破解得出,正确率100%,只要您使用本站的考试题库参加310-811 考试,我们保证您一次轻松通过考试;
2、售后服务第一!我们相信要想在当今时代取得成功,必须为广大用户提供全套的周到细致的全程优质售后服务,只有客户满意了,我们才能发展。客户至上是我们Testinside考题大师的一贯宗旨;
3、Testinside实行“一次不过全额退款”承诺。如果您购买我们310-811的考题,只要不是首次通过,凭盖有PROMETRIC或VUE考试中心钢印的考试成绩单,我们将退还您购买310-811考题大师的全部费用,绝对保证您的利益不受到任何的损失;
4、本站310-811题库根据310-811考试的变化动态更新,在厂家考题每次发生变化后,我们承诺2天内更新310-811题库。确保310-811考题的覆盖率始终都在95%以上;我们提供2种 310-811 考题大师版本供你选择。
5、软件版本310-811 考试题库
优点:具有学习模式,测试模式,线上自动升级
缺点:仅限固定电脑使用,不可打印为文本,只能PC阅读
6、PDF 格式310-811 考试题库(部分最新更新科目已不提供PDF)
优点:不需下载安装软件,方便用户打印和携带,但也带来了可随意复制的弊端,因此我们提醒用户不得随意公开或出售本站的310-811题库,一经发现立即取消其升级资格,且不予退款。
缺点:不具备测试模式,通过查看 Testinside.cn网站及查收我们的更新E-MAIL获取更新信息。
Exam : SUN 310-811
Title : Sun Certified MySQL 5.0 Database Administrator Part II
1. How can the SHOW PROCESSLIST command be helpful when optimizing queries?
A. It shows if a query is using an index or not.
B. It shows how the server processes a query.
C. If checked periodically, it can reveal queries that cause other queries to hang.
D. It shows the percentage of processing power that each query is using on a server.
Answer: C
2. Which of the following best describes why InnoDB tables should always have primary keys and why they should be short?
A. Because InnoDB uses primary keys to locate tables, and shorter keys make quicker lookups.
B. Because InnoDB uses primary keys to locate table rows, and shorter keys make quicker lookups.
C. Because InnoDB stores pointers in a log to all the primary keys and shorter keys make this log smaller.
Answer: B
3. Is the following statement true or false? The username you use to connect to MySQL must be the same as the login used to access the operating system.
A. true
B. false
Answer: B
4. Which of the following statements are required to create a key cache of 4 MB, assign the MyISAM table world.City to it and preload the index?
A. mysql> SET GLOBAL city_cache.key_buffer_size = 4194304;mysql> CACHE INDEX world.City IN city_cache;mysql> LOAD INDEX INTO CACHE world.City;
B. mysql> ALTER TABLE world.city KEY_CACHE = 4194304;
C. mysql> CREATE CACHE FOR world.City SIZE = 4194304;
D. It is not possible to create a key cache for a specific MyISAM table, only the global key cache can be used.
Answer: A
5. Which of the following best describes how the relay log works?
A. It records the times when the slave connects to the master.
B. When a slave receives a change from the master, it is recorded in the relay log first and processed later.
C. When a slave receives a change from the master, it is processed first and then recorded in the relay log.
Answer: B
6. Consider the following:
mysql> EXPLAIN SELECT Name FROM Country WHERE Code = 'CAN'G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: Country
type: const
possible_keys: PRIMARY
key: PRIMARY
key_len: 3
ref: const
rows: 1
Extra:
Which of the following best describes the meaning of the value of the type column?
A. The table has exactly one row.
B. Several rows may be read from the table.
C. Only one row of all its rows need to be read.
Answer: C
7. With replication, what on the master is used to send commands to the slave?
A. The relay log.
B. The binary log.
C. The SQL Thread.
Answer: B
8. Given the following MyISAM table structure:
mysql> desc city;
+-------------+----------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------------+----------+------+-----+---------+----------------+
| ID | int(11) | | PRI | NULL | auto_increment |
| Name | char(35) | | | | |
| CountryCode | char(3) | | | | |
| District | char(20) | | | | |
| Population | int(11) | | MUL | 0 | |
+-------------+----------+------+-----+---------+----------------+
and the following SQL statement:
SELECT Population
FROM city
WHERE Population = 10000
ORDER BY Population
LIMIT 5;
which of the following statements best describes how MySQL optimizer executes the query?
A. The optimizer uses the primary key column ID to read the index values, then uses the index on Population to filter the results. The optimizer will always choose to use a unique index first, then use a secondary index if available.
B. The optimizer uses the index on the Population column to search and filter the WHERE clause. A temporary table is used to perform a filesort on the results, and then only 5 records are returned to the client.
C. The optimizer uses the index on the Population column to search, filter and sort the Population column, then returns 5 records to the client. The optimizer does not need to read the data rows, and can return values from the index only, because the index contains just integer values that form a leftmost prefix for the key.
D. The optimizer uses the index on the Population column to search, filter and sort the Population column, and returns 5 records to the client. The optimizer does not need to read the data rows, and can return values from the index only because only those columns where specified in the SELECT statement.
E. The optimizer will never read data from disk, since MySQL caches both data and index in the key buffer.
Answer: D
TestInside 的优势
310-811 试题的质量和价值
TestInside 模拟测试题具有最高的专业技术含量,只供具有相关专业知识的专家和学者学习和研究之用。
100% 保证您通过 310-811 的考试
如果你使用 TestInside 模拟测试,我们将保证你的第一次参加考试即取得成功,否则,我们将全额退款!
试用后再购买
TestInside 提供每种产品免费测试。在您决定购买之前,请检测联接,可能存在的问题及试题质量和适用性。
TestInside认证考试题库网专业提供SUN 310-811 最新题库下载,完全覆盖 310-811 考试原题。

