Quantcast
Channel: Geeks World Wide
Viewing all articles
Browse latest Browse all 12

How to find all tables of a particular storage engine in MySQL

$
0
0

This tutorial is designed to show the easy steps of finding all tables of a particular storage engine in MySQL. Good Luck!

MySQL supports several storage engines with different features and functions. If you want to find out what tables are using a particular storage engine in MySQL instance then run these simple queries in a MySQL command line interface.

Note: MySQL information_schema database exists in MySQL version 5 and above.

 

mysql> use information_schema; mysql> SELECT TABLE_SCHEMA, TABLE_NAME FROM `TABLES` WHERE TABLE_TYPE LIKE 'myisam';

 

The query above outputs all tables in a database that were… read more…

Geeksww_-_logo_-06



Viewing all articles
Browse latest Browse all 12

Latest Images

Trending Articles



Latest Images