Home > Store

MySQL 5.0 Certification Study Guide

Register your product to gain access to bonus material or receive a coupon.

MySQL 5.0 Certification Study Guide

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2006
  • Dimensions: 7" x 9"
  • Pages: 672
  • Edition: 1st
  • Book
  • ISBN-10: 0-672-32812-7
  • ISBN-13: 978-0-672-32812-1

This is the official guide to passing the two MySQL certification tests for MySQL 5, the long-awaited major revision of MySQL. The number of MySQL certification exams taken has doubled in the last six months.

Certcities.com lists the MySQL certification as one of the top 10 certifications to grow in 2005. MySQL professionals need a way to distinguish themselves from the vast majority of database administrators and developers. With more than 4 million active installations, MySQL is the world's most popular open-source database. Known for its speed, reliability and case of use, MySQL has become a low-cost alternative to expensive database systems such as Oracle, IBM and Microsoft. MySQL AB has aggressively improved the feature set of MySQL with MySQL 5, making it more suitable for enterprise-level applications and uses. The MySQL certification tests, available at over 3,000 PearsonVUE testing centers, is a key component of this enterprise growth strategy, establishing a base level of skills for database users, administrators and programmers.

The MySQL Core Certification is aimed at the database user who wants proof of his or her abilities in such fundamental areas as SQL, data entry and maintenance, and data extraction. The MySQL Professional Certification test is designed for the advanced user who wants to prove his or her knowledge in such areas as database management, installation, security, disaster prevention and optimization. Both tests are thoroughly covered in the MySQL 5.0 Certification Study Guide. Written by Paul DuBois, the leading author of books on MySQL topics, and reviewed for technical accuracy by MySQL AB, this book is the fastest, most reliable way for MySQL users, developers, and administrators to prepare for either of the MySQL tests.

Sample Content

Online Sample Chapters

An Overview of MySQL Query Browser's Features and Capabilities

MySQL Query Browser

Table of Contents

Introduction.

About This Book.

    Sample Exercises

    Other Required Reading

      Manuals

      Sample Data

      Study Guide Errata

      Certification Information at www.mysql.com

      The MySQL Certification Candidate Guide

      The Certification Mailing List

    Conventions Used in This Book

      Running MySQL on Microsoft Windows

    About the Exams

      Registering for an Exam

      Going to the Exam

      Taking the Exam

      Reading Questions

      Answering Questions

      After the Exam

      Retaking Exams

      Warning

    Interpreting DESCRIBE Output

    Sample Tables

MYSQL DEVELOPER EXAMS.

MySQL Developer I Exam.

1. Client/Server Concepts.

    General MySQL Architecture

    Invoking Client Programs

      General Command Option Syntax

      Connection Parameter Options

      Using Option Files

      Selecting a Default Database

      Establishing a Connection with a GUI Client

    Server SQL Modes

2. The mysql Client Program.

    Using mysql Interactively

    Statement Terminators

    The mysql Prompts

    Using Editing Keys in mysql

    Using Script Files with mysql

    mysql Output Formats

    Client Commands and SQL Statements

    Using Server-Side Help

    Using the --safe-updates Option

3. MySQL Query Browser.

    MySQL Query Browser Capabilities

    Using MySQL Query Browser

    Using the Query Window

      Entering Queries

      The Result Area

      The Script Editor

      Stored Routine Management

      The Object and Information Browsers

    The MySQL Table Editor

    Connection Management

      Using the Connection Dialog

      Editing Connection Profiles

    The Options Dialog

4. MySQL Connectors.

    MySQL Client Interfaces

    MySQL Connector/ODBC

    MySQL Connector/J

    MySQL Connector/NET

5. Data Types.

    Data Type Overview

    Numeric Data Types

      Integer Data Types

      Floating-Point Data Types

      Fixed-Point Data Types

    The BIT Data Type

    String Data Types

      Character Set Support

      Non-Binary String Data Types: _CHAR, VARCHAR, TEXT

      Binary String Data Types: BINARY, VARBINARY, BLOB

      The ENUM and SET Data Types

    Temporal Data Types

      The DATE, TIME, DATETIME, and YEAR Data Types

      The TIMESTAMP Data Type

      Per-Connection Time Zone Support

    Column Attributes

      Numeric Column Attributes

      String Column Attributes

      General Column Attributes

    Using the AUTO_INCREMENT Column Attribute

    Handling Missing or Invalid Data Values

      Handling Missing Values

      Handling Invalid Values in Non-Strict Mode

      Handling Invalid Values in Strict Mode

      Enabling Additional Input Data Restrictions

      Overriding Input Data Restrictions

