Emptying a Database Table

In this article

Plugins which generate site statistics for you can rapidly create large amounts of data — every visitor causes something to be written to the database. Ordinarily, this is not a problem, but if your database size is limited by your host it could be. Also, if you are moving the database for whatever reason, its size will impact the export and import time. This page will show you how to empty a table, thus resetting its contents and size to zero. This does not stop the statistics plugins from working or otherwise damage your database.

phpMyAdmin is the name of the program used to manipulate your database. A good hosting package will have this included. Accessing phpMyAdmin offers information on accessing phpMyAdmin under various server control panels.

The procedure outlined in this article has been tried and tested using phpMyAdmin versions 2.5.3 and 2.5.7 pl1 running on Unix.

Note: When making significant changes like this to your database, you should always create a BACKUP!

See WordPress Backups and Backing Up Your Database for details.

The Process

  1. Login to phpMyAdmin on your server.

  2. From the left side bar, select your WordPress database.

Database selection on the left side bar

  1. All the tables in the WordPress database will appear.

Table list

  1. Click “Erase” button of the table you wish to empty. For this example, we will be emptying the “wp_dstats2” table.

Note: Your table may well have a different name, check the plugin’s documentation to find out what it is. DO NOT empty a table that is used by the WordPress core. (Please see the list under Database_Description for those specific table names.)

Clicking the “Empty” button

  1. You will now get a confirmation screen.

image

This is your last chance to check that you have the right table and database selected — phpMyAdmin has no UNDO function, so once changes are committed, you are stuck with them. Unless, of course, you made that suggested back up.

  1. Click “OK” and you will be returned to viewing all the tables in your database with the specified table’s contents emptied.

Changelog