Results 1 to 6 of 6

Thread: What are MySQL Storage Engines

  1. #1
    Join Date
    Nov 2009
    Posts
    642

    What are MySQL Storage Engines

    Hi, i am a Windows Vista user but am new in programming or MY SQL. Yesterday, somewhere i heard about MySQL Storage Engines. Well, i know little bit about MySQL , but what is meant by MySQL Storage Engines ?

    Could you guys please give me some important info about the same ? This will really help me lot. I appreciate all your helps.

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    Re: What are MySQL Storage Engines

    The MySQL database has a special relation to databases present in the market. This specificity is the ability to associate each table with a storage engine providing functions such as transactions, indexing, algorithms. By default, the search engine available is MyISAM. This engine is not likely to be deleted by the DBA. For cons, the DBA can add a storage engine with command "Install plugin StockageName. command "Uninstall Plugin" eliminates the same engine.

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    Re: What are MySQL Storage Engines

    MyISAM is based on ISAM but it does not support transactions. The following command allows to specify exlicitement creating a MyISAM table. MySQL default, the default table is myisam
    Code:
    CREATE TABLE t (i INT) ENGINE = MyISAM;
    The InnoDB is a major storage engines and the engine is most used. It is the leading transactional storage engines. InnoDB incorporates several features such as replication, stored procedures, triggers and views. The following command creates a table to InnoDB:
    Code:
    CREATE TABLE TableName (Field1 Int, Int Field2) TYPE = InnoDB;

  4. #4
    Join Date
    Apr 2008
    Posts
    2,005

    Re: What are MySQL Storage Engines

    he MySQL Server is unique among database management systems in that it offers the ability to use many different types of database engines via its storage engine architecture. Not only are these engines developed by MySQL/Sun, but a number come from MySQL partners and ISV's as well. The end result is a very flexible and innovative environment that offers many benefits including higher performance and more efficient usage of hardware resources.

    Because the different storage engines have distinct characteristics and use cases where they excel, questions sometimes arise as to which storage engine(s) are best for various types of application scenarios. This paper compares and contrasts in detail all the current internal and external storage engines so MySQL professionals will have a better understanding of the different features of each engine and when to employ the different engines in their database architectures

  5. #5
    Join Date
    May 2008
    Posts
    2,297

    Re: What are MySQL Storage Engines

    If you need to store data temporarily, the motor memory can be used. The table data memory are stored in memory. In case of clash or restart the server, the data will be lost. The following command creates a table format Memory:
    CREATE TABLE TableName (Field1 Int, Int Field2) ENGINE = MEMORY;

    Where is your need to manage multiple tables historical identical or distribute a large table, reading alone in different parts of the disc. Using a MERGE table is strongly recommended.

  6. #6
    Join Date
    Feb 2008
    Posts
    1,852

    Re: What are MySQL Storage Engines

    Every storage engine of MySQL is completely different, designed to address a unique application need. MySQL supports several storage engines that act as handlers for different table types. MySQL storage engines include both those that handle transaction-safe tables and those that handle nontransaction-safe tables. If you need to optimize the storage of information, it will use the archive engine. Be careful with this engine, it is impossible to update the online table. If you are interested in this engine, when setting compile MySQL, the next option enables the engine
    - with-archive-storage-engine

Similar Threads

  1. Replies: 4
    Last Post: 13-01-2011, 01:08 AM
  2. Different types of storage engine in MySQL
    By Spy$Eyes in forum Software Development
    Replies: 2
    Last Post: 10-12-2010, 07:11 AM
  3. mysql config file in MySQL
    By Netorious in forum Software Development
    Replies: 4
    Last Post: 18-03-2010, 09:43 PM
  4. What are the search engines?
    By KAMANA in forum Technology & Internet
    Replies: 4
    Last Post: 31-12-2009, 02:12 AM
  5. Replies: 3
    Last Post: 07-11-2009, 09:36 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,523,075.97131 seconds with 16 queries