SunQuest
 
       MySQL
  Home arrow MySQL arrow Page 9 - Back to Basics
Dev Shed Forums 
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Actuate Whitepapers 
VeriSign Whitepapers 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
MYSQL

Back to Basics
By: O'Reilly Media
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 3 stars3 stars3 stars3 stars3 stars / 19
    2004-06-08

    Table of Contents:
  • Back to Basics
  • Binary Versus Compiled From Source Installations
  • MySQL.com Binary Versus Distribution Binary
  • Configuration Files
  • File Format
  • Sample Files
  • Reconfiguration
  • The SHOW Commands
  • SHOW PROCESSLIST
  • SHOW STATUS

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT

    Generate data entry and reporting .NET Web apps in minutes, straight from your database. Read our FREE whitepaper “Build Web 2.0 Applications Without Hand-Coding” Download now!

    Back to Basics - SHOW PROCESSLIST


    (Page 9 of 10 )

    The other SHOW command we’ll look at is SHOW PROCESSLIST . It outputs a list of what each thread is doing at the time you execute the command.* It’s roughly equivalent to the ps or top commands in Unix or the Task Manager in Windows.

    (* Not all threads appear in the SHOW PROCESSLIST output. The thread that handles incoming network connec tions, for example, is never listed.)

    Executing it produces a process list in tabular form:

    mysql> SHOW PROCESSLIST;

       +----+---------+-----------+------+-------------+------+-------+-------------------+    | Id  |   User   |    Host    |  db   | Command | Time | State |         Info          |    +----+---------+-----------+------+-------------+------+-------+-------------------+

       | 17 | jzawodn | localhost | NULL |   Query     |   0    | NULL  | show processlist |    +----+---------+-----------+------+-------------+------+-------+-------------------+

    It’s common for the State and Info columns to contain more information that pro duces lines long enough to wrap onscreen. So it’s a good idea to use the G escape in the mysql command interpreter to produce vertical output rather than horizontal output:

    mysql> SHOW PROCESSLIST G

    *************************** 1. row ************************** *

      Id: 17
    User: jzawodn
    Host: localhost
    db: NUL L
    Command: Quer y
    Time: 0
    State: NUL L
    Info: show processlis t

    No matter which way you look at it, the same fields are included:

    I d The number that uniquely identifies this process. Since MySQL is a multi-threaded server, it really identifies the thread (or connection)and is unrelated to process IDs the operating system may use. As the operating system does with processes, MySQL starts numbering the threads at 1 and gives each new thread an ID one higher than the previous thread.

    User:

    The name of the MySQL user connected to this thread.

    Host

    The name of the host or IP address from which the user is connected. db The database currently selected. This may be NULL if the user didn’t specify a database.

    Command

    This shows the command state (from MySQL’s internal point of view) that the thread is currently in. Table 1 lists each command with a description of when you are likely to see it. The commands roughly correspond to various function calls in MySQL’s C API. Many commands represent very short-lived actions. Two of those that don’t, Sleep and Query , appear frequently in day-to- day usage.

    Table 1. Commands in SHOW PROCESSLIST output

    Command

    Meaning

    Binlog DumpThe slave thread is reading queries from the master’s binary log.
    Change userThe client is logging in as a different user.
    ConnectA new client is connecting.
    Connect OutThe slave thread is connecting to the master to read queries from its binary log.
    Create DBA new database is being created.
    DebugThe thread is producing debugging output. This is very uncommon.
    Delayed_insertThe thread is processing delayed inserts.
    Drop DBA database is being dropped. Field List The client has requested a list of fields in a table.
    Init DBThe thread is changing to a different database, typically as the result of a USE command.
    KillThe thread is executing a KILL command.
    PingThe client is pinging the server to see if it’s still connected. Processlist The client is running SHOW PROCESSLIST.
    QueryThe thread is currently executing a typical SQL query: SELECT, INSERT, UPDATE, DELETE. This is the most common state other than Sleep.
    QuitThe thread is being terminated as part of the server shutdown process.
    RefreshThe thread is issuing the FLUSH PRIVILEGE command.
    Register SlaveA slave has connected and is registering itself with the master.
    ShutdownThe server is being shut down.
    Sleep The thread is idle. No query is being run.
    Statistics Table and index statistics are being gathered for the query optimizer.

    Time

    The number of seconds that the process has been running the current com mand. A process with a Time of 90 and Command of Sleep has been idle for a minute and a half.

    State

    Additional human-readable information about the state of this thread. Here’s an example:

    Slave connection: waiting for binlog update

    This appears on the master server when a slave is actively replicating from it.

    Info

    This is the actual SQL currently being executed, if any. Only the first 100 charac ters are displayed in the output of SHOW PROCESSLIST . To get the full SQL, use SHOW FULL PROCESSLIST . 

    Buy the book!If you've enjoyed what you've seen here, or to get more information, click on the "Buy the book!" graphic. Pick up a copy today!

    Visit the O'Reilly Network http://www.oreillynet.com for more online content.

    More MySQL Articles
    More By O'Reilly Media


     

       

    MYSQL ARTICLES

    - MySQL Table Prefix Changer Tool in PHP
    - Using the SIGNAL Statement for Error Handling
    - Error Handling Examples
    - Error Handling
    - Completing a Search Engine with MySQL and PH...
    - Paginating Result Sets for a Search Engine B...
    - Building a Search Engine with MySQL and PHP 5
    - Using Boolean Operators for Full Text and Bo...
    - PHP, MySQL and the PEAR Database
    - Working with PHP and MySQL
    - Getting PHP to Talk to MySQL
    - Creating an RSS Reader: the Reader
    - MySQL Security Overview
    - Creating the Admin Script for a PHP/MySQL Bl...
    - Creating the Blog Script for a PHP/MySQL Blo...





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway