Tagged Questions
A storage engine is the underlying software component used to create, read, update and delete data from a data store.
10
votes
3answers
864 views
MySQL: Has anyone used the TokuDB storage engine?
Has anyone used the TokuDB storage engine for MySQL?
The product web site claims to have a 50x performance increase over other MySQL storage engines (e.g. Innodb, MyISAM, etc). Here are the ...
8
votes
1answer
190 views
My own storage engine crashes because of a too small sort_buffer
I am working on my own storage engine for MySQL. So far this storage engine works reliable and correct - but only for small (~100 MB) tables...
For big tables, I get a segmentation fault, when I try ...
6
votes
2answers
332 views
Explicitly set MySQL table storage engine using South and Django
I'm running into an issue that South creates the DB table for a new model as INNODB when I migrate but creates the table as MYISAM when another developer runs their own migration.
The problem with ...
6
votes
1answer
1k views
Pros and Cons of the MySQL Archive Storage Engine?
For a website I am developing, I am going to store user activity information (like Facebook) and HTTP requests to the server into a MySQL database.
I was going to use InnoDB as the storage engine; ...
4
votes
1answer
1k views
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 create some of my tables as InnoDB & some as MyISAM. How do I do it?
Also I want to specify my ...
3
votes
1answer
182 views
MySql, InnoDB & Null Values
Formerly I was using MyISAM storage engine for MySql and I had defined the combination of three fields to be unique.
Now I have switched to InnoDB, which I assume caused this problem, and now NULL != ...
3
votes
5answers
3k views
Alternatives to the MEMORY storage engine for MySQL
I'm currently running some intensive SELECT queries against a MyISAM table. The table is around 100 MiB (800,000 rows) and it never changes.
I need to increase the performance of my script, so I was ...
2
votes
1answer
69 views
MyISAM or InnoDB for a mostly-write table
I've got a table that receives around 50 inserts per second. Right now there are 700k records, using 160 MiB. My little VPS with 1 gig of ram is keeping up, but just barely.
I chose for InnoDB, as ...
2
votes
2answers
230 views
Memory-Mapped Storage Engine
From MongoDb's site, the current only support storage engine is Memory-Mapped Storage Engine. I am wondering how it supports atomicity in the presence of system crash(i.e power failure)? Does it ...
2
votes
2answers
436 views
mysql lookup table schema
What's a more detailed command for seeing table properties than show tables? In particular, I need to know what storage engines are being used in a database that I've inherited.
1
vote
2answers
111 views
Expert opinion needed on Database design
I would appreciate advice from experts on a Database schema for a website.
I have a database design for a classifieds listings site that is currently done in MyISAM engine so there are no ...
1
vote
1answer
53 views
MySQL Table Engines
MyISAM
Default engine
No Transaction support
Good for Heavy data reading
Bad for write calls: table level locking
InnoDB
Transaction safe
Good for Heavy write calls: row level locking
Supports ...
1
vote
1answer
213 views
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 to make sure which of these I have first.
How can I:
1) Check what character ...
1
vote
2answers
160 views
what is database STORAGE ENGINE
I heard about database storage engines and those are appending to table while creating a table. What actually A Database Storage Engine.
I heard these two
MyISAM Storage Engine
InnoDB Storage ...
1
vote
4answers
386 views
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 recordings).
I'm the only user of the base so there won't be any problem of concurrency. I ...
1
vote
1answer
175 views
When to use What Storage Engine in the Real World (MySQL)?
When to use What Storage Engine in the Real World (MySQL)? I Know MyISAM is good for Full Text Searches and InnoDB is good for Transactions/Referential integrity but What do you use When as there are ...
1
vote
1answer
424 views
Show tables by engine in MySQL
How would I show all tables in MySQL with a given engine, e.g. InnoDB, MyISAM, FEDERATED?
0
votes
1answer
63 views
SphinxSE query causes MySQL to crash
I used MySQL 5.5.9 and MySQL 5.5.16 and mysqlse rev 2973
Here is the sphinx query:
SELECT
id
FROM sphinx_search t
WHERE `query` = 'mode=extended2;
maxmatches=1000000;
...
0
votes
1answer
76 views
Guideline on how to set InfiniDB options?
I've been trying to find out how to best set these settings, but haven't been able to find much info on them. Some of them I've seen before with regular MySQL installations, but some others I haven't:
...
0
votes
4answers
166 views
Fast at selects/joining MySQL storage engines?
I have some very large databases (some up to 150M rows) I'm working with & after initially inserting the data there isn't much INSERT's going on; just a lot of SELECT's & usage of JOINS.
I've ...
0
votes
1answer
190 views
Having troubles loading data in InfoBright ICE
ICE Version: infobright-3.5.2-p1-win_32
I’m trying to load a large file but keep running into problems with errors such as:
Wrong data or column definition. Row: 989, field: 5.
This is row 989, ...
0
votes
2answers
106 views
pitfalls with mixing storage engines in mysql with django?
I'm running a django system over mysql in amazon's cloud, and the database default is innodb. But now I want to put a fulltext index on a couple of tables for searching, which evidently requires ...
0
votes
1answer
41 views
What are Storage Engines in Relational databases?
Can anybody tell me what are the storage engines with respect to relational databases ?
0
votes
1answer
91 views
What happens if my server loses power and I'm using the MEMORY engine?
Does the MEMORY storage engine of MySQL ever write to disk the database contents?
Meaning, if I'm using the MEMORY storage engine and my database server loses power - do I lose all of my database ...
0
votes
2answers
179 views
Are MySQL databases with a MEMORY storage engine persisted to disk?
If MySQL databases with a MEMORY engine are stored in memory, does this mean that their contents are not persisted to disk? Or are they stored on HDD, but fully loaded into RAM on system power up?
0
votes
3answers
147 views
MyISAM or InnoDB, for safety of data, which should I choose?
MyISAM or InnoDB, for safety of data, which should I choose?
0
votes
1answer
423 views
Looking for a good list of MySQL storage engines
I'm looking for something listing 3rd party engines but it doesn't have to be complete just reasonably so.
I'm asking as a side effect of reading this.
0
votes
2answers
505 views
How do you choose storage engines for Oracle?
Ok the question is obviously wrong as it stands, but I'm wondering how can I choose storage implementations on Oracle as I would for MySQL, say I want one table to MyIsam like and another for ...