87
DBA Tutorial Kai Voigt Senior MySQL Instructor Sun Microsystems [email protected] Santa Clara, April 12, 2010 Donnerstag, 8. April 2010

DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

  • Upload
    lekiet

  • View
    252

  • Download
    2

Embed Size (px)

Citation preview

Page 1: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

DBA TutorialKai VoigtSenior MySQL InstructorSun [email protected] Clara, April 12, 2010

Donnerstag, 8. April 2010

Page 2: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Certification Details http://www.mysql.com/certification/ Registration at Conference Closed Book Exams Non-Disclosure and Logo Usage Agreements 70 multiple-choice questions 90 minutes

Donnerstag, 8. April 2010

Page 3: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

MySQL Certification Study Guide http://www.mysql.com/certification/studyguides

Donnerstag, 8. April 2010

Page 4: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

New DBA 5.1 Hands On Exams Online real life tasks Need to pass 5 out of 5 mandatory tasks Need to pass 5 out of 10 optional tasks

Donnerstag, 8. April 2010

Page 5: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 1 MySQL Architecture (10%) Starting, Stopping, and Configuring MySQL (20%) Client Programs for DBA Work (5%) Character Set Support (5%) Locking (10%) Storage Engines (20%) Data (Table) Maintenance (10%) The INFORMATION_SCHEMA Database (5%) Data Backup and Recovery Methods (15%)

Donnerstag, 8. April 2010

Page 6: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 2 Stored Routines (5%) User Management (20%) Securing the Server (10%) Upgrade-Related Security Issues (5%) Optimizing Queries (15%) Optimizing Schemas (15%) Optimizing the Server (10%) Interpreting Error Messages (5%) Optimizing the Environment (5%) Scaling MySQL (10%)

Donnerstag, 8. April 2010

Page 7: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 1 MySQL Architecture (10%) Starting, Stopping, and Configuring MySQL (20%) Client Programs for DBA Work (5%) Character Set Support (5%) Locking (10%) Storage Engines (20%) Data (Table) Maintenance (10%) The INFORMATION_SCHEMA Database (5%) Data Backup and Recovery Methods (15%)

Donnerstag, 8. April 2010

Page 8: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Client/Server Overview OS independancy C Client Library Connectors

Donnerstag, 8. April 2010

Page 9: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Communication Protocols Windows Only: Named Pipes, Shared Memory --skip-networking Unix Sockets vs TCP/IP

Donnerstag, 8. April 2010

Page 10: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

SQL Parser & Storage Engines Two Tiers Storage Engines Independance

Donnerstag, 8. April 2010

Page 11: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

How MySQL uses Disk Space Data Directory InnoDB Table Space

Donnerstag, 8. April 2010

Page 12: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

How MySQL Uses Memory One Connection = One Thread Grant Table Buffer Key Buffer Cache Table Cache

Donnerstag, 8. April 2010

Page 13: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 1 MySQL Architecture (10%) Starting, Stopping, and Configuring MySQL (20%) Client Programs for DBA Work (5%) Character Set Support (5%) Locking (10%) Storage Engines (20%) Data (Table) Maintenance (10%) The INFORMATION_SCHEMA Database (5%) Data Backup and Recovery Methods (15%)

Donnerstag, 8. April 2010

Page 14: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Types of MySQL Distributions tar & RPM Binaries vs self-built

Donnerstag, 8. April 2010

Page 15: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Starting and Stopping, Windows Pre-initialized Data Directory Multiple mysqld Binaries --console Option Running mysql command line client Install mysqld as a service

Donnerstag, 8. April 2010

Page 16: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Starting and Stopping, Unix RPM: user, group, data directory Data Directory: /var/lib/mysql mysqld, mysqld_safe, mysql.server How to stop a MySQL server mysqld writes to stdout

Donnerstag, 8. April 2010

Page 17: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Runtime MySQL Configuration my.cnf / my.ini Option File vs Command Line General Startup Options

Donnerstag, 8. April 2010

Page 18: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Log and Status Files Problems with Logging General Log Slow Query Log Queries not using indexes

Donnerstag, 8. April 2010

Page 19: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Loading Time Zone Tables mysql_tzinfo_to_sql script

Donnerstag, 8. April 2010

Page 20: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Security-Related Configuration Passwords Filesystem Access

Donnerstag, 8. April 2010

Page 21: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

SQL Mode Use How to configure

Donnerstag, 8. April 2010

Page 22: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Upgrading MySQL Manual and Release Notes Basic Procedure

Donnerstag, 8. April 2010

