Top "Storage-engines" questions

A storage engine is the underlying software component used to create, read, update and delete data from a data store.

Create mysql table directly from CSV file using the CSV Storage engine?

I just learned that MySQL has a native CSV storage engine which stores data in a Comma-Separated-Value file per table. …

mysql database csv storage-engines
Show tables by engine in MySQL

How would I show all tables in MySQL with a given engine, e.g. InnoDB, MyISAM, FEDERATED?

mysql storage-engines
How do I know if a mysql table is using myISAM or InnoDB Engine?

In MySQL, there is no way to specify a storage engine for a certain database, only for single tables. However, …

mysql innodb myisam storage-engines
See what storage engine MySQL database uses via terminal

Is there a command in terminal for finding out what storage engine my MySQL database is using?

mysql terminal storage-engines
How to know which storage engine is used in mongodb?

Starting from version 3.0, mongodb support pluggable storage engine. How to know which storage engine is being used in a system?

mongodb storage-engines database nosql
How to check if MySQL table is UTF-8 and has storageEngine InnoDB?

Googling around just finds instructions for changing from one format to another, but I can't seem to find how exactly …

mysql utf-8 innodb storage-engines
unknown variable 'default-storage-engine=myisam'

I am trying to configure Mysql (Ver 14.15 Distrib 6.0.8-alpha, for Win64) to use MyISAM as the default storage engine on …

mysql myisam storage-engines
How to choose from MMAPV1, WiredTiger or In-Memory StorageEngine for MongoDB?

In MongoDb Documentation 3.2 I saw that they support 3 Storage Engine, MMAPV1, WiredTiger, In-Memory, it is very confusing which one to …

mongodb storage-engines
Django set Storage Engine & Default Charset

Creating my tables from my models.py. I donno how to do 2 things - I want to specify MySQL to …

mysql django django-models character-encoding storage-engines
Fastest MySQL storage engine for storing data without concurrency

I'm using a mysql base to store results from various test over a large amount of data (hundred of millions …

mysql storage-engines