MySQL Addendum 1

Source: Internet
Author: User
Tags mysql import

Recently I summarized some operations that are easy to ignore in MySQL, and some of them are quite good.
1) perror code viewing tool
Recently, it is often found that errors such as error no: in MySQL are often found during MySQL import and export, but if you need to know where the error is,
In fact, MySQL has a built-in tool perror, for example, this can be used.
Perror 30
The error message of code 30 is displayed.

2) mysqlcheck Tool
Parameters include-C (check),-R (repair)-A (analysis)-O (optimization)
For example, mysqlcheck-u root-P table name-C

3) myisampack Tool
Note: This tool can compress tables, but the compressed tables can only be read-only and reduce the space.
Myisampack table name
4 In the MySQL status, you can use the optimize table name to optimize the table. In particular, you can combine the shard space in the table to work only for MyISAM and InnoDB.

5. View MySQL Parameters
You can use show variables to view the configuration of each parameter and the server status. You can use show status to view the status,
However, it is recommended that you use the system variables in phpMyAdmin and other convenient page methods for better viewing.

6 sqlmode Introduction
In my. ini, you can see the following settings
# Set the SQL mode to strict
SQL-mode = "strict_trans_tables, no_auto_create_user, no_engine_substitution"
Enabled by default,
In MySQL 5, the default values are real_as_float, pipes_as_contact, ansi_quotes, gnore_space, and ANSI,
In this mode, values that exceed the length of a field are allowed to be inserted. After the value is inserted, a warning rather than an error is returned. When strict_trans_tables is used,
It is an error and a strict warning is given.

No_auto_create_user <! ---->

Prevent grant from automatically creating new users unless a password is specified.

The following are some introductions in the manual.

All supported modes are described below:

<! ---->

· Allow_invalid_dates

<! ---->