Page 23: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 1 MySQL Architecture (10%) Starting, Stopping, and Configuring MySQL (20%) Client Programs for DBA Work (5%) Character Set Support (5%) Locking (10%) Storage Engines (20%) Data (Table) Maintenance (10%) The INFORMATION_SCHEMA Database (5%) Data Backup and Recovery Methods (15%)

Donnerstag, 8. April 2010

Page 24: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Client Programs mysql Command Line Client mysqladmin mysqlimport mysqldump

Donnerstag, 8. April 2010

Page 25: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 1 MySQL Architecture (10%) Starting, Stopping, and Configuring MySQL (20%) Client Programs for DBA Work (5%) Character Set Support (5%) Locking (10%) Storage Engines (20%) Data (Table) Maintenance (10%) The INFORMATION_SCHEMA Database (5%) Data Backup and Recovery Methods (15%)

Donnerstag, 8. April 2010

Page 26: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Character Set Support Performance Issues Disk Usage, Disk I/O, Memory Usage CHAR vs VARCHAR

Donnerstag, 8. April 2010

Page 27: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Break

Donnerstag, 8. April 2010

Page 28: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 1 MySQL Architecture (10%) Starting, Stopping, and Configuring MySQL (20%) Client Programs for DBA Work (5%) Character Set Support (5%) Locking (10%) Storage Engines (20%) Data (Table) Maintenance (10%) The INFORMATION_SCHEMA Database (5%) Data Backup and Recovery Methods (15%)

Donnerstag, 8. April 2010

Page 29: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Locking Concepts Read vs Write Locks Explicit vs Implicit Locks Advisory Locks Table vs Row Level Locks Deadlocks

Donnerstag, 8. April 2010

Page 30: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Explicit Table Locking LOCK TABLE READ LOCAL Releasing Table Locks Locking multiple tables

Donnerstag, 8. April 2010

Page 31: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 1 MySQL Architecture (10%) Starting, Stopping, and Configuring MySQL (20%) Client Programs for DBA Work (5%) Character Set Support (5%) Locking (10%) Storage Engines (20%) Data (Table) Maintenance (10%) The INFORMATION_SCHEMA Database (5%) Data Backup and Recovery Methods (15%)

Donnerstag, 8. April 2010

Page 32: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

MySQL Storage Engines Things to consider Default Engine Determine the storage engine Required Engines: MyISAM, Memory

Donnerstag, 8. April 2010

Page 33: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

The MyISAM Engine MERGE, FULLTEXT features LOW_PRIORITY, HIGH_PRIORITY Out of Disk Space No Deadlocks Fixed Format Compressed Format

Donnerstag, 8. April 2010

Page 34: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

The MERGE Engine Table Locking No Deadlocks

Donnerstag, 8. April 2010

Page 35: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

The InnoDB Engine Tablespace Multiversioning Deadlocks Auto-Recovery Foreign Keys Per-Table Tablespace Transactions SAVEPOINT Implicit Commits Isolation Levels

Donnerstag, 8. April 2010

Page 36: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

The MEMORY Engine General Characteristics BTREE vs HASH Indexes

Donnerstag, 8. April 2010

Page 37: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

The FEDERATED Engine Concepts of FEDERATED Engine How to define

Donnerstag, 8. April 2010

Page 38: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 1 MySQL Architecture (10%) Starting, Stopping, and Configuring MySQL (20%) Client Programs for DBA Work (5%) Character Set Support (5%) Locking (10%) Storage Engines (20%) Data (Table) Maintenance (10%) The INFORMATION_SCHEMA Database (5%) Data Backup and Recovery Methods (15%)

Donnerstag, 8. April 2010

Page 39: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

SQL Statements CHECK TABLE REPAIR TABLE ANALYZE TABLE OPTIMIZE TABLE Table Statistics

Donnerstag, 8. April 2010

Page 40: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Client and Utility Programs myisamchk mysqlcheck

Donnerstag, 8. April 2010

Page 41: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

MyISAM Auto-Repair --myisam-recover

Donnerstag, 8. April 2010

Page 42: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 1 MySQL Architecture (10%) Starting, Stopping, and Configuring MySQL (20%) Client Programs for DBA Work (5%) Character Set Support (5%) Locking (10%) Storage Engines (20%) Data (Table) Maintenance (10%) The INFORMATION_SCHEMA Database (5%) Data Backup and Recovery Methods (15%)

Donnerstag, 8. April 2010

Page 43: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

INFORMATION_SCHEMA List of Tables Read-Only INFORMATION_SCHEMA vs SHOW Limitations

Donnerstag, 8. April 2010

Page 44: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 1 MySQL Architecture (10%) Starting, Stopping, and Configuring MySQL (20%) Client Programs for DBA Work (5%) Character Set Support (5%) Locking (10%) Storage Engines (20%) Data (Table) Maintenance (10%) The INFORMATION_SCHEMA Database (5%) Data Backup and Recovery Methods (15%)

