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.
0
votes
1answer
19 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 ...
0
votes
0answers
12 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
14 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
13 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 |
...
-1
votes
0answers
41 views
Optimize a mysql query on a table with 500 million rows
I have this specific mysql query:
select extract(month from cs.logindate - ra.creationdate), count(distinct ra.id)
from ra
inner join rp on ra.id = rp.raccountid
left join cs on rp.raccountid = ...
0
votes
2answers
44 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
51 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
36 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
29 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 ...
0
votes
0answers
7 views
MySQL high CPU usage (MyISAM table indexes) [migrated]
I have a problem with an inherited MySQL database.
From time to time mysqld uses up to 2300% CPU..
The only solution is to service mysql stop and run an myisamchk -r on an table.
After the indexes ...
1
vote
1answer
38 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
20 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`;
...
0
votes
2answers
80 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
59 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
29 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
61 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
30 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
23 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
70 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
54 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
53 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
59 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
50 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
33 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
65 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
53 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
37 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
208 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
63 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
63 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
69 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
49 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
33 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
40 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
28 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
54 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
45 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
48 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
32 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 ...
0
votes
0answers
50 views
MySQL Partitioning Data Directory
I'm attemping to create a table in MySQL using partitions, where the data for each partition resides in a different directory on the filesystem.
/usr/libexec/mysqld Ver 5.5.29 for Linux on x86_64 ...
0
votes
0answers
46 views
Two Phase Locking in My SQL INNODB engine
-As per two phase locking, the outside sql statements cannot access the data modified by the intermediate statements of the transaction until the transaction gets committed, but there is no blocking ...
0
votes
1answer
117 views
How to increase performance for heavy inserts in mysql?
I was researching ways to improve mysql performance for inserts.
About the scenario, in a busy day, for every 3 seconds about 3000 rows for big table, another 100 for medium table and around 30 for ...
0
votes
0answers
29 views
how to make mysql (MyISAM) SELECT query use 1core 100%
I am using a SELECT query containing 100000(1Lake) identifier to be searched in my MyISAM indexed column. It is using 2% CPU and 20% Memory to run.
It takes 15-30 minites to run.
Ex,
SELECT ...
0
votes
0answers
34 views
Is this select slow due to cross engine processing
There are three tables.
two of them are InnoDB and one is MyISAM.
Is this select slow due to cross engine processing?
query:
select tcb.id as id,tcb.url as url
from
...
0
votes
1answer
32 views
I am now having data tables in myisam(mysql). Should I use relation tables of innoDB? [closed]
Is a table with columns like tid(int) zid(int) direction(tinyint) type(tinyint) with quite heavy read and write operations, as well as joining to other tables in myisam, better to be engined in myisam ...
5
votes
2answers
317 views
Yii Framework - InnoDB vs MyISAM
i have a question: i have built a big application with Yii and InnoDB and came to the problem, that the insert/update durate really really long time, here is my php report:
INNODB:
admin User update ...
0
votes
1answer
42 views
Using web.py's web.database with MyISAM
I have a web.py app that's using web.database for its DB work. It's running on a low-powered VPS, so I turned off InnoDB to save resources. However, when I try to access the database, I get this ...
2
votes
2answers
48 views
MySQL MyISAM - not able to add a new column to table
I have the following table:
mysql> show create table keyword_links\G
*************************** 1. row ***************************
Table: keyword_links
Create Table: CREATE TABLE ...
0
votes
1answer
84 views
What MYSQL table storage engine do most websites use? One that supports FULLTEXT indexing as well as RELATIONSHIPS?
This is what I learnt in one of the posts I read in Stackoverflow.
"First major difference i see is that InnoDB implements row-level lock while MyISAM can do only a table-level lock. You will find ...
0
votes
3answers
205 views
Mysql, InnoDB to MyISAM for fulltext index
Actually, I would like to switch the engine of my tables. There are in InnoDB and I want to set them to MyISAM because of this
ALTER TABLE `xxx_db`.`yyy` ADD FULLTEXT `ft_modele` (
`anno_modele`
...