6. Identifiers.

    Identifier Syntax

    Case Sensitivity of Identifiers

    Using Qualified Names

    Using Reserved Words as Identifiers

7. Databases.

    Database Properties

    Creating Databases

    Altering Databases

    Dropping Databases

    Obtaining Database Metadata

8. Tables and Indexes.

    Table Properties

    Creating Tables

      Creating Tables Using an Explicit Definition

      Specifying the Storage Engine for a Table

      Creating Tables Based on Existing Tables

      Using TEMPORARY Tables

    Altering Tables

      Adding and Dropping Columns

      Modifying Existing Columns

      Renaming a Table

      Specifying Multiple Table Alterations

    Dropping Tables

    Emptying Tables

    Indexes

      Types of Indexes

      Creating Indexes

      Choosing an Indexing Algorithm

    Dropping Indexes

    Obtaining Table and Index Metadata

9. Querying for Data.

    Using SELECT to Retrieve Data

    Specifying Which Columns to Retrieve

      Renaming Retrieved Columns

      Identifying the Database Containing a Table

    Specifying Which Rows to Retrieve

      Using ORDER BY to Sort Query Results

      The Natural Sort Order of Data Types

      Limiting a Selection Using LIMIT

      Using DISTINCT to Eliminate Duplicates

    Aggregating Results

      The MIN() and MAX() Aggregate Functions

      The SUM() and AVG() Aggregate Functions

      The COUNT() Aggregate Function

      The GROUP_CONCAT() Function

      Aggregation for NULL Values or Empty Sets

    Grouping Results

      GROUP BY and Sorting

      Selecting Groups with HAVING

      Using GROUP BY and WITH ROLLUP

    Using UNION

10. SQL Expressions.

    Components of SQL Expressions

    Numeric Expressions

    String Expressions

      Case Sensitivity in String Comparisons

      Using LIKE for Pattern Matching

    Temporal Expressions

    NULL Values

    Functions in SQL Expressions

      Comparison Functions

      Control Flow Functions

      Aggregate Functions

      Mathematical Functions

      String Functions

      Temporal Functions

      NULL-Related Functions

    Comments in SQL Statements

11. Updating Data.

    Update Operations

    The INSERT Statement

      Adding Multiple Records with a Single INSERT Statement

      Handling Duplicate Key Values

      Using INSERT ... ON DUPLICATE KEY UPDATE

    The REPLACE Statement

    The UPDATE Statement

      Using UPDATE with ORDER BY and LIMIT

      Preventing Dangerous UPDATE Statements

      Multiple-Table UPDATE Statements

    The DELETE and TRUNCATE TABLE Statements

      Using DELETE with ORDER BY and LIMIT

      Multiple-Table DELETE Statements

    Privileges Required for Update Statements

MySQL Developer II Exam.

12. Joins.

    Overview

    Writing Inner Joins

      Writing Inner Joins with the Comma Operator

      Writing Inner Joins with INNER JOIN

    Writing Outer Joins

      Writing LEFT JOIN Queries

      Writing RIGHT JOIN Queries

    Resolving Name Clashes Using Qualifiers and Aliases

      Qualifying Column Names

      Qualifying and Aliasing Table Names

    Multiple-Table UPDATE and DELETE Statements

13. Subqueries.

    Types of Subqueries

    Subqueries as Scalar Expressions

    Correlated Subqueries

    Comparing Subquery Results to Outer Query Columns

      Using ALL, ANY, and SOME

      Using IN

      Using EXISTS

    Comparison Using Row Subqueries

    Using Subqueries in the FROM Clause

    Converting Subqueries to Joins

      Converting Subqueries to Inner Joins

      Converting Subqueries to Outer Joins

    Using Subqueries in Updates

14. Views.

    Reasons to Use Views

    Creating Views

      Restrictions on Views

      View Algorithms

      Updatable Views

    Altering Views

    Dropping Views

    Checking Views

    Obtaining View Metadata

    Privileges Required for Views

15. Importing and Exporting Data.

    Import and Export Operations

    Importing and Exporting Using SQL

      Importing Data with LOAD DATA INFILE

      Exporting Data with SELECT ... INTO OUTFILE

      Data File Format Specifiers

      Importing and Exporting NULL Values

    Importing and Exporting Data from the Command Line

      Importing Data with mysqlimport

      Exporting Data with mysqldump

