Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
38 views1 page

MySQL SHOW PLUGINS Command Guide

The SHOW PLUGINS command displays information about server plugins such as their name, status, type, library, and license. This information is also available in the INFORMATION_SCHEMA.PLUGINS table. The example output shows the results of running SHOW PLUGINS, listing the binlog, CSV, MEMORY, and MyISAM plugins along with their attributes.

Uploaded by

Irwan Bros
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views1 page

MySQL SHOW PLUGINS Command Guide

The SHOW PLUGINS command displays information about server plugins such as their name, status, type, library, and license. This information is also available in the INFORMATION_SCHEMA.PLUGINS table. The example output shows the results of running SHOW PLUGINS, listing the binlog, CSV, MEMORY, and MyISAM plugins along with their attributes.

Uploaded by

Irwan Bros
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

Syntax:

SHOW PLUGINS
SHOW PLUGINS displays information about server plugins. Plugin
information is also available in the INFORMATION_SCHEMA.PLUGINS table.
See http://dev.mysql.com/doc/refman/5.5/en/plugins-table.html.
Example of SHOW PLUGINS output:
mysql> SHOW PLUGINS\G
***************************
Name: binlog
Status: ACTIVE
Type: STORAGE ENGINE
Library: NULL
License: GPL
***************************
Name: CSV
Status: ACTIVE
Type: STORAGE ENGINE
Library: NULL
License: GPL
***************************
Name: MEMORY
Status: ACTIVE
Type: STORAGE ENGINE
Library: NULL
License: GPL
***************************
Name: MyISAM
Status: ACTIVE
Type: STORAGE ENGINE
Library: NULL
License: GPL
...

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

2. row ***************************

3. row ***************************

4. row ***************************

URL: http://dev.mysql.com/doc/refman/5.5/en/show-plugins.html

You might also like