Tagged Questions
InnoDB is an ACID-compliant transactional storage engine for MySQL that uses multiversion concurrency control (MVCC).
116
votes
22answers
118k views
How do I quickly rename a mysql database (change schema name)?
Usually I just dump the database and reimport it with a new name. This is not an option for very big databases. Apparently RENAME {DATABASE | SCHEMA} db_name TO new_db_name; does bad things, exist ...
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 ...
54
votes
14answers
3k views
Should I COUNT(*) or not?
I know it's generally a bad idea to do queries like this:
SELECT * FROM `group_relations`
But when I just want the count, should I go for this query since that allows the table to change but still ...
26
votes
6answers
14k views
Fulltext Search with InnoDB
I'm developing a high-volume web application, where part of it is a MySQL database of discussion posts that will need to grow to 20M+ rows, smoothly.
I was originally planning on using MyISAM for the ...
22
votes
11answers
4k views
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
4answers
9k views
MySQL innodb not releasing disk space after deleting data rows from table
I have one mysql datatable of type INNODB, it contains about 2M data rows. When I deleted data rows from the table, it did not release alloted disk space.
Is there any way to reclaim disk space from ...
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
5k views
Howto: Clean a mysql InnoDB storage engine?
Is it possible to clean a mysql innodb storage engine so it is not storing data from deleted tables?
Or do I have to rebuild a fresh database every time?
11
votes
6answers
2k views
How to improve INSERT INTO … SELECT locking behavior
In our production database, we ran the following pseudo-code SQL batch query running every hour:
INSERT INTO TemporaryTable
(SELECT FROM HighlyContentiousTableInInnoDb WHERE ...
10
votes
2answers
1k views
symfony 1.4 propel:build-all not working on Mysql 5.5
i am using Symfony 1.4.8 and Mysql 5.5
i got this error when i run
symfony propel:build-all
You have an error in your SQL syntax;
check the manual that corresponds to
your MySQL server ...
10
votes
2answers
432 views
How to choose optimized datatypes for columns [innodb specific]?
I'm learning about the usage of datatypes for databases.
For example:
Which is better for email? varchar[100], char[100], or tinyint (joking)
Which is better for username? should I use int, bigint, ...
10
votes
3answers
1k views
How do I deal with this race condition in django?
This code is supposed to get or create an object and update it if necessary. The code is in production use on a website.
In some cases - when the database is busy - it will throw the exception ...
9
votes
2answers
226 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 ...
9
votes
6answers
3k views
UUID performance in MySQL?
We're considering using UUID values as primary keys for our MySQL database. The data being inserted is generated from dozens, hundreds, or even thousands of remote computers and being inserted at a ...
9
votes
4answers
4k views
How do I see all foreign keys to a table or column?
In MySQL, how do I get a list of all foreign key constraints pointing to a particular table? a particular column? This is the same thing as this Oracle question, but for MySQL.
8
votes
1answer
146 views
why is django leaving locks behind in mysql?
I have a Django app that uses MySQL and the InnoDB engine for storage. For some reason, Django sometimes leaves locks in place, even after the query has completed. (I can see them with Innotop).
...
8
votes
2answers
8k views
set default storage engine of MySQL database
I've been working on writing SQL to create a MySQL database with several default options, including character set and collation. Is it possible to set the default storage engine for tables in this ...
8
votes
10answers
3k views
When should you choose to use InnoDB in MySQL?
I am rather confused by the hurt-mongering here.
I know how to do them, see below, but no idea why? What are they for?
create table orders (order_no int not null auto_increment, FK_cust_no int not ...
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
210 views
mysql stored procedure for search from identical tables
Hi developers I am researching ways of fast selecting rows from many tables with identical structure. Tables have too much data to be 1 table. So every table contains data for 1 month.
For example ...
7
votes
2answers
482 views
InnoDB SELECT … FOR UPDATE statement locking all rows in a table
MySQL Server version 5.1.41 with InnoDB plugin enabled. I have the following three tables for invoices: invoices, invoice_components and invoice_expenses. Table invoices has invoice_id primary key. ...
7
votes
6answers
857 views
MySQL InnoDB hangs on waiting for table-level locks
I have a big production web-application (Glassfish 3.1 + MySQL 5.5). All tables are InnoDB. Once per several days application totally hangs.
SHOW FULL PROCESSLIST shows many simple insert or update ...
7
votes
2answers
702 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
3answers
492 views
MySQL: What is a page?
I can't for the life of me remember what a page is, in the context of a MySQL database. When I see something like 8KB/page, does that mean 8KB per row or ...?
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
2answers
3k views
InnoDB takes over an hour to import 600MB file, MyISAM in a few minutes
I'm currently working on creating an environment to test performance of an app; I'm testing with MySQL and InnoDB to find out which can serve us best. Within this environment, we'll automatically ...
7
votes
10answers
3k views
Quickest way to delete enormous MySQL table
I have an enormous MySQL (InnoDB) database with millions of rows in the sessions table that were created by an unrelated, malfunctioning crawler running on the same server as ours. Unfortunately, I ...
7
votes
10answers
10k views
ERROR 1114 (HY000): The table is full
I'm trying to add a row to an InnoDB table with a simply query:
INSERT INTO zip_codes (zip_code, city) VALUES ('90210', 'Beverly Hills');
But when I attempt this query, I get the following:
ERROR ...
6
votes
2answers
66 views
improving performance of mysql load data infile
I'm trying to bulk load around 12m records into a InnoDB table in a (local) mysql using LOAD DATA INFILE (from CSV) and finding it's taking a very long time to complete.
The primary key type is UUID ...
6
votes
1answer
123 views
Altering MySQL InnoDB table with minimal downtime
I've got a huge InnoDB table(>500 millions rows) which I'd like to partition by hash in order to decrease the index size. I'd like to achieve this with a minimal downtime(e.g 10 minutes is ...
6
votes
1answer
257 views
How to do a fast but innacurate InnoDB row count?
The FAQ of PHPMyAdmin has this to say about its approximate row counts for InnoDB:
phpMyAdmin uses a quick method to get the row count, and this method only returns an approximate count in the ...
6
votes
3answers
715 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
2answers
312 views
How to disable MySQL comments for InnoDB with foreign keys?
For some time I noticed that MySQL would append comments to InnoDB tables that have foreign keys defined. It looks like this:
InnoDB free: 0 kB; (event_id) REFER events(event_id) ON U...
In order to ...
6
votes
2answers
407 views
Unexpected Locking for Table with Primary Key & Unique Key
I've run into an innodb locking issue for transactions on a table with both a primary key and a separate unique index. It seems if a TX deletes a record using a unique key, and then re-inserts that ...
6
votes
2answers
394 views
How to calculate needed disk space for InnoDB databases?
I have several databases in MySQL with InnoDB engine. All together they have around 30 GB size on filesystem. A couple of days ago, I removed a lot of data from those databases (~10-15 GB) but the ...
6
votes
2answers
749 views
MYsql innodb foreign key between different databases
I would like to know if it's possible in innodb in mysql to have a table with foreign key that references another table in a different database ? And if so, how this can be done ?
6
votes
2answers
308 views
Can I retrieve pending queries during an InnoDB transaction?
I start a transaction.
Then I need to rollback it.
Can I somehow get a list of the queries that get "discarded" this way?
(ps: of course I can log them beforehand; I was wondering if this could be ...
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
1answer
863 views
How do I re-create a MySQL InnoDB table from an .ibd file?
Assume that the following MySQL files have been restored from a backup tape:
tablename.frm
tablename.ibd
Furthermore, assume that the MySQL installation was running with innodb_file_per_table and ...
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:
...
6
votes
4answers
443 views
Is using char as a primary/foreign key a no no?
Consider that there is a bunch of tables which link to "countries" or "currencies" tables.
For making data easier to read I'd like make CHAR field with country code (eg US, GB, AU) and currency code ...
5
votes
2answers
133 views
MySQL - Fastest way to check if data in InnoDB table has changed
My application is very database intensive. Currently, I'm running MySQL 5.5.19 and using MyISAM, but I'm in the process of migrating to InnoDB. The only problem left is checksum performance.
My ...
5
votes
1answer
96 views
MySQL/InnoDB Plugin: Will NULL values for VARCHAR fields still take up storage spaces?
I'm using InnoDB Plugin in the Barracuda file format with:
ROW_FORMAT=DYNAMIC
If I define a field as VARCHAR(255), and then insert a record that has a NULL value for that field, will that record ...
5
votes
6answers
535 views
MySQL 5.5 “select distinct” is really slow
One of the things my app does a fair amount is:
select count(distinct id) from x;
with id the primary key for table x. With MySQL 5.1 (and 5.0), it looks like this:
mysql> explain SELECT ...
5
votes
4answers
341 views
MySQL Index is bigger than the data stored
I have a database with the following stats
Tables Data Index Total
11 579,6 MB 0,9 GB 1,5 GB
So as you can see the Index is close to 2x bigger. And there is one table with ~7 million ...
5
votes
2answers
325 views
Mysql phpMyadmin Timeout Question
I have a very large database in Mysql. I need it to be maintained this way. for example its about 300,000 records in Innodb.
I parsed the records into the database but now I need to refine it by ...
5
votes
3answers
599 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 ...