Install MySQL transaction database (InnoDB) _ MySQL

Source: Internet
Author: User
Tags mysql manual
MySQL databases are classified into two types: traditional data table formats and transaction-supported data table formats (InnoDB and BDB, with InnoDB as the primary ), next, I will introduce the installation and usage of MySQL transaction processing Database. first, download the installation program for Mysqlmax, which is www.mysql.com installed in the conventional way.

MySQL databases are classified into two types: traditional data table formats and transaction-supported data table formats (InnoDB and BDB, with InnoDB as the primary ), the following describes how to install and use MySQL transaction processing database.
Download the installation program for Mysql max, www.mysql.com.
Install as usual
After installation, start mysqlbinWinMySQLadmin
Exit again
Run
Mysqlbinmydqld-nt -- remove
Mysqlbinmysqld-max-nt -- install
The above two rows remove the mysql service that does not support transaction processing and change it to the service that supports mysql transaction processing.
Then, create an ibdata directory and an iblogs directory under c:. of course, the names can be different. remember these two names and drive letters and they will be used later. you can also choose not to create a c disk. then, open my. ini, add the following code at the end: [code]
Innodb_data_file_path = ibdata1: 2000 M; ibdata2: 2000 M
Innodb_data_home_dir = c: ibdata
Set-variable = innodb_mirrored_log_groups = 1
Innodb_log_group_home_dir = c: iblogs
Set-variable = innodb_log_files_in_group = 3
Set-variable = innodb_log_file_size = 30 M
Set-variable = innodb_log_buffer_size = 8 M
Innodb_flush_log_at_trx_commit = 1
Innodb_log_arch_dir = c: iblogs
Innodb_log_archive = 0
Set-variable = innodb_buffer_pool_size = 80 M
Set-variable = innodb_additional_mem_pool_size = 10 M
Set-variable = innodb_file_io_threads = 4
Set-variable = innodb_lock_wait_timeout = 50
[/Code]
Where
Innodb_data_file_path = ibdata1: 2000 M; ibdata2: 2000 M
You can change 200 m in this line to m by yourself. check the disk capacity. we recommend that you use this setting for hard disk space of 10 GB or above for mysql;
The following line
Innodb_data_home_dir = c: ibdata
You can also change it to your own directory, mainly to see where the directory you just created is
According to the above method, you have installed the mysql transaction database, but if you install it according to the method in the mysql manual, put the above section in my. if cnf is used, errors may occur.
Now, let's see if the installation is complete. start apache or iis, start mysql service in the service, open phpmyadmin, and enter SHOW variables like "have _ %"
If you see the following result, it indicates that the installation is successful.
[Code]
Variable_name Value
Have_bdb YES
Have_innodb YES
Have_isam YES
Have_raid NO
Have_symlink YES
Have_openssl NO
Have_query_cache YES
[/Code]
Note: the use of mysql transaction processing methods is similar to the syntax of other databases. I will not talk about it here. In addition, Mysql will implement foreign keys and subqueries in mysql 4.3, simple foreign keys have been implemented in 4.0, but they are not very convenient. I believe they will do better in the future.
The use of transaction tables has been successfully implemented in my online order management system. The effect is good, but it has not gone through the practice of large data volumes.
I wrote the above article based on my own practice. if you want to repost it, please indicate the source and author. you are also welcome to discuss some issues about the Mysql transaction table with me.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.