16. User Variables.

    User Variable Syntax

    User Variable Properties

17. Prepared Statements.

    Benefits of Prepared Statements

    Using Prepared Statements from the mysql Client

    Preparing a Statement

    Executing a Prepared Statement

    Deallocating Prepared Statements

18. Stored Procedures and Functions.

    Benefits of Stored Routines

    Differences Between Stored Procedures and Functions

    The Namespace for Stored Routines

    Defining Stored Routines

    Creating Stored Routines

      Compound Statements

      Declaring Parameters

      The DECLARE Statement

      Variables in Stored Routines

      Conditions and Handlers

      Cursors

      Retrieving Multiple Result Sets

      Flow Control

    Altering Stored Routines

    Dropping Stored Routines

    Invoking Stored Routines

    Obtaining Stored Routine Metadata

    Stored Routine Privileges and Execution Security

19. Triggers.

    Reasons to Use Triggers

    Trigger Concepts

    Creating a Trigger

    Restrictions on Triggers

    Referring to Old and New Column Values

    Destroying a Trigger

    Privileges Required for Triggers

20. Obtaining Database Metadata.

    Overview of Metadata Access Methods

    Using INFORMATION_SCHEMA to Obtain Metadata

    Using SHOW and DESCRIBE to Obtain Metadata

    Using mysqlshow to Obtain Metadata

21. Debugging MySQL Applications.

    Interpreting Error Messages

    The SHOW WARNINGS Statement

    The SHOW ERRORS Statement

    The perror Utility

22. Basic Optimizations.

    Overview of Optimization Principles

    Using Indexes for Optimization

      Types of Indexes

      Principles for Index Creation

      Indexing Column Prefixes

      Leftmost Index Prefixes

    General Query Enhancement

      Query Rewriting Techniques

      Using EXPLAIN to Obtain Optimizer Information

      Optimizing Queries by Limiting Output

      Using Summary Tables

      Optimizing Updates

    Choosing Appropriate Storage Engines

    Normalization

MYSQL DBA EXAMS.

MySQL DBA I Exam.

23. MySQL Architecture.

    Client/Server Overview

    Communication Protocols

    The SQL Parser and Storage Engine Tiers

    How MySQL Uses Disk Space

    How MySQL Uses Memory

24. Starting, Stopping, and Configuring MySQL.

    Types of MySQL Distributions

      MySQL Binary Distributions

      MySQL Source Distributions

    Starting and Stopping MySQL Server on Windows

      Server Startup Prerequisites on Windows

      Running MySQL Server Manually on Windows

      Running MySQL Server as a Windows Service

    Starting and Stopping MySQL Server on Unix

      Server Startup Prerequisites on Unix

      Choosing a Server Startup Method on Unix

    Runtime MySQL Configuration

    Log and Status Files

      The General Query Log

      The Binary Log

      The Slow Query Log

      The Error Log

      Status Files

    Loading Time Zone Tables

    Security-Related Configuration

    Setting the Default SQL Mode

    Upgrading MySQL

25. Client Programs for DBA Work.

    Overview of Administrative Clients

    MySQL Administrator

    mysql

    mysqladmin

    mysqlimport

    mysqldump

    Client Program Limitations

26. MySQL Administrator.

    MySQL Administrator Capabilities

    Using MySQL Administrator

      Starting MySQL Administrator

      Selecting an Operational Mode

    Server Monitoring Capabilities

      Server Information

      Server Connections

      Health

      Server Logs

      Replication Status

      Catalogs

    Server Configuration

      Service Control

      Startup Variables

      User Administration

    Backup and Restore Capabilities

      Making Backups

      Restoring Backups

    MySQL Administrator System Tray Monitor

27. Character Set Support.

    Performance Issues

    Choosing Data Types for Character Columns

28. Locking.

    Locking Concepts

    Explicit Table Locking

    Advisory Locking

29. Storage Engines.

    MySQL Storage Engines

    The MyISAM Engine

      MyISAM Locking Characteristics

      MyISAM Row-Storage Formats

    The MERGE Engine

      MERGE Locking Characteristics

    The InnoDB Engine

      The InnoDB Tablespace and Logs

      InnoDB and ACID Compliance

      The InnoDB Transaction Model

      InnoDB Locking Characteristics

       InnoDB Isolation Levels, Multi-Versioning, and Concurrency

      Using Foreign Keys

      Configuring and Monitoring InnoDB

    The MEMORY Engine

      MEMORY Indexing Options

    The FEDERATED Engine

    The Cluster Storage Engine

    Other Storage Engines