Donnerstag, 8. April 2010

Page 45: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Introduction Recovery = Backup + Binary Log Principles of MySQL Backup Binary vs Text Backup

Donnerstag, 8. April 2010

Page 46: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Making Binary Backups MyISAM Tables InnoDB Tables Binary Portability

Donnerstag, 8. April 2010

Page 47: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Making Text Backups SELECT INTO OUTFILE mysqldump

Donnerstag, 8. April 2010

Page 48: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Replication as an Aid to Backup Hot Backup How to Backup a Slave

Donnerstag, 8. April 2010

Page 49: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Data Recovery Load mysqldump File Binary Log mysqlbinlog --start-position --stop-position

Donnerstag, 8. April 2010

Page 50: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

End of Part 1

Donnerstag, 8. April 2010

Page 51: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

DBA TutorialKai VoigtSenior MySQL InstructorSun [email protected]

Santa Clara, April 20, 2009

Donnerstag, 8. April 2010

Page 52: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Certification Details http://www.mysql.com/certification/ Registration at Conference Closed Book Exams Non-Disclosure and Logo Usage Agreements 70 multiple-choice questions 90 minutes

Donnerstag, 8. April 2010

Page 53: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

MySQL Certification Study Guide http://www.mysql.com/certification/studyguides

Donnerstag, 8. April 2010

Page 54: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

New DBA 5.1 Hands On Exams Online real life tasks Need to pass 5 out of 5 mandatory tasks Need to pass 5 out of 10 optional tasks

Donnerstag, 8. April 2010

Page 55: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 2 Stored Routines (5%) User Management (20%) Securing the Server (10%) Upgrade-Related Security Issues (5%) Optimizing Queries (15%) Optimizing Schemas (15%) Optimizing the Server (10%) Interpreting Error Messages (5%) Optimizing the Environment (5%) Scaling MySQL (10%)

Donnerstag, 8. April 2010

Page 56: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Stored Procedures DEFINER/INVOKER Check incoming Data Restrict incoming Data Reduce Amount of Data Exchange

Donnerstag, 8. April 2010

Page 57: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 2 Stored Routines (5%) User Management (20%) Securing the Server (10%) Upgrade-Related Security Issues (5%) Optimizing Queries (15%) Optimizing Schemas (15%) Optimizing the Server (10%) Interpreting Error Messages (5%) Optimizing the Environment (5%) Scaling MySQL (10%)

Donnerstag, 8. April 2010

Page 58: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

User Account Management Username + Hostname Wildcards Grant Tables in mysql Database Global, Database, Table, Column, Routine Level ALL PRIVILEGES USAGE Privilege Grants Cache GRANT/REVOKE CREATE/DROP USER IDENTIFIED BY WITH GRANT OPTION SHOW GRANTS SET PASSWORD

Donnerstag, 8. April 2010

Page 59: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Client Access Control Two Stages Wildcards Hostnames, then Usernames

Donnerstag, 8. April 2010

Page 60: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 2 Stored Routines (5%) User Management (20%) Securing the Server (10%) Upgrade-Related Security Issues (5%) Optimizing Queries (15%) Optimizing Schemas (15%) Optimizing the Server (10%) Interpreting Error Messages (5%) Optimizing the Environment (5%) Scaling MySQL (10%)

Donnerstag, 8. April 2010

Page 61: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Filesystem Security Don‘t run mysql as root Log Files should be kept secret

Donnerstag, 8. April 2010

Page 62: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Network Security MySQL user names != OS user names mysql_secure_installation Script mysql Database FILE Privilege SHOW PROCESSLIST SUPER Privilege --skip-networking --bind-address

Donnerstag, 8. April 2010

Page 63: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

FEDERATED Table Security Connect String Storage Prevent Users from seeing password

Donnerstag, 8. April 2010

Page 64: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 2 Stored Routines (5%) User Management (20%) Securing the Server (10%) Upgrade-Related Security Issues (5%) Optimizing Queries (15%) Optimizing Schemas (15%) Optimizing the Server (10%) Interpreting Error Messages (5%) Optimizing the Environment (5%) Scaling MySQL (10%)

Donnerstag, 8. April 2010

Page 65: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Upgrade-Related Security Issues Upgrading Privilege Tables Strict SQL Mode Error for Division by Zero Zero Dates, Null Dates

Donnerstag, 8. April 2010

Page 66: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 2 Stored Routines (5%) User Management (20%) Securing the Server (10%) Upgrade-Related Security Issues (5%) Optimizing Queries (15%) Optimizing Schemas (15%) Optimizing the Server (10%) Interpreting Error Messages (5%) Optimizing the Environment (5%) Scaling MySQL (10%)

