0% found this document useful (0 votes)
104 views3 pages

MyIsam Vs InnoDB

What are the main differences between MyISAM and InnoDB table storage structures? what are the advantages and disadvantages in usage of these?

Uploaded by

gsrkhan
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
104 views3 pages

MyIsam Vs InnoDB

What are the main differences between MyISAM and InnoDB table storage structures? what are the advantages and disadvantages in usage of these?

Uploaded by

gsrkhan
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

what are the main differences between MyISAM and InnoDB table stora... http://www.allinterview.com/showanswers/35641.

html

Advertise your Business

Browse | Placement Papers | Company | Code Snippets | Certifications | Visa Questions

Post Question | Post Answer | My Panel | Search | Articles | Topics | ERRORS new

Refer this Site Login | Sign Up


Do you have a collection of Interview Questions and interested to share with us!!
Please send that collection to along with your userid / name. ThanQ

Categories >> Software >> Databases >> MySQL

DIBACO Oracle Experts DIBACO Oracle Experts


Top Oracle Beratung Und Projekte Clinical Trials Top Oracle Beratung Und Projekte Clinical Trials
Lifecycle Service Lifecycle Service
www.dibaco.de www.dibaco.de

My SQL Hot Backups Data Management Software


Continuous Backups & Restore My SQL Solutions for Your Small Business Business
Databases - Free Trial Begins Here.
www.R1Soft.com www.business.com

Business Intelligence Data Grid Management


Business Intelligence Infoquelle Fachartikel, News, Effectively manage your entire data grid in one
Podcasts view. See webcast!
www.B-eye-NETWORK.de www.sl.com/coherence/webcasts

Oracle what are the main differences between MyISAM and InnoDB
table storage structures ?
Interview Question
what are the advantages and disadvantages in usage of these ?
Questions

SQL Question Submitted By :: Pk


Server I also faced this Question!!
Interview
Questions

MS Access
Interview Re: what are the main differences between MyISAM and InnoDB table storage structures ? what are the advantages and disadvantages in usage of these ?
Questions Answer this is pretty straightforward, not too technical though:
#1
http://forums.devarticles.com/general-sql-development-47/difference-between-myisam-and-non-myisam-tables-1745.html
MySQL
Interview FTA:
Questions "MyISAM is of course the default table type i'm MySQL. It's
an improvement over the now-deprecated ISAM table type. It
Postgre provides a simple tree structure for quick indexing on small
Interview tables, typicall fewer than 10,000 rows of data.
Questions
There are some other types of tables supported in MySQL,
most of which won't provide any noticable differences.
Sybase
Interview A MERGE table is a table that only exists in memory, and
Questions will not be saved if MySQL crashes or has to be restarted.
It is, as the name suggests, a merge of two (or more)
DB tables. If you drop a MERGE table, it only drops the
Architecture reference to the merge, not to the tables that are combined
in it. It's not good for much!
Interview
Questions Another table, the one which is best for huge tables, is
InnoDB. It's probably the best RDBMS out there; it's
DB actually a whole set of drivers on it's own, and when you
Administration use it, MySQL is really just a wrapper around the InnoDB
Interview table. Slashdot and other megamammoth sites out there use
it, it's fast and effecient, but the trees are pretty large,
Questions so it's not good for smaller tables.
DB There are a few others.. like BerkeleyDB, which isn't
Development anything special and doesn't provide any major performance
Interview increase.
Questions
The major difference between the various table types are the
data tree structures and how they're handled within the RDBMS.
SQL
PLSQL In the end, you'll probably find yourself sticking to MyISAM
Interview unless you're on a very large-scale project, in which cas
Questions eyou probably woudln't use MySQL anyway =D"

Databases
AllOther Is This Answer Correct ? 8 Yes 3 No
Interview
Questions
Re: what are the main differences between MyISAM and InnoDB table storage structures ? what are the advantages and disadvantages in usage of these ?

1 of 3 21.01.2010 12:31
what are the main differences between MyISAM and InnoDB table stora... http://www.allinterview.com/showanswers/35641.html

Answer There is foolowing Differences between MYISAM and InnoDB


# 2 ENGINE:-
1)MYISAM does not support the foreign key constraint and
transaction but InnoDB support it.

2)MYISAM is faster then the InnoDB but in case of perforing


the count operation it takes more time then the InnoDB.

3) MYISAM occupies less memory sapce for tables rather than


InnoDB tables.

Is This Answer Correct ? 10 Yes 2 No

Re: what are the main differences between MyISAM and InnoDB table storage structures ? what are the advantages and disadvantages in usage of these ?
Answer
# 3 1.Transactions:MYISAM doesnt support any database
transactions means if the transactions related to large
amount of data transfer it will not provide because memory
is less. But INNODB will provide transactions.

2.Locking:MYISAM provide the table level locking means if


the data in one table has been modified by the other
table ,the entire table will lock for the next process.But
INNODB provide the row level locking only the row of the
table that is being updated is locked.

3.Foreign keys – MYISAM tables do not support foreign keys.

4.Data Types:MYISAM provide a full variety of datatypes,but


INNODB will not.

Is This Answer Correct ? 18 Yes 0 No

Re: what are the main differences between MyISAM and InnoDB table storage structures ? what are the advantages and disadvantages in usage of these ?
Answer MyIsam provide full text search which is not supported by
# 4 Innodb

Is This Answer Correct ? 1 Yes 2 No

Re: what are the main differences between MyISAM and InnoDB table storage structures ? what are the advantages and disadvantages in usage of these ?
Answer innodb is acid engine
#5

Is This Answer Correct ? 3 Yes 1 No

Re: what are the main differences between MyISAM and InnoDB table storage structures ? what are the advantages and disadvantages in usage of these ?
Answer it supports online backups
#6

Is This Answer Correct ? 0 Yes 3 No

Re: what are the main differences between MyISAM and InnoDB table storage structures ? what are the advantages and disadvantages in usage of these ?
Answer innoodb has maximum performance for large databases
#7

Is This Answer Correct ? 6 Yes 1 No

Re: what are the main differences between MyISAM and InnoDB table storage structures ? what are the advantages and disadvantages in usage of these ?
Answer myisam supports table level locking where as innoodb
# 8 supports only row level locking when updated

Is This Answer Correct ? 9 Yes 1 No

2 of 3 21.01.2010 12:31
what are the main differences between MyISAM and InnoDB table stora... http://www.allinterview.com/showanswers/35641.html

Other MySQL Interview Questions

Question Asked @ Answers

what is the difrence between sql and pl/sql Wipro 18


what if you really want to store the timestamp data, such as the publication date of the article? 2
What are the differences between drop a table and truncate a table? 6
What is the maximum length of a table name, database name, and fieldname in MySQL? TISL 2
How can we change the name of a column of a table? 5
Explain multi-version concurrency control in MySQL? 2
Explain TIMESTAMP DEFAULT ?2006:09:02 17:38:44′ ON UPDATE CURRENT_TIMESTAMP. 1
Use mysqldump to create a copy of the database? 1
How to load data from a text file into a table? Sasaa 4
Which one of the following is the correct way to select all columns and all rows from "vtable"? Choice 1
SELECT FROM vtable SELF JOIN vtable Choice 2 SELECT ALL COLUMNS FROM vtable WHERE ALL
3
ROWS = * Choice 3 SELECT EVERYTHING FROM vtable Choice 4 SELECT vtable.* WHERE vtable =
vtable Choice 5 SELECT * FROM vtable WHERE 1 = 1
How do you index just the first four bytes of the column? 2
What does myisamchk do? 1
Explain advantages of InnoDB over MyISAM? 1
how we can use more then one primary key in Single Table Systematix 8
Give the syntax of GRANT commands? 3
What are the advantages of stored procedures, triggers, indexes? 2
What is ACID? 2
What?s the difference between PRIMARY KEY and UNIQUE in MyISAM? CSS 2
How to find out the second largest element from mysql table 11
Explain the difference between mysql and mysqli interfaces in PHP? 4

For more MySQL Interview Questions Click Here

Copyright Policy | Terms of Service | Help | Site Map 1 | Articles | Site Map | Site Map | Contact Us |

Copyright © 2007 ALLInterview.com. All Rights Reserved.

ALLInterview.com :: Forum9.com :: KalAajKal.com

3 of 3 21.01.2010 12:31

You might also like