Do not check all dates in strict mode. Only check the day between the month and the day between 1 and 12. This is important in Web applications when you get the year, month, and day from three different fields and want to exactly save the content inserted by the user (without date verification. This mode applies to date and datetime columns. It is not suitable for the timestamp column. The timestamp column requires the verification date.

<! ---->

After the strict mode is enabled, the server requires valid months and days, not only in the range of 1 to 12 and 1 to 31, respectively. For example, '2017-04-31 'is valid when strict mode is disabled, but it is invalid when strict mode is enabled. Allow_invalid_dates should also be enabled to allow the masking of fixed dates in strict mode.

<! ---->

· Ansi_quotes

<! ---->

Use 'as an identifier quotation mark ('''). Do not use it as a string quotation mark. In ANSI mode, you can still use ''' to reference the identifier. When ansi_quotes is enabled, you cannot use double quotation marks to reference strings because it is interpreted as an identifier.

<! ---->

· Error_for_division_by_zero

<! ---->

In strict mode, if the insert or update process is divided by zero (or mod (x, 0), an error is generated (otherwise it is a warning ). If this mode is not provided, MySQL returns NULL if it is divided by zero. If insert ignore or update ignore is used, MySQL generates a zero division warning, but the operation result is null.

<! ---->

· High_not_precedence

<! ---->

The priority of the not operator is that the expression, for example, not a between B and C, is interpreted as not (A between B and C ). In some earlier versions of MySQL, the expression is interpreted as (not a) between B and C. Enable the high_not_precedencesql mode to obtain results with a higher priority.

<! ---->

mysql> SET sql_mode = ‘’;
mysql> SELECT NOT 1 BETWEEN -5 AND 5;
        -> 0
mysql> SET sql_mode = ‘broken_not’;
mysql> SELECT NOT 1 BETWEEN -5 AND 5;
        -> 1

· Ignore_space

<! ---->

A space is allowed between the function name and. All function names are considered as saved words. The result is that if you want to access the database, table, or column name that is saved as a word, you must reference it. For example, because there is a user () function, the user table name in the MySQL database and the user column in the table are saved, so you must reference them:

<! ---->

SELECT "User" FROM mysql."user";

· No_auto_create_user

<! ---->

Prevent grant from automatically creating new users unless a password is specified.

<! ---->

· No_auto_value_on_zero

<! ---->

No_auto_value_on_zero affects the processing of the auto_increment column. Generally, you can insert null or 0 to this column to generate the next serial number. No_auto_value_on_zero disables 0, so only null can generate the next serial number.

<! ---->

This mode is useful if you save 0 to the auto_increment column of the table. (This Convention is not recommended ). For example, if you useMysqldumpDump the table and reload it. MySQL generates a new serial number when it encounters a value of 0. The contents of the generated table are different from those of the dump table. Enable no_auto_value_on_zero before reloading the dump file to solve this problem.MysqldumpThe output automatically contains the statement that enables no_auto_value_on_zero.

<! ---->

· No_backslash_escapes

<! ---->

Disables the backslash ('\') as the exit character in the string. If this mode is enabled, the backslash is a common character.

<! ---->

· No_dir_in_create

<! ---->

Ignore all index directory And data directory commands when creating a table. This option is useful for slave replication servers.

<! ---->

· No_engine_substitution

<! ---->

If the required storage engine is disabled or not compiled, the storage engine cannot be replaced automatically.

<! ---->

· No_field_options

<! ---->

Do not print the MySQL special column option in the output of show create table. This mode is used in portability ModeMysqldump.

<! ---->

· No_key_options

<! ---->

Do not print mysql-specific index options in the output of show create table. This mode is used in portability ModeMysqldump.

<! ---->

· No_table_options

<! ---->

Do not print the MySQL special table option (such as engine) in the output of show create table ). This mode is used in portability ModeMysqldump.

<! ---->

· No_unsigned_subtraction

<! ---->

In a subtraction operation, if an operand has no symbols, do not mark the result as unsigned. Note that the unsigned bigint cannot be 100% used in context. See section 12.8 "cast functions and operators ".

<! ---->

<! ---->

· No_zero_date

<! ---->

In strict mode, do not use '2017-00-00 'as a valid date. You can still use the ignore option to insert a zero date. In non-strict mode, this date is acceptable, but a warning is generated.

<! ---->

· No_zero_in_date

<! ---->

In strict mode, the date of month or day is not accepted. If the ignore option is used, we insert '2017-00-00 'for a similar date ′. In non-strict mode, this date is acceptable, but a warning is generated.

<! ---->

· Only_full_group_by

<! ---->

Do not point the query in the group by section to an unselected column.

<! ---->

· Pipes_as_concat

<! ---->

| Is treated as a String concatenation operator (+) (same as Concat (), not as or.

<! ---->

· Real_as_float

<! ---->

Treat real as a synonym for float, rather than a synonym for double.

<! ---->

· Strict_trans_tables

<! ---->

Enable strict mode for all storage engines. The invalid data value is denied. Detailed descriptions are provided later.

<! ---->

· Strict_trans_tables

<! ---->

Enable strict mode for the transaction storage engine, or enable strict mode for the non-transaction storage engine. Detailed descriptions are provided later.

<! ---->

Strictly control how MySQL processes illegal or lost input values. One value can be invalid for several reasons. For example, the data type is incorrect. It is not suitable for columns or is out of range. If the newly inserted row does not contain a column that does not display the value defined by the default clause, the value is lost.

<! ---->

When the strict_all_tables or strict_trans_tables mode is enabled for a transaction table, an error occurs if the statement contains an invalid or missing value. The statement is abandoned and rolled.

<! ---->

For non-transaction tables, if the 1st rows inserted or updated have bad values, the two modes share the same behavior. The statement is abandoned and the table remains unchanged. If the statement inserts or modifies multiple rows and the bad value appears in the 2nd or later rows, the result depends on which strict option is enabled:

<! ---->

· For strict_all_tables, MySQL returns an error and ignores the remaining rows. However, in this case, the previous row has been inserted or updated. This indicates that you can update some data, which may not be what you want. To avoid this, it is best to use a single row statement, because you can give up without changing the table.

<! ---->

· For strict_trans_tables, MySQL converts invalid values to valid values closest to the column and inserts the adjusted values. If the value is lost, MySQL inserts an implicit default value in the column. In any case, MySQL generates a warning instead of an error and continues to execute the statement. Section 13.1.5, "create table Syntax" describes implicit default values.

<! ---->

Invalid date is not allowed in strict mode, for example, '2017-04-31 ′. It does not allow the date to use the "zero" part, for example, '2017-04-00' or "zero" date. To disable it, enable the no_zero_in_date and no_zero_date SQL modes based on the strict mode.

<! ---->

If you do not use the strict mode (that is, do not enable strict_trans_tables or strict_all_tables mode), MySQL inserts the adjusted value and provides a warning for invalid or lost values. In strict mode, you can use insert ignore or update ignore. See section 13.5.4.22, "Show warnings Syntax ".

<! ---->

The following special modes quickly combine the modes listed above.

<! ---->

This includes all the mode values in most of the latest MySQL versions. In the old version, the combination mode does not include any unsuitable mode values in the new version.

<! ---->

· ANSI

<! ---->

It is equivalent to real_as_float, pipes_as_concat, ansi_quotes, and ignore_space. See section 1.8.3, "run MySql in ANSI mode ".

<! ---->

· DB2

<! ---->

Equivalent to pipes_as_concat, ansi_quotes, ignore_space, no_key_options, no_table_options, and no_field_options.

<! ---->

· MaxDB

<! ---->

Equivalent to pipes_as_concat, ansi_quotes, ignore_space, no_key_options, no_table_options, no_field_options, and no_auto_create_user.

<! ---->

· MSSQL

<! ---->

Equivalent to pipes_as_concat, ansi_quotes, ignore_space, no_key_options, no_table_options, and no_field_options.

<! ---->

· Mysql323

<! ---->

It is equivalent to no_field_options and high_not_precedence.

<! ---->

· Mysql40

<! ---->

It is equivalent to no_field_options and high_not_precedence.

<! ---->

· Oracle

<! ---->

Equivalent to pipes_as_concat, ansi_quotes, ignore_space, no_key_options, no_table_options, no_field_options, and no_auto_create_user.

<! ---->

· PostgreSQL

<! ---->

Equivalent to pipes_as_concat, ansi_quotes, ignore_space, no_key_options, no_table_options, and no_field_options.

<! ---->

· Traditional

<! ---->

Equivalent to strict_trans_tables, strict_all_tables, no_zero_in_date, no_zero_date, error_for_division_by_zero, no_auto_create_user

Related Article

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.