Donnerstag, 8. April 2010

Page 67: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Identifying Candidates for Analysis Binary Log Slow Query Log SHOW PROCESSLIST

Donnerstag, 8. April 2010

Page 68: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

EXPLAIN columns: possible_keys, key, ref, id Joins: Multiply row numbers Order of Tables type: eq_ref, range, const Multi-Column Indexes STRAIGHT JOIN

Donnerstag, 8. April 2010

Page 69: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

MyISAM Index Caching Global vs Table Level Key Buffer SET, CACHE INDEX, LOAD INDEX INTO

Donnerstag, 8. April 2010

Page 70: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Break

Donnerstag, 8. April 2010

Page 71: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 2 Stored Routines (5%) User Management (20%) Securing the Server (10%) Upgrade-Related Security Issues (5%) Optimizing Queries (15%) Optimizing Schemas (15%) Optimizing the Server (10%) Interpreting Error Messages (5%) Optimizing the Environment (5%) Scaling MySQL (10%)

Donnerstag, 8. April 2010

Page 72: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

General Table Optimization PROCEDURE ANALYSE() Normalization vs Denormalization

Donnerstag, 8. April 2010

Page 73: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

MyISAM-Specific Optimizations Compressed Tables Dynamic vs Fixed Row Format Split Table into Dynamic and Fixed Parts

Donnerstag, 8. April 2010

Page 74: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

InnoDB-Specific Optimizations Size of Primary Keys SELECT COUNT(*) Group Statements into Transactions OPTIMIZE TABLE

Donnerstag, 8. April 2010

Page 75: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 2 Stored Routines (5%) User Management (20%) Securing the Server (10%) Upgrade-Related Security Issues (5%) Optimizing Queries (15%) Optimizing Schemas (15%) Optimizing the Server (10%) Interpreting Error Messages (5%) Optimizing the Environment (5%) Scaling MySQL (10%)

Donnerstag, 8. April 2010

Page 76: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Tuning Memory Parameters Table Cache Small Default Values MyISAM Key Buffer InnoDB Buffer Pool Disabling InnoDB read_buffer_size Sort Buffer Join Buffer max_allowed_packet

Donnerstag, 8. April 2010

Page 77: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Using the Query Cache Characteristics query_cache_size query_cache_limit SHOW STATUS LIKE „qcache_%“

Donnerstag, 8. April 2010

Page 78: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 2 Stored Routines (5%) User Management (20%) Securing the Server (10%) Upgrade-Related Security Issues (5%) Optimizing Queries (15%) Optimizing Schemas (15%) Optimizing the Server (10%) Interpreting Error Messages (5%) Optimizing the Environment (5%) Scaling MySQL (10%)

Donnerstag, 8. April 2010

Page 79: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Diagnostics Error Log long_query_time Slow Query Log mysqldumpslow

Donnerstag, 8. April 2010

Page 80: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 2 Stored Routines (5%) User Management (20%) Securing the Server (10%) Upgrade-Related Security Issues (5%) Optimizing Queries (15%) Optimizing Schemas (15%) Optimizing the Server (10%) Interpreting Error Messages (5%) Optimizing the Environment (5%) Scaling MySQL (10%)

Donnerstag, 8. April 2010

Page 81: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Memory and Disks Memory is important Disk Seek Time is important RAID Seperate Log Files and Data Directory Using Symlinks Filesystem Selection

Donnerstag, 8. April 2010

Page 82: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Network and OS Latency and Throughput Process Limits max_connections

Donnerstag, 8. April 2010

Page 83: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Exam Content DBA 2 Stored Routines (5%) User Management (20%) Securing the Server (10%) Upgrade-Related Security Issues (5%) Optimizing Queries (15%) Optimizing Schemas (15%) Optimizing the Server (10%) Interpreting Error Messages (5%) Optimizing the Environment (5%) Scaling MySQL (10%)

Donnerstag, 8. April 2010

Page 84: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Using Multiple Servers Requirements Shared InnoDB tables

Donnerstag, 8. April 2010

Page 85: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Replication General Features Master-Slave MASTER_LOG_FILE, MASTER_LOG_POS master.info Relay Log Binary Log IO Thread, SQL Thread Unique Server IDs

Donnerstag, 8. April 2010

Page 86: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions.The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle.

Donnerstag, 8. April 2010

Page 87: DBA Tutorial - O'Reilly Mediaassets.en.oreilly.com/1/event/36/MySQL DBA Certification Tutorial... · DBA Tutorial Kai Voigt ... SQL Parser & Storage Engines Two Tiers ... Basic Procedure

Good Luck!

Donnerstag, 8. April 2010