Exam1pass
Easiest way to pass IT exams
Exam1pass Help You Pass Any IT Exam
http://www.exam1pass.com
Exam
: MySQL 005-002
Title
: Certified MySQL 5.0 DBA
Part I
Version : Demo
Exam1pass
Easiest way to pass IT exams
Exam1pass Help You Pass Any IT Exam
http://www.exam1pass.com
1. Will the following SELECT query list all of the tables in the INFORMATION_SCHEMA database? If not,
why?
SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_SCHEMA = 'INFORMATION_SCHEMA'
ORDER BY TABLE_NAME
A. Yes.
B. No; the INFORMATION_SCHEMA database does not contain information on itself.
C. No; the WHERE clause is incorrect. The correct field name is TABLE_SCHEMATA.
D. No; there is no table in the INFORMATION_SCHEMA database called TABLES.
Answer: A
2. Which of the following are some general capabilites of the mysql client program?
A. Create and Drop databases
B. Ping the server
C. Create, Drop, and modify tables and indexes.
D. Shutdown the server.
E. Create users.
F. Display replication server status.
Answer: ACEF
3. Suppose you have a server that has been started with the --myisam-recover option. When does the
server perform the check on the MyISAM tables?
A. Each time the server is started.
B. Each time it encounters an error.
C. Each time it opens the MyISAM table files.
D. Each time the CHECK TABLE command is issued.
Answer: C
4. Consider the following query:
DELETE FROM INFORMATION_SCHEMA.TABLES
Exam1pass
Easiest way to pass IT exams
Exam1pass Help You Pass Any IT Exam
http://www.exam1pass.com
WHERE table_schema = 'world'
AND table_name = 'Country'
What would be the result of executing this query?
A. An error would be issued
B. A warning would be issued
C. The row would be deleted from the INFORMATION_SCHEMA.TABLES table, and the table Country
would be dropped from the world database
D. The row would be deleted from the INFORMATION_SCHEMA, but the table Country in the world
database would be unaffected.
Answer: A
5. Which mysqld command line option disables incoming TCP/IP connections?
A. --shared-memory
B. --memlock
C.