0
votes
1answer
11 views
Converting from myisam to innodb
I am looking to convert my myisam mysql database to an innodb. I seem to keep coming up with conflicting ideas on how to do this or even if I should! What are your thoughts?
1
vote
2answers
60 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-insert …
1
vote
2answers
33 views
Am I right that InnoDb is better for frequent concurrent updates and inserts than MyISAM?
Hello,
We have a websites with hundreds of visitors every day and tens of thousands queries a day.
So, some tables in the database are updated very rarely, some tables are updated …
1
vote
1answer
25 views
What do “Internal Relations” do in phpMyAdmin for MyISAM tables?
In phpMyAdmin v2.8.2.4 for MyISAM tables, the "Relation View" appears under the Structure tab. It shows a list of Internal Relations. But what do these do, given that MyISAM does n …
0
votes
4answers
73 views
MySQL - best storage engine for constantly changing data
I currently have an application that is using 130 MySQL table all with MyISAM storage engine. Every table has multiple queries every second including select/insert/update/delete qu …
1
vote
2answers
61 views
MySQL storage engine desicion
Hello,I am a web designer from the Netherlands. I am sort of new to building web apps from scratch, i have always used CMS, and customized them.
I am building a Auction website i …
1
vote
0answers
40 views
Fast MySQL bulk load when indexes don’t fit into key_buffer
Hi everyone,
have an issue here of how to configure mysql (myisam) properly for the bulk insert (load data infile) to be performed fast.
There is 6 Gb text file to be imported, 1 …
11
votes
10answers
1k 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 o …
2
votes
1answer
33 views
MySQL MyISAM disk-bound scaling issue / drive cache
I have the following lookup-table:
CREATE TABLE `widgetuser` (
`widgetuserid` char(40) NOT NULL,
`userid` int(10) unsigned NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '00 …
0
votes
2answers
54 views
Constraint like check constraints, not null constraints on MyISAM Storage Engines in MySQL
Can we use constraint like check
constraints, not null constraints on
MyISAM Storage Engines in MySQL ?
0
votes
5answers
68 views
Is it true that MyISAM engine is more preferable than InnoDB when we are building clustered storage? Why if it is so?
I heard this today during interview for java developer. I had to list some advantages of MyISAM over InnoDB and why it's still being widely used. And they were waiting to hear from …
0
votes
4answers
63 views
What’s the easiest way to add an index on a live myISAM table?
I have a myISAM table running in production on mySQL, and by doing a few tests, we've found we can tremendously speed up a query by adding a certain compound index. So far so good. …
3
votes
4answers
675 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 rea …
1
vote
1answer
69 views
“System lock” in MySQL + MyISAM
I noticed that 'show processlist' on our MySQL server indicates a lot of threads in 'System lock' state, often followed by just 'Locked', the latter which I'd expect since we have …
-1
votes
0answers
19 views
Restoration of a mysql database by changing all innodb to myisam will cause problem?
Hi there,
I'm facing problem restoring a mysql database.
the script fail when statement to create table in innodb.
Funny thing is when run in that particular hosting, it getting …
