Tagged Questions

MyISAM is a non-transactional storage engine for MySQL. It provides high-speed storage and retrieval, as well as fulltext searching capabilities. Also, is the default storage engine type for version prior to 5.5.

learn more… | top users | synonyms

110
votes
15answers
33k views

MyISAM versus InnoDB

I'm working on a projects which involves a lot of database writes, I'd say (70% inserts and 30% reads). This ratio would also include updates which I consider to be one read and one write. The reads ...
22
votes
11answers
4k views

MySql: MyISAM vs. Inno DB!

What are the differences between MyISAM and Inno DB types in MySql?
13
votes
2answers
88 views

Muzak replication advice and techniques

I am attempting my first large scale database project on my own. I have a myisam mysql db on server 1 with a php app consuming large amount of various data. I have mysql myisam on server 2 with php ...
13
votes
9answers
7k views

Is there a REAL performance difference between INT and VARCHAR primary keys?

Is there a measurable performance difference between using INT vs. VARCHAR as a primary key in MySQL? I'd like to use VARCHAR as the primary key for reference lists (think US States, Country Codes) ...
12
votes
3answers
100 views

cannot update record, get stuck

i have an issue with my current database with mysql. i have over 100 connection waiting on a select record. when i execute: show processlist; the select query is a big query and the others are ...
9
votes
2answers
227 views

Difference in required time to insert InnoDB/MyISAM records

I'm inserting records into a MySQL table and try to understand the differences in time it takes between a MyISAM table and a InnoDB table. This is the code to create the table: CREATE TABLE ...
8
votes
6answers
730 views

Are there any pitfalls / things you need to know when changing from MyISAM to InnoDB

One of my projects use the MyISAM engine in MySQL, but I'm considering changing it to InnoDB as I need transaction support here and there. What should I look at or consider before doing this? Can I ...
7
votes
4answers
306 views

InnoDB vs. MyISAM insert query time

I have a large MySQL table (~10 Million Rows, 6.5G) Which i use for read & write. It is MyISAM, and i get a lot of locks due to MyISAM's all table lock on writes. I decided to try and move to ...
7
votes
2answers
703 views

Joining InnoDB tables with MyISAM tables

We have a set of tables which contain the meta level data like organizations, organization users, organization departments etc. All these table are going to be read heavy with very few write ...
7
votes
1answer
1k views

Keeping data plus index-data in memory - InnoDB vs. MyISAM

Assume a database consisting of 1 GB of data and 1 GB of index data. To minimize disk IO and hence maximize performance I want to allocate memory to MySQL so that the entire dataset including indexes ...
7
votes
3answers
2k views

MySQL FULLTEXT not working

I'm attempting to add searching support for my PHP web app using MySQL's FULLTEXT indexes. I created a test table (using the MyISAM type, with a single text field a) and entered some sample data. Now ...
7
votes
3answers
3k views

mysql replication - table locking?

I am currently working for a company that has a website running mysql/php (all tables are also using the MYISAM table type). We would like to implement replication, but I have read in the mysql docs ...
6
votes
3answers
717 views

MyISAM vs InnoDB for BI / batch query performance (ie, _NOT_ OLTP)

Sure, for a transactional database InnoDB is a slam dunk. MyISAM doesn't support transactions or row-level locking. But what if I want to do big nasty batch queries that touch hundreds of millions ...
6
votes
3answers
378 views

MyISAM Selects locks inserts inside procedure only

We have a large MyISAM table to which rows get inserted to the bottom of the table only. While doing some benchmarks, i realized that selects do not (always) lock other inserts to that same table. ...
6
votes
4answers
6k views

MySQL Full-text Search Workaround for innoDB tables

I'm designing an internal web application that uses MySQL as its backend database. The integrity of the data is crucial, so I am using the innoDB engine for its foreign key constraint features. I ...
6
votes
3answers
1k views

Speeding up conversion from MyISAM to InnoDB

I have a MySQL 1.5 GB MyISAM-table (1.0 GB data, 0.5 GB indexes) in production which I'm about to convert into InnoDB. Since the table is used in production I'd like to make the downtime as short as ...
6
votes
1answer
985 views

I cannot convert myISAM to innodb

I did a wipe and restore. I backedup my current innodb tables. (mysqldump) I loaded it into the database. For some reason...the tables are now all myisam instead of innodb...weird! I try to do: ...
5
votes
3answers
600 views

Do InnoDB vs MyISAM comparisons still hold true in terms of speed of reads vs writes?

I know there are a bunch of other questions on this. The problem I'm having is finding an up to date consensus on the matter with regards to the latest versions of the storage engines. Some people ...
5
votes
2answers
212 views

How does MySQL store rows on disk?

I'm looking for documentation on how MySQL stores data on disk, in particular InnoDB and MyISAM. I took a database course back in college (and wrote a primitive database) so I have a general idea. I ...
5
votes
2answers
440 views

When it is time for a table to change from MyISAM to InnoDb?

This question is like a continuation of my previous question: http://stackoverflow.com/questions/1722155/am-i-right-that-innodb-is-better-for-frequent-concurrent-updates-and-inserts-than/ But this ...
4
votes
3answers
106 views

Mixing MyISAM and InnoDB engines for database design

One of my friends, who is a DBA, commented that mixing MyISAM and InnoDB is fairly common among the DBA community, while designing schema in MySQL. My question is, if this is true, then how good it ...
4
votes
1answer
63 views

Convert LOTS of identical MySQL tables into ONE and lots of VIEWs that point to it?

I'm running a pretty big deployment of WPMU (Wordpress Multi-User, Wordpress Multisite) that uses 4096 databases and 100k+ tables (with a lot of overlap in what schema is concerned, obviously). ...
4
votes
5answers
228 views

When MyISAM is better than InnoDB?

Sometimes I got asked on some interviews: what benefits does InnoDB have against MyISAM and when MyISAM is better than InnoDB? It's all clear about the first part of question: InnoDB is transaction ...
4
votes
2answers
440 views

MySQL InnoDB query performance

I'm trying to optimize a simple sql query that will be run over a ton of data lot of times. This is the scenario: MySQL with InnoDB tables All fields used in where and join are Indexed. Tables have ...
4
votes
6answers
218 views

MySQL MyISAM data loss possibilities?

Many sites and script still use MySQL instead of PostgreSQL. I have a couple low-priority blogs and such that I don't want to migrate to another database so I'm using MySQL. Here's the problem, ...
4
votes
1answer
716 views

InnoDB performance tweaks

I'm switching a large table to InnoDB from myISAM. There has been a lot of discussion regarding why switching makes sense, but not much about HOW to do it while making sure the table performs well. ...
4
votes
2answers
161 views

MySQL returning incorrect data?

Recently an issue came up in the Django community regarding testing of MySQL (using MyISAM). Here's the django ticket: http://code.djangoproject.com/ticket/14661 One of the Django core developers ...
4
votes
2answers
117 views

mysql tables and deleting strategies

I'm working on a social network, like a subset of Facebook. I think this means that the application will be more read-heavy than write-heavy (i.e. more SELECTS than INSERTS, UPDATES, OR DELETES) I'm ...
4
votes
2answers
100 views

2 identfical sql queries w' diff params - only one requires temp table

The only difference in these sql queries is the record_id param (it's how I page through entire result set). The tables are myisam. The first query performs well and the second is terribly slow. ...
4
votes
3answers
1k views

What is maximum records quantity a MySQL table can store?

How many records can a MySQL MyISAM table store? How many InnoDB can?
4
votes
1answer
202 views

Which MySQL database engine is better for storing sessions and session data: MyISAM or InnoDB?

Pretty straightforward question. I use InnoDB for everything else, for a couple of reasons. Is it a performance hit over MyISAM for a 'high-traffic' table?
4
votes
2answers
140 views

Does this case call for InnoDB or MyISAM?

I'm doing a search on a table (few inner joins) which takes max 5 seconds to run (7.5 million rows). It's a MyISAM table and I'm not using full-text indexing on it as I found there to be no difference ...
4
votes
2answers
407 views

Foreign keys vs partitioning

Since foreign keys are not supported by partitioned mySQL databases for the moment, I would like to hear some pro's and con's for a read-heavy application that will handle around 1-400 000 rows per ...
4
votes
2answers
1k views

MyISAM and InnoDB tables in one database

I have a database with about 30 tables and 5 tables of them is write-intensive. I'm considering Convert 5 write-intensive tables to use InnoDB engine and keep the rest on MyISAM engine Convert all ...
4
votes
2answers
374 views

Why do reads block other reads in MyISAM?

I have one really long running read. It is a cronjob run once a day, but the whole DB gets locked down when it is running : mysql> show full processlist; ...
4
votes
4answers
1k views

What causes MyISAM to become corrupt?

I've heard that MyISAM tables can become corrupt, what sort of actions are most likely to corrupt them and how can you safely fix said corruptions.
3
votes
2answers
49 views

Speed Up MySQL (MyISAM) COUNTs with WHERE Clauses

We are implementing a system that analyses books. The system is written in PHP, and for each book loops through the words and analyses each of them, setting certain flags (that translate to database ...
3
votes
1answer
48 views

MyISAM dialect generates wrong DDL

We use the MyISAM dialect org.hibernate.dialect.MySQLMyISAMDialect to auto generate DDL files based on JPA2 using 3.6.9.Final hibernate provider on a MySQL 5.5 database. The create SQL file gets ...
3
votes
1answer
76 views

Only Mysql OR mysql+sqlite OR mysql+own solution

Currently I am building quite big web system and I need strong SQL database solution. I chose Mysql over Postgres because some of tasks needs to be read-only (MyISAM engine) and other are ...
3
votes
1answer
119 views

MySQL optimization tips specific to a completely static database?

I have a database that is about 20 GB in size. I want to know if there are any optimization tips specific to working with a database that is static. When I mean static, I don't mean changes ...
3
votes
3answers
353 views

Move MySQL tables and data from storage engine MyISAM to InnoDB

This question is probably for MySQL experts and admins that have done this sort of migration before. I have 17 MySQL tables, triggers and stored procedures on MyISAM storage engine. These tables have ...
3
votes
6answers
255 views

GROUP BY query optimization

Database is MySQL with MyISAM engine. Table definition: CREATE TABLE IF NOT EXISTS matches ( id int(11) NOT NULL AUTO_INCREMENT, game int(11) NOT NULL, user int(11) NOT NULL, ...
3
votes
2answers
304 views

When to LOCK TABLES in MySQL (MyISAM tables)?

Is the internal locking of MySQL sufficient for a small to medium sized website? My tables are MyISAM. There might be a few hundred people concurrently hitting a specific table with SELECT'S and ...
3
votes
1answer
230 views

MySQL Full-Text search vs Like %%

What are key differences and what is a use case for both of them? Thanks!
3
votes
4answers
159 views

MySQL delete duplicate reverse values

I have MySQL MyISAM table: Table friends(id, friend_id): 1, 5 5, 1 2, 6 6, 2 3, 7 How to delete reverse records? If for record values «1, 5» exist record with values «5, 1» i need to delete «5, ...
3
votes
3answers
413 views

How do i know if a mysql table is using myISAM or InnoDB Engine

I want to confirm if the statement below is indeed true: There is no way to specify a storage engine for a certain database, only for single tables, You can, however, specify a storage engine to be ...
3
votes
3answers
862 views

MySQL: How to keep entire myisam table in memory?

I have a lot of RAM (1 gb) on my server, and I have a table (100 mb) that I would like to increase the speed of. Is it possible to keep the entire table in memory (while keeping it MYISAM)? Would this ...
3
votes
1answer
1k views

Changing Table Engine in MySQL

I am using mysql and mysql workbench. I created 5 tables with innodb engine. I checked their engine and it was innodb before I insert data into them. I inserted data from 5 MyISAM tables and now my ...
3
votes
1answer
228 views

Why MySQL Full text index doesn't work?

After trying everything I could, I finally created this test table: CREATE TABLE test_table ( id int(11) NOT NULL AUTO_INCREMENT, title text NOT NULL, PRIMARY KEY (id), FULLTEXT KEY title ...
3
votes
2answers
881 views

Make a query in mysql without invoking a trigger (How to disable a trigger)

I have 2 tables: comments and comments_likes. comments id message likes triggers: AFTER DELETE DELETE FROM comments_likes WHERE comment_id = OLD.id; comments_likes id ...

1 2 3 4 5 7