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.
1
vote
0answers
55 views
EXPLAIN “Rows” Jump When I Add ORDER BY
Thanks to MrCleanX for pointing me to the EXPLAIN function. (I deleted the other question on account of better phrasing here)... I'm basically getting a huge jump in "rows examined" when I add the ...
-2
votes
0answers
20 views
MySQL crashed. Lost all data [closed]
I have a MySQL database(MyISAM with InnoDB). Yesterday something crashed and I lost almost all data from the database(except of InnoDB tables). Can someone please help me to understand the reason?
Log ...
0
votes
1answer
13 views
mysql MyISAM vs NDB storege engine for heavy reads
Does NDB support join queries ? I know that NDB is faster then MyISAM and NDB run on memory, but with respect to replication, fail over, wide acceptance of both storage engines I am not sure.
1
vote
0answers
19 views
MySQL - what causes table row fragmentation
How does MySQL MyISAM store data per row when there is non-fixed length data?
Example, if a row contains a varchar, if that varchar is empty on insert but is later updated with 50 chars of data, could ...
1
vote
1answer
55 views
WHERE IN crashing MySQL
I have two tables:
packages and package_to_tag both running MyISAM
the tables are structured as follows:
packages
+----------------+------------------+----------------+
| aid(primary) | ...
3
votes
1answer
30 views
Emulate MyISAM's composite primary key with an autoincrement behavior in InnoDB
In MySQL, if you have a MyISAM table that looks something like:
CREATE TABLE `table1` (
`col1` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`col2` INT(10) UNSIGNED NOT NULL,
PRIMARY KEY (`col2`, `col1`)
...
0
votes
1answer
16 views
Are multiple-table DELETE statements bad practice? Why?
I'm working with a MySQL database that uses the MyISAM storage engine. I make use of the multiple-table delete syntax. So far, I've only used it when I need to delete from multiple child tables at ...
0
votes
0answers
16 views
Optimizing disk space for MyISAM tables: what is the benefit of ALTER and ANALYZE if you already do OPTIMIZE?
Per this post, in order to optimize the storage of a MyISAM table, you need to:
OPTIMIZE TABLE ;
ALTER TABLE ENGINE=MyISAM ;
ANALYZE TABLE ;
It's obvious what OPTIMIZE does for disk space but what ...
0
votes
1answer
30 views
Speed Performance of my MYSQL Database, Help me Optimize [closed]
I have a server right now receiving more raw data files in 1 hour then I can upsert (insert -> merge) in an hour.
I have a table with 100M (rounded up) rows. Table is currently MyISAM. The table has ...
1
vote
1answer
35 views
MySQL InnoDB much slower than MyISAM
I have two tables (reduced to important fields):
syskeywordobjects:
pksyskeywordobjects BIGINT
fksyskeywords BIGINT
fkcontents BIGINT
fkcontents INDEX (fkcontents)
fksyskeywords INDEX ...
0
votes
1answer
27 views
Grails Multiple DataSources with Innodb and MyIASM
Grails 2.2.0
MySQL 5.5.x
Part of our application requires a Data Warehouse which we want to place in its own database using the MyISAM engine. The transactional parts of our app will remain InnoDB. ...
-2
votes
1answer
33 views
Is this Possible update mysql table rows update automatically after some days.? [closed]
I have a Problem with Mysql table... In this table more than 30,000 of rows. and at a time 3 process running and that is Select, Insert and Update on this table. the problem is that after Some days my ...
0
votes
1answer
12 views
provide read and write table locking in mysql
I have a table
CREATE TABLE `uli` (
`id` int(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
The table shall always contain one value in one row. But it could be changed ...
0
votes
1answer
25 views
Slow MYSQL Insert to DB MyISAM
I have a file (insert.sql) which has 250k rows like these with no key, no index :
INSERT `project_383`.`entity_metrics_build_1` VALUES ('d402afeb4630267f383b99875f37162d', 'ClMaxCycl', '-1');
INSERT ...
3
votes
1answer
69 views
Understanding MyISAM record structure
I am trying to understand how MyISAM physically store its records and how it maintains its structure after record insertion and record deletion. I have read the following link:
MyISAM Dynamic Data ...
0
votes
1answer
15 views
Small system using MySQL 5.5.4 with MyIsam tables, everything works, is there a good reason for InnoDB?
Considering the headaches of changing something that is working perfectly "as-is" and will never need to do more than it does now, is there any overwhelming reason to convert the MyIsam tables over to ...
1
vote
1answer
14 views
how to distinguish which variables are used for innodb engine or for MyIsam engine?
When I searched some status variable by using below command and got:
mysql> show global status like '%key%';
+------------------------+--------+
| Variable_name | Value |
...
0
votes
2answers
80 views
mysql - MyISAM or InnoDB - Join speed vs Lookup speed
Read question before closing as duplicate pls., because there are many questions about this, but at least I didn't find what I was looking for.
What is clear by now:
MyIsam is faster at searching ...
0
votes
1answer
63 views
MySQL MyISAM how to perform a read without locking a table?
My question is a follow up to this answer. I want to find out how to perform a select statement without locking a table with MyISAM engine.
The answer states the following if you have InnoDB but ...
0
votes
1answer
40 views
searching MySQL for most phrase occurrence
I am trying to search an entire table and return the most occurring phrases (up to three words) within a long string. I believe I could use fulltext search, but I am not matching against anything...
...
1
vote
0answers
31 views
MySQL MyISAM: Should I disable keys when doing giant deletes?
I have a couple of these MyISAM tables that have billions of rows and 8 pretty complicated indexes.
When I import data, which is once per day, I disable the keys, import from file, then enable the ...
1
vote
1answer
49 views
mysql - changing table engine from innoDB to MyISAM
I'm implementing app that requires search feature(full text Search).
EDIT:
I'm using mysql frequent select,insert,update,delete functions, joins also.
I read this post.
Is there any problem or ...
0
votes
1answer
29 views
Issue converting table from InnoDB to MyISAM (there can be only one auto column and it must be defined as a key)
I'm having issues trying to convert a table from MyISAM to InnoDB in MySQL 5.6.
The following is the table dump:
--
-- Table structure for table `companies`
--
DROP TABLE IF EXISTS `companies`;
...
1
vote
2answers
103 views
How to find MySQL temporary table storage engine
Hi I am working with Temporary table and I would like to know the temporary table storage Engine (InnoDB, MyISAM .... )
I am using the following code to find out but it is not showing me the storage ...
0
votes
0answers
100 views
Got error 127 when reading table and Table is marked as crashed and should be repaired
Getting Error Table is marked as crashed and should be repaired
Table is using MyIsam engine.
130429 3:11:27 [Warning] IP address '221.174.22.58' could not be resolved: The requested name is valid, ...
0
votes
1answer
32 views
Speeding up multi-table joins with MySQL
I have 3 tables in which I'm trying to preform joins on, and inserting the resulting data into another table. The query is taking anywhere between 15-30 mins depending on the dataset. The tables I'm ...
0
votes
1answer
93 views
mysql my.cnf config for 6gb ram [closed]
I have dedicated server (Intel Quad Core Xeon E5645 VT, 6 GB RAM). But i have problems with mysql.
My site have 40-60k unical users every day. I need to config my.cnf for best performance.
My ...
0
votes
1answer
33 views
Initiate truncate, then write
If I initiate a TRUNCATE on a table, what happens to INSERTs executed against that table? Are they queued until the TRUNCATE completes, or are they simply discarded? I know this condition is quite ...
0
votes
1answer
34 views
MySQL Full Text Search not working properly. Why?
OBS: I'm new to Full Text Searches and MyIsam engine, so assue I know basically nothing about it.
Here's my DDL:
CREATE TABLE NotebookIndex (
indexAutomatico TEXT,
indexHumano TEXT,
...
5
votes
1answer
83 views
mysql difference in index usage between MyISAM and InnoDB
I have these small tables, item and category:
CREATE TABLE `item` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(150) NOT NULL,
`category_id` mediumint(8) unsigned NOT ...
1
vote
0answers
79 views
How to convert huge table from MyISAM into INNODB?
I have a game DB that was originally created in MySQL 3.x and still have some MyISAM tables.
Due to different reasons (that is a subject for a separate discussion) I want to migrate them to INNODB.
...
0
votes
1answer
57 views
MySQL Terrible Performance of Large Count to update [closed]
I have a small code to update a small table based on the count of a larger table. I have i5 with 16GB of ram. The updating A table is MyISAM with 3000 rows and the reference Citation table is InnoDB ...
3
votes
1answer
86 views
OpenX 2.8.10 Video Ad
I'm trying to create a new video ad with OpenX 2.8.10 AdServe with the following error
PEAR Error
MDB2 Error: syntax error
_doQuery: [Error message: Could not execute statement]
[Last executed ...
1
vote
2answers
51 views
MySQL search FTS vs Multiple Queries
Working on a project where schema is something like this:
id , key, value
The key and value columns are varchar, and the table is InnoDB.
A user can search on the basis of key value pairs ... Whats ...
1
vote
1answer
37 views
Converting a MYISAM table to INNODB if unique keys are lengthy
Since MYISAM locks the complete table every time, I am thinking of converting my MYISAM table to InnoDB. However, INNODB requires the unique and primary keys to be within 767 bytes.
So, I am getting ...
2
votes
3answers
72 views
Normal select faster than count(*)
I want to do a count like this (as an example, not really counting dogs):
SELECT COUNT(*)
FROM dogs AS d INNER JOIN races AS r ON d.race_id = r.race_id
LEFT INNER colors AS c ON c.color_id = ...
1
vote
1answer
58 views
How to know if there is an already locked table MySQL
I'm trying to restore a MySQL dump from a list of SQL file such as :
for file in *.sql; do mysql ... < $file;done
This strategy works perfectly but for a certain table it doesn't. Actually it ...
0
votes
0answers
44 views
Best MySQL storage engine for lots of CSV uploads MyISAM or INNODB
I have one table in MySQL that is getting CSV uploads from a remote server using Mysqlimport.exe hundreds of csv files ranging from 2mb to 200mb are being uploaded to the MySQL table every couple of ...
1
vote
2answers
358 views
MyISAM or InnoDB database for Prestashop?
I make my first eshop using Prestashop and I'm not sure if is better use MyISAM or InnoDB. In eshop could be max about 3 000 items.
I think that most important for that question is how much items will ...
1
vote
1answer
65 views
Is there a way to check referential integrity for MyIsam tables using YII native relations?
While I used InnoDB tables I caught FK constraint exceptions from InnoDB engine.
I know that Yii can fetch related tables according to relations(). Besides I need to check referential integrity ...
0
votes
1answer
69 views
MyISAM tables are better then InnoDB tables for full text searching [closed]
Between MyISAM and InnoDB tables, which will be better for full text searching?
0
votes
1answer
84 views
Convert table engine MyISAM to INNODB errno: 150
I have this table :
CREATE TABLE IF NOT EXISTS `interlocuteur_fonction` (
`id_interlocuteur_fonction` int(11) NOT NULL AUTO_INCREMENT,
`id_interlocuteur` int(11) NOT NULL,
...
2
votes
1answer
59 views
Move existing tables to InnoDB from MyISAM and which one is faster?
A Database already has up to 25-30 tables and all are MyISAM. Most of these tables are related to each other meaning a lot of queries use joins on IDs and retrieve data.
One of the tables contain ...
1
vote
2answers
40 views
Why is myisam storage engine is faster than Innodb storage engine
Why is myisam storage engine is faster than Innodb storage engine
what makes it to be faster and innodb to be slow?
0
votes
1answer
49 views
Using ORMLite with MySQL and MyISAM tables
ORMLite's MySQL driver defaults to using InnoDB tables. The documentation describes how to configure it to use other table types, but does not describe the consequences of doing so. Having had bad ...
2
votes
1answer
31 views
MySQL query slow because of separate indexes?
Here is my situation. I have a MySQL MyISAM table containing about 4 million records with a total of 13,3 GB of data. The table contains messages received from an external system. Two of the columns ...
0
votes
1answer
58 views
SUM with a pivot to calculate overall score
From another question I got this query to get my scores summed up properly:
SELECT callSign,event, SUM(score)
FROM scores LEFT JOIN candidates
ON scores.candidateID=candidates.id
WHERE ...
1
vote
0answers
50 views
How good will InnoDB handles select statment with multi join opporations on a large database?
I am working on designing a large database for a heavy used application. The application will have many insets/updates going on it at the sale time but I will have a lot more Selects. I will be doing ...
0
votes
0answers
54 views
How is InnoDB failing in MySQL?
my question focuses on MySQL and what explains a problem (I think) that is currently showing up in InnoDB, or however InnoDB is currently set up on my laptop.
I have a MySQL database on my laptop ...
0
votes
2answers
35 views
Detect MySQL InnoDB via PHP
How can I detect if a MySQL database table is using the InnoDB storage engine from within a PHP program?
The reason - the PHP program needs to utilize database transactions. InnoDB supports ...