30. Table Maintenance.

    Types of Table Maintenance Operations

    SQL Statements for Table Maintenance

      CHECK TABLE

      REPAIR TABLE

      ANALYZE TABLE

      OPTIMIZE TABLE

    Client and Utility Programs for Table Maintenance

      The mysqlcheck Client Program

      The myisamchk Utility

      Options for mysqlcheck and myisamchk

    Repairing InnoDB Tables

    Enabling MyISAM Auto-Repair

31. The INFORMATION_SCHEMA Database.

    INFORMATION_SCHEMA Access Syntax

    INFORMATION_SCHEMA Versus SHOW

    Limitations of INFORMATION_SCHEMA

32. Data Backup and Recovery Methods.

    Introduction

    Binary Versus Textual Backups

    Making Binary Backups

      Making Binary MyISAM Backups

      Making Binary InnoDB Backups

      Other Binary Backup Tools

      Conditions for Binary Portability

    Making Text Backups

      Making Text Backups via SQL

      Making Text Backups with mysqldump

      Making Text Backups with MySQL Administrator

    Backing Up Log and Status Files

    Replication as an Aid to Backup

    MySQL Cluster as Disaster Prevention

    Data Recovery

      Reloading mysqldump Output

      Reloading Dumps with MySQL Administrator

      Processing Binary Log Contents

33. Using Stored Routines and Triggers for Administration.

    Using Stored Routines and Triggers for Security Purposes

    Using Stored Routines to Enhance Performance

MySQL DBA II EXAM.

34. User Management.

    User Account Management

      Types of Privileges That MySQL Supports

      The Grant Tables

      Approaches to Account Management

      Creating and Dropping User Accounts

      Specifying Account Names

      Granting Privileges

      Revoking Privileges

      Changing Account Passwords

      When Privilege Changes Take Effect

      Specifying Resource Limits

      Privileges Needed for Account Management

    Client Access Control

      Connection Request Checking

      Statement Privilege Checking

      Resource Limit Checking

      Disabling Client Access Control

35. Securing the MySQL Installation.

    Security Issues

    Operating System Security

    Filesystem Security

    Log Files and Security

    Network Security

      Securing the Initial MySQL Accounts

      General Privilege Precautions

      MySQL Cluster Network Security

    FEDERATED Table Security

36. Upgrade-Related Security Issues.

    Upgrading the Privilege Tables

    Security-Related SQL Mode Values

37. Optimizing Queries.

    Identifying Candidates for Query Analysis

    Using EXPLAIN to Analyze Queries

      How EXPLAIN Works

      Analyzing a Query

      EXPLAIN Output Columns

    Using SHOW WARNINGS for Optimization

    MyISAM Index Caching

38. Optimizing Databases.

    General Table Optimizations

    Normalization

    MyISAM-Specific Optimizations

      MyISAM Row-Storage Formats

      Keep Optimizer Information Up to Date

      FULLTEXT Indexes

      Specifying MyISAM Maximum Row Count

    InnoDB-Specific Optimizations

    MERGE-Specific Optimizations

    MEMORY-Specific Optimizations

39. Optimizing the Server.

    Interpreting mysqld Server Information

      Accessing Server System Variables

      Accessing Server Status Variables

    Measuring Server Load

    Tuning Memory Parameters

      Global (Server-Wide) Parameters

      Per-Client Parameters

    Using the Query Cache

      Enabling the Query Cache

      Measuring Query Cache Utilization

40. Interpreting Diagnostic Messages.

    Sources of Diagnostic Information

    Using the Error Log for Diagnostic Purposes

    Using The Slow Query Log for Diagnostic Purposes

41. Optimizing the Environment.

    Choosing Hardware for MySQL Use

    Configuring Disks for MySQL Use

      Moving Databases Using Symbolic Links

      MyISAM Table Symlinking

    Network Issues

    Optimizing the Operating System for MySQL Use

42. Scaling MySQL.

    Using Multiple Servers

    Replication

      Setting Up Replication

      The Binary and Relay Logs

      Replication-Related Threads

      Replication Troubleshooting

      Replication Compatibility and Upgrading

APPENDIXES.

A. References.

B. Other Offers.

Index.

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020