MySQL Common Database Mode
| The pattern name after the combination |
Individual Sql_mode in the combined mode |
| DB2 |
Pipes_as_concat, Ansi_quotes, Ignore_space, No_key_options, No_table_options, no_filed_options |
| MAXDB |
Pipes_as_concat, Ansi_quotes, Ignore_space, No_key_options, No_table_options, No_filed_options, NO_AUTO_CREATE_USER |
| MSSQL |
Pipes_as_concat, Ansi_quotes, Ignore_space, No_key_options, No_table_options, no_filed_options |
| ORACLE |
Pipes_as_concat, Ansi_quotes, Ignore_space, No_key_options, No_table_options, No_filed_options, NO_AUTO_CREATE_USER |
| POSTGRESQL |
Pipes_as_concat, Ansi_quotes, Ignore_space, No_key_options, No_table_options, no_filed_options |
When migrating data between heterogeneous databases, you can try to use these patterns to export data that is appropriate for the destination database format, which makes it easier to import the data into the target database.
MySQL Common Database Mode