0
votes
1answer
29 views
Select statement blocks the read/write operation on the InnoDB table
I have a Select query which executes on a transactional table having more than 4 million records. Whenever I execute this query , I observe that all write and update operations on …
3
votes
3answers
384 views
Innodb: does the space occupied by deleted rows get re-used?
I have read several times that after you delete a row in an InnoDB table in MySQL, its space is not reused, so if you make a lot of INSERTs into a table and then periodically DELET …
0
votes
1answer
22 views
mySQL - Set isolation level using PHP’s mysqli
How do I set the isolation level of a transaction to 'SERIALIZABLE' in PHP using mysqli? I have looked everywhere and I can't find any information on it.
Here is an explanation of …
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 …
0
votes
2answers
36 views
mySQL - Apply a row level lock using mysqli
Using PHP's mysqli how do you apply a row level lock?
Row level locks stop anyone editing currently present rows that match your criteria right? but do they stop a user inserting …
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
3answers
34 views
Does MySQL InnoDB always require an index for each foreign key constraint?
I am using phpMyAdmin. In order to set up a foreign key constraint with InnoDB (under the "Relation View" link on the Structure tab) it appears that I need to add an index for the …
0
votes
1answer
16 views
InnoDB Transaction Help - Select then if Not Found Add Unique Row
Hi all!
I have a mysql table that contains IPAddress parts
TABLE `EndPoints`(
`EndPointId` BIGINT(19) UNSIGNED NOT NULL AUTO_INCREMENT ,
`IpPart1` TINYINT(3) UNSIGNED NOT …
1
vote
2answers
60 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
5answers
66 views
Page vs. Extent vs. Segment vs. Tablespace
Mysql's Innodb has concepts of page, extent, segment, tablespace but I don't know how they interact with each other. How are they related? What does it mean a tablespace has 16K of …
0
votes
1answer
25 views
Altering constraint delete action
I did this:
ALTER TABLE `db`.`my_table`
ADD CONSTRAINT FOREIGN KEY (`my_second_table_id`)
REFERENCES `my_second_table` (`id`);
I should have done this:
ALTER TABLE `db`.`my_t …
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 …
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 …
1
vote
1answer
81 views
Resetting databases with having OneToOneField crossing different applications in Django
I'm getting the following error when I run ./manage.py reset app1:
Error: Error: app1 couldn't be reset. Possible reasons:
* The database isn't running or isn't configured corre …
0
votes
2answers
143 views
INNODB Cascade Syntax / Logic Problem
Hi,
I have a problem with an SQL database I'm creating. I'm trying to switch it over to use INNODB but I can't seem to get the syntax (or possibly logic) correct for cascading.
…
