MySQL Flag Options represented as int that evaluated from a binary operation. For example:
To enable all available MySQL dump options is equal to 15 which is 1+2+4+8 (or 1|2|4|8 in binary operation).
MySQL dump with --force and --skip-lock-table options equals to 5 which is 1+4 (or 1|4 in binary operation).
| Value Name | Value |
|---|---|
| Dump force flag | 1 |
| Dump opt flag | 2 |
| Dump skip lock table flag | 4 |
| Dump single transaction flag | 8 |