angelo.pezzullo
pubblicato più di 2 anni fa

Codici e Messaggi di Errore (Server)

Codici e Messaggi di Errore (Server)

A seguire una lista con descrizioni dei Codici di errore MySQL generati a livello di Server MySQL

Le applicazioni che si interfacciano con MySQL si trovano spesso a gestire molteplici tipi di errori ritornati dal server. Lato client, MySQL visualizza gli errori nel formato seguente:

1shell> SELECT * FROM no_such_table;
2ERROR 1146 (42S02): Table 'test.no_such_table' doesn'

I messaggi di errore visualizzati contengono tre tipi di informazioni:

  • Un codice di errore numerico (1146). Questo valore è specifico di MySQL e non è portabile verso altri database.
  • Una stringa di tipo SQLSTATE (‘42S02’). Questo valore è specifico dell’ANSI SQL e dell’ODBC ed è standardizzato. Non tutti i numeri degli errori di MySQL sono mappati nei codici di errore SQLSTATE. Il valore ‘HY000’ (errore generale) è usato per gli errori non mappati.
  • Una stringa che rappresenta la descrizione dell’errore.

La lista dei messaggi di errore restituiti dal server di MySQL è presente nel file share/errmsg.txt, %d e %s rappresentano rispettivamente numeri e stringhe che vengono sostituiti nel messaggio quando viene visualizzato.

I valori dei messaggi corrispondono ognuno ad uno specifico errore definito all’interno del file share/errmsg.txt e vengono usati per generare le definizioni degli errori all’interno dei file include/mysqld_error.h e include/mysqld_ername.h.

I valori delle stringhe SQLSTATE sono presenti nel file share/errmsg.txt e vengono usati per generare le definizioni degli errori all’interno del file include/sql_state.h.

Di seguito riporto gli errori più frequenti restituiti dal server di MySQL

   1Error: 1000 SQLSTATE: HY000 (ER_HASHCHK)
   2      Message: hashchk
   3
   4      Error: 1001 SQLSTATE: HY000 (ER_NISAMCHK)
   5      Message: isamchk
   6
   7      Error: 1002 SQLSTATE: HY000 (ER_NO)
   8      Message: NO
   9
  10      Error: 1003 SQLSTATE: HY000 (ER_YES)
  11      Message: YES
  12
  13      Error: 1004 SQLSTATE: HY000 (ER_CANT_CREATE_FILE)
  14      Message: Can't create file '%s' (errno: %d)
  15
  16      Error: 1005 SQLSTATE: HY000 (ER_CANT_CREATE_TABLE)
  17      Message: Can't create table '%s' (errno: %d)
  18
  19      Error: 1006 SQLSTATE: HY000 (ER_CANT_CREATE_DB)
  20      Message: Can't create database '%s' (errno: %d)
  21
  22      Error: 1007 SQLSTATE: HY000 (ER_DB_CREATE_EXISTS)
  23      Message: Can't create database '%s'; database exists
  24
  25      Error: 1008 SQLSTATE: HY000 (ER_DB_DROP_EXISTS)
  26      Message: Can't drop database '%s'; database doesn't exist
  27
  28      Error: 1009 SQLSTATE: HY000 (ER_DB_DROP_DELETE)
  29      Message: Error dropping database (can't delete '%s', errno: %d)
  30
  31      Error: 1010 SQLSTATE: HY000 (ER_DB_DROP_RMDIR)
  32      Message: Error dropping database (can't rmdir '%s', errno: %d)
  33
  34      Error: 1011 SQLSTATE: HY000 (ER_CANT_DELETE_FILE)
  35      Message: Error on delete of '%s' (errno: %d)
  36
  37      Error: 1012 SQLSTATE: HY000 (ER_CANT_FIND_SYSTEM_REC)
  38      Message: Can't read record in system table
  39
  40      Error: 1013 SQLSTATE: HY000 (ER_CANT_GET_STAT)
  41      Message: Can't get status of '%s' (errno: %d)
  42
  43      Error: 1014 SQLSTATE: HY000 (ER_CANT_GET_WD)
  44      Message: Can't get working directory (errno: %d)
  45
  46      Error: 1015 SQLSTATE: HY000 (ER_CANT_LOCK)
  47      Message: Can't lock file (errno: %d)
  48
  49      Error: 1016 SQLSTATE: HY000 (ER_CANT_OPEN_FILE)
  50      Message: Can't open file: '%s' (errno: %d)
  51
  52      Error: 1017 SQLSTATE: HY000 (ER_FILE_NOT_FOUND)
  53      Message: Can't find file: '%s' (errno: %d)
  54
  55      Error: 1018 SQLSTATE: HY000 (ER_CANT_READ_DIR)
  56      Message: Can't read dir of '%s' (errno: %d)
  57
  58      Error: 1019 SQLSTATE: HY000 (ER_CANT_SET_WD)
  59      Message: Can't change dir to '%s' (errno: %d)
  60
  61      Error: 1020 SQLSTATE: HY000 (ER_CHECKREAD)
  62      Message: Record has changed since last read in table '%s'
  63
  64      Error: 1021 SQLSTATE: HY000 (ER_DISK_FULL)
  65      Message: Disk full (%s); waiting for someone to free some space...
  66
  67      Error: 1022 SQLSTATE: 23000 (ER_DUP_KEY)
  68      Message: Can't write; duplicate key in table '%s'
  69
  70      Error: 1023 SQLSTATE: HY000 (ER_ERROR_ON_CLOSE)
  71      Message: Error on close of '%s' (errno: %d)
  72
  73      Error: 1024 SQLSTATE: HY000 (ER_ERROR_ON_READ)
  74      Message: Error reading file '%s' (errno: %d)
  75
  76      Error: 1025 SQLSTATE: HY000 (ER_ERROR_ON_RENAME)
  77      Message: Error on rename of '%s' to '%s' (errno: %d)
  78
  79      Error: 1026 SQLSTATE: HY000 (ER_ERROR_ON_WRITE)
  80      Message: Error writing file '%s' (errno: %d)
  81
  82      Error: 1027 SQLSTATE: HY000 (ER_FILE_USED)
  83      Message: '%s' is locked against change
  84
  85      Error: 1028 SQLSTATE: HY000 (ER_FILSORT_ABORT)
  86      Message: Sort aborted
  87
  88      Error: 1029 SQLSTATE: HY000 (ER_FORM_NOT_FOUND)
  89      Message: View '%s' doesn't exist for '%s'
  90
  91      Error: 1030 SQLSTATE: HY000 (ER_GET_ERRNO)
  92      Message: Got error %d from storage engine
  93
  94      Error: 1031 SQLSTATE: HY000 (ER_ILLEGAL_HA)
  95      Message: Table storage engine for '%s' doesn't have this option
  96
  97      Error: 1032 SQLSTATE: HY000 (ER_KEY_NOT_FOUND)
  98      Message: Can't find record in '%s'
  99
 100      Error: 1033 SQLSTATE: HY000 (ER_NOT_FORM_FILE)
 101      Message: Incorrect information in file: '%s'
 102
 103      Error: 1034 SQLSTATE: HY000 (ER_NOT_KEYFILE)
 104      Message: Incorrect key file for table '%s'; try to repair it
 105
 106      Error: 1035 SQLSTATE: HY000 (ER_OLD_KEYFILE)
 107      Message: Old key file for table '%s'; repair it!
 108
 109      Error: 1036 SQLSTATE: HY000 (ER_OPEN_AS_READONLY)
 110      Message: Table '%s' is read only
 111
 112      Error: 1037 SQLSTATE: HY001 (ER_OUTOFMEMORY)
 113      Message: Out of memory; restart server and try again (needed %d bytes)
 114
 115      Error: 1038 SQLSTATE: HY001 (ER_OUT_OF_SORTMEMORY)
 116      Message: Out of sort memory; increase server sort buffer size
 117
 118      Error: 1039 SQLSTATE: HY000 (ER_UNEXPECTED_EOF)
 119      Message: Unexpected EOF found when reading file '%s' (errno: %d)
 120
 121      Error: 1040 SQLSTATE: 08004 (ER_CON_COUNT_ERROR)
 122      Message: Too many connections
 123
 124      Error: 1041 SQLSTATE: HY000 (ER_OUT_OF_RESOURCES)
 125      Message: Out of memory; check if mysqld or some other process 
 126      uses all available memory; if not, you may have to use 'ulimit' 
 127      to allow mysqld to use more memory or you can add more swap space
 128
 129      Error: 1042 SQLSTATE: 08S01 (ER_BAD_HOST_ERROR)
 130      Message: Can't get hostname for your address
 131
 132      Error: 1043 SQLSTATE: 08S01 (ER_HANDSHAKE_ERROR)
 133      Message: Bad handshake
 134
 135      Error: 1044 SQLSTATE: 42000 (ER_DBACCESS_DENIED_ERROR)
 136      Message: Access denied for user '%s'@'%s' to database '%s'
 137
 138      Error: 1045 SQLSTATE: 28000 (ER_ACCESS_DENIED_ERROR)
 139      Message: Access denied for user '%s'@'%s' (using password: %s)
 140
 141      Error: 1046 SQLSTATE: 3D000 (ER_NO_DB_ERROR)
 142      Message: No database selected
 143
 144      Error: 1047 SQLSTATE: 08S01 (ER_UNKNOWN_COM_ERROR)
 145      Message: Unknown command
 146
 147      Error: 1048 SQLSTATE: 23000 (ER_BAD_NULL_ERROR)
 148      Message: Column '%s' cannot be null
 149
 150      Error: 1049 SQLSTATE: 42000 (ER_BAD_DB_ERROR)
 151      Message: Unknown database '%s'
 152
 153      Error: 1050 SQLSTATE: 42S01 (ER_TABLE_EXISTS_ERROR)
 154      Message: Table '%s' already exists
 155
 156      Error: 1051 SQLSTATE: 42S02 (ER_BAD_TABLE_ERROR)
 157      Message: Unknown table '%s'
 158
 159      Error: 1052 SQLSTATE: 23000 (ER_NON_UNIQ_ERROR)
 160      Message: Column '%s' in %s is ambiguous
 161
 162      Error: 1053 SQLSTATE: 08S01 (ER_SERVER_SHUTDOWN)
 163      Message: Server shutdown in progress
 164
 165      Error: 1054 SQLSTATE: 42S22 (ER_BAD_FIELD_ERROR)
 166      Message: Unknown column '%s' in '%s'
 167
 168      Error: 1055 SQLSTATE: 42000 (ER_WRONG_FIELD_WITH_GROUP)
 169      Message: '%s' isn't in GROUP BY
 170
 171      Error: 1056 SQLSTATE: 42000 (ER_WRONG_GROUP_FIELD)
 172      Message: Can't group on '%s'
 173
 174      Error: 1057 SQLSTATE: 42000 (ER_WRONG_SUM_SELECT)
 175      Message: Statement has sum functions and columns in same statement
 176
 177      Error: 1058 SQLSTATE: 21S01 (ER_WRONG_VALUE_COUNT)
 178      Message: Column count doesn't match value count
 179
 180      Error: 1059 SQLSTATE: 42000 (ER_TOO_LONG_IDENT)
 181      Message: Identifier name '%s' is too long
 182
 183      Error: 1060 SQLSTATE: 42S21 (ER_DUP_FIELDNAME)
 184      Message: Duplicate column name '%s'
 185
 186      Error: 1061 SQLSTATE: 42000 (ER_DUP_KEYNAME)
 187      Message: Duplicate key name '%s'
 188
 189      Error: 1062 SQLSTATE: 23000 (ER_DUP_ENTRY)
 190      Message: Duplicate entry '%s' for key %d
 191
 192      Error: 1063 SQLSTATE: 42000 (ER_WRONG_FIELD_SPEC)
 193      Message: Incorrect column specifier for column '%s'
 194
 195      Error: 1064 SQLSTATE: 42000 (ER_PARSE_ERROR)
 196      Message: %s near '%s' at line %d
 197
 198      Error: 1065 SQLSTATE: 42000 (ER_EMPTY_QUERY)
 199      Message: Query was empty
 200
 201      Error: 1066 SQLSTATE: 42000 (ER_NONUNIQ_TABLE)
 202      Message: Not unique table/alias: '%s'
 203
 204      Error: 1067 SQLSTATE: 42000 (ER_INVALID_DEFAULT)
 205      Message: Invalid default value for '%s'
 206
 207      Error: 1068 SQLSTATE: 42000 (ER_MULTIPLE_PRI_KEY)
 208      Message: Multiple primary key defined
 209
 210      Error: 1069 SQLSTATE: 42000 (ER_TOO_MANY_KEYS)
 211      Message: Too many keys specified; max %d keys allowed
 212
 213      Error: 1070 SQLSTATE: 42000 (ER_TOO_MANY_KEY_PARTS)
 214      Message: Too many key parts specified; max %d parts allowed
 215
 216      Error: 1071 SQLSTATE: 42000 (ER_TOO_LONG_KEY)
 217      Message: Specified key was too long; max key length is %d bytes
 218
 219      Error: 1072 SQLSTATE: 42000 (ER_KEY_COLUMN_DOES_NOT_EXITS)
 220      Message: Key column '%s' doesn't exist in table
 221
 222      Error: 1073 SQLSTATE: 42000 (ER_BLOB_USED_AS_KEY)
 223      Message: BLOB column '%s' can't be used in key specification 
 224      with the used table type
 225
 226      Error: 1074 SQLSTATE: 42000 (ER_TOO_BIG_FIELDLENGTH)
 227      Message: Column length too big for column '%s' (max = %lu); 
 228      use BLOB or TEXT instead
 229
 230      Error: 1075 SQLSTATE: 42000 (ER_WRONG_AUTO_KEY)
 231      Message: Incorrect table definition; there can be only one 
 232      auto column and it must be defined as a key
 233
 234      Error: 1076 SQLSTATE: HY000 (ER_READY)
 235      Message: %s: ready for connections. Version: '%s' socket: 
 236     '%s' port: %d
 237
 238      Error: 1077 SQLSTATE: HY000 (ER_NORMAL_SHUTDOWN)
 239      Message: %s: Normal shutdown
 240
 241      Error: 1078 SQLSTATE: HY000 (ER_GOT_SIGNAL)
 242      Message: %s: Got signal %d. Aborting!
 243
 244      Error: 1079 SQLSTATE: HY000 (ER_SHUTDOWN_COMPLETE)
 245      Message: %s: Shutdown complete
 246
 247      Error: 1080 SQLSTATE: 08S01 (ER_FORCING_CLOSE)
 248      Message: %s: Forcing close of thread %ld user: '%s'
 249
 250      Error: 1081 SQLSTATE: 08S01 (ER_IPSOCK_ERROR)
 251      Message: Can't create IP socket
 252
 253      Error: 1082 SQLSTATE: 42S12 (ER_NO_SUCH_INDEX)
 254      Message: Table '%s' has no index like the one used in 
 255      CREATE INDEX; recreate the table
 256
 257      Error: 1083 SQLSTATE: 42000 (ER_WRONG_FIELD_TERMINATORS)
 258      Message: Field separator argument is not what is expected; 
 259      check the manual
 260
 261      Error: 1084 SQLSTATE: 42000 (ER_BLOBS_AND_NO_TERMINATED)
 262      Message: You can't use fixed rowlength with BLOBs; please use 
 263     'fields terminated by'
 264
 265      Error: 1085 SQLSTATE: HY000 (ER_TEXTFILE_NOT_READABLE)
 266      Message: The file '%s' must be in the database directory or be 
 267      readable by all
 268
 269      Error: 1086 SQLSTATE: HY000 (ER_FILE_EXISTS_ERROR)
 270      Message: File '%s' already exists
 271
 272      Error: 1087 SQLSTATE: HY000 (ER_LOAD_INFO)
 273      Message: Records: %ld Deleted: %ld Skipped: %ld Warnings: %ld
 274
 275      Error: 1088 SQLSTATE: HY000 (ER_ALTER_INFO)
 276      Message: Records: %ld Duplicates: %ld
 277
 278      Error: 1089 SQLSTATE: HY000 (ER_WRONG_SUB_KEY)
 279      Message: Incorrect sub part key; the used key part isn't a string, 
 280      the used length is longer than the key part, or the storage engine
 281      doesn't support unique sub keys
 282
 283      Error: 1090 SQLSTATE: 42000 (ER_CANT_REMOVE_ALL_FIELDS)
 284      Message: You can't delete all columns with ALTER TABLE; use DROP 
 285      TABLE instead
 286
 287      Error: 1091 SQLSTATE: 42000 (ER_CANT_DROP_FIELD_OR_KEY)
 288      Message: Can't DROP '%s'; check that column/key exists
 289
 290      Error: 1092 SQLSTATE: HY000 (ER_INSERT_INFO)
 291      Message: Records: %ld Duplicates: %ld Warnings: %ld
 292
 293      Error: 1093 SQLSTATE: HY000 (ER_UPDATE_TABLE_USED)
 294      Message: You can't specify target table '%s' for update in FROM clause
 295
 296      Error: 1094 SQLSTATE: HY000 (ER_NO_SUCH_THREAD)
 297      Message: Unknown thread id: %lu
 298
 299      Error: 1095 SQLSTATE: HY000 (ER_KILL_DENIED_ERROR)
 300      Message: You are not owner of thread %lu
 301
 302      Error: 1096 SQLSTATE: HY000 (ER_NO_TABLES_USED)
 303      Message: No tables used
 304
 305      Error: 1097 SQLSTATE: HY000 (ER_TOO_BIG_SET)
 306      Message: Too many strings for column %s and SET
 307
 308      Error: 1098 SQLSTATE: HY000 (ER_NO_UNIQUE_LOGFILE)
 309      Message: Can't generate a unique log-filename %s.(1-999)
 310
 311      Error: 1099 SQLSTATE: HY000 (ER_TABLE_NOT_LOCKED_FOR_WRITE)
 312      Message: Table '%s' was locked with a READ lock and can't be 
 313      updated
 314
 315      Error: 1100 SQLSTATE: HY000 (ER_TABLE_NOT_LOCKED)
 316      Message: Table '%s' was not locked with LOCK TABLES
 317
 318      Error: 1101 SQLSTATE: 42000 (ER_BLOB_CANT_HAVE_DEFAULT)
 319      Message: BLOB/TEXT column '%s' can't have a default value
 320
 321      Error: 1102 SQLSTATE: 42000 (ER_WRONG_DB_NAME)
 322      Message: Incorrect database name '%s'
 323
 324      Error: 1103 SQLSTATE: 42000 (ER_WRONG_TABLE_NAME)
 325      Message: Incorrect table name '%s'
 326
 327      Error: 1104 SQLSTATE: 42000 (ER_TOO_BIG_SELECT)
 328      Message: The SELECT would examine more than MAX_JOIN_SIZE rows; 
 329      check your WHERE and use SET SQL_BIG_SELECTS=1 or SET 
 330      SQL_MAX_JOIN_SIZE=# if the SELECT is okay
 331
 332      Error: 1105 SQLSTATE: HY000 (ER_UNKNOWN_ERROR)
 333      Message: Unknown error
 334
 335      Error: 1106 SQLSTATE: 42000 (ER_UNKNOWN_PROCEDURE)
 336      Message: Unknown procedure '%s'
 337
 338      Error: 1107 SQLSTATE: 42000 (ER_WRONG_PARAMCOUNT_TO_PROCEDURE)
 339      Message: Incorrect parameter count to procedure '%s'
 340
 341      Error: 1108 SQLSTATE: HY000 (ER_WRONG_PARAMETERS_TO_PROCEDURE)
 342      Message: Incorrect parameters to procedure '%s'
 343
 344      Error: 1109 SQLSTATE: 42S02 (ER_UNKNOWN_TABLE)
 345      Message: Unknown table '%s' in %s
 346
 347      Error: 1110 SQLSTATE: 42000 (ER_FIELD_SPECIFIED_TWICE)
 348      Message: Column '%s' specified twice
 349
 350      Error: 1111 SQLSTATE: HY000 (ER_INVALID_GROUP_FUNC_USE)
 351      Message: Invalid use of group function
 352
 353      Error: 1112 SQLSTATE: 42000 (ER_UNSUPPORTED_EXTENSION)
 354      Message: Table '%s' uses an extension that doesn't exist in 
 355      this MySQL version
 356
 357      Error: 1113 SQLSTATE: 42000 (ER_TABLE_MUST_HAVE_COLUMNS)
 358      Message: A table must have at least 1 column
 359
 360      Error: 1114 SQLSTATE: HY000 (ER_RECORD_FILE_FULL)
 361      Message: The table '%s' is full
 362
 363      Error: 1115 SQLSTATE: 42000 (ER_UNKNOWN_CHARACTER_SET)
 364      Message: Unknown character set: '%s'
 365
 366      Error: 1116 SQLSTATE: HY000 (ER_TOO_MANY_TABLES)
 367      Message: Too many tables; MySQL can only use %d tables in a join
 368
 369      Error: 1117 SQLSTATE: HY000 (ER_TOO_MANY_FIELDS)
 370      Message: Too many columns
 371
 372      Error: 1118 SQLSTATE: 42000 (ER_TOO_BIG_ROWSIZE)
 373      Message: Row size too large. The maximum row size for the used 
 374      table type, not counting BLOBs, is %ld. You have to change some 
 375      columns to TEXT or BLOBs
 376
 377      Error: 1119 SQLSTATE: HY000 (ER_STACK_OVERRUN)
 378      Message: Thread stack overrun: Used: %ld of a %ld stack. Use 
 379      'mysqld -O thread_stack=#' to specify a bigger stack if needed
 380
 381      Error: 1120 SQLSTATE: 42000 (ER_WRONG_OUTER_JOIN)
 382      Message: Cross dependency found in OUTER JOIN; examine your ON conditions
 383
 384      Error: 1121 SQLSTATE: 42000 (ER_NULL_COLUMN_IN_INDEX)
 385      Message: Column '%s' is used with UNIQUE or INDEX but is not 
 386      defined as NOT NULL
 387
 388      Error: 1122 SQLSTATE: HY000 (ER_CANT_FIND_UDF)
 389      Message: Can't load function '%s'
 390
 391      Error: 1123 SQLSTATE: HY000 (ER_CANT_INITIALIZE_UDF)
 392      Message: Can't initialize function '%s'; %s
 393
 394      Error: 1124 SQLSTATE: HY000 (ER_UDF_NO_PATHS)
 395      Message: No paths allowed for shared library
 396
 397      Error: 1125 SQLSTATE: HY000 (ER_UDF_EXISTS)
 398      Message: Function '%s' already exists
 399
 400      Error: 1126 SQLSTATE: HY000 (ER_CANT_OPEN_LIBRARY)
 401      Message: Can't open shared library '%s' (errno: %d %s)
 402
 403      Error: 1127 SQLSTATE: HY000 (ER_CANT_FIND_DL_ENTRY)
 404      Message: Can't find function '%s' in library
 405
 406      Error: 1128 SQLSTATE: HY000 (ER_FUNCTION_NOT_DEFINED)
 407      Message: Function '%s' is not defined
 408
 409      Error: 1129 SQLSTATE: HY000 (ER_HOST_IS_BLOCKED)
 410      Message: Host '%s' is blocked because of many connection errors; 
 411      unblock with 'mysqladmin flush-hosts'
 412
 413      Error: 1130 SQLSTATE: HY000 (ER_HOST_NOT_PRIVILEGED)
 414      Message: Host '%s' is not allowed to connect to this MySQL server
 415
 416      Error: 1131 SQLSTATE: 42000 (ER_PASSWORD_ANONYMOUS_USER)
 417      Message: You are using MySQL as an anonymous user and anonymous users 
 418      are not allowed to change passwords
 419
 420      Error: 1132 SQLSTATE: 42000 (ER_PASSWORD_NOT_ALLOWED)
 421      Message: You must have privileges to update tables in the mysql 
 422      database to be able to change passwords for others
 423
 424      Error: 1133 SQLSTATE: 42000 (ER_PASSWORD_NO_MATCH)
 425      Message: Can't find any matching row in the user table
 426
 427      Error: 1134 SQLSTATE: HY000 (ER_UPDATE_INFO)
 428      Message: Rows matched: %ld Changed: %ld Warnings: %ld
 429
 430      Error: 1135 SQLSTATE: HY000 (ER_CANT_CREATE_THREAD)
 431      Message: Can't create a new thread (errno %d); if you are not out 
 432      of available memory, you can consult the manual for a possible
 433      OS-dependent bug
 434
 435      Error: 1136 SQLSTATE: 21S01 (ER_WRONG_VALUE_COUNT_ON_ROW)
 436      Message: Column count doesn't match value count at row %ld
 437
 438      Error: 1137 SQLSTATE: HY000 (ER_CANT_REOPEN_TABLE)
 439      Message: Can't reopen table: '%s'
 440
 441      Error: 1138 SQLSTATE: 22004 (ER_INVALID_USE_OF_NULL)
 442      Message: Invalid use of NULL value
 443
 444      Error: 1139 SQLSTATE: 42000 (ER_REGEXP_ERROR)
 445      Message: Got error '%s' from regexp
 446
 447      Error: 1140 SQLSTATE: 42000 (ER_MIX_OF_GROUP_FUNC_AND_FIELDS)
 448      Message: Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with 
 449      no GROUP columns is illegal if there is no GROUP BY clause
 450
 451      Error: 1141 SQLSTATE: 42000 (ER_NONEXISTING_GRANT)
 452      Message: There is no such grant defined for user '%s' on host '%s'
 453
 454      Error: 1142 SQLSTATE: 42000 (ER_TABLEACCESS_DENIED_ERROR)
 455      Message: %s command denied to user '%s'@'%s' for table '%s'
 456
 457      Error: 1143 SQLSTATE: 42000 (ER_COLUMNACCESS_DENIED_ERROR)
 458      Message: %s command denied to user '%s'@'%s' for column '%s' in table '%s'
 459
 460      Error: 1144 SQLSTATE: 42000 (ER_ILLEGAL_GRANT_FOR_TABLE)
 461      Message: Illegal GRANT/REVOKE command; please consult the manual 
 462      to see which privileges can be used
 463
 464      Error: 1145 SQLSTATE: 42000 (ER_GRANT_WRONG_HOST_OR_USER)
 465      Message: The host or user argument to GRANT is too long
 466
 467      Error: 1146 SQLSTATE: 42S02 (ER_NO_SUCH_TABLE)
 468      Message: Table '%s.%s' doesn't exist
 469
 470      Error: 1147 SQLSTATE: 42000 (ER_NONEXISTING_TABLE_GRANT)
 471      Message: There is no such grant defined for user '%s' on host '%s' 
 472      on table '%s'
 473
 474      Error: 1148 SQLSTATE: 42000 (ER_NOT_ALLOWED_COMMAND)
 475      Message: The used command is not allowed with this MySQL version
 476
 477      Error: 1149 SQLSTATE: 42000 (ER_SYNTAX_ERROR)
 478      Message: You have an error in your SQL syntax; check the manual 
 479      that corresponds to your MySQL server version for the right syntax 
 480      to use
 481
 482      Error: 1150 SQLSTATE: HY000 (ER_DELAYED_CANT_CHANGE_LOCK)
 483      Message: Delayed insert thread couldn't get requested lock for 
 484      table %s
 485
 486      Error: 1151 SQLSTATE: HY000 (ER_TOO_MANY_DELAYED_THREADS)
 487      Message: Too many delayed threads in use
 488
 489      Error: 1152 SQLSTATE: 08S01 (ER_ABORTING_CONNECTION)
 490      Message: Aborted connection %ld to db: '%s' user: '%s' (%s)
 491
 492      Error: 1153 SQLSTATE: 08S01 (ER_NET_PACKET_TOO_LARGE)
 493      Message: Got a packet bigger than 'max_allowed_packet' bytes
 494
 495      Error: 1154 SQLSTATE: 08S01 (ER_NET_READ_ERROR_FROM_PIPE)
 496      Message: Got a read error from the connection pipe
 497
 498      Error: 1155 SQLSTATE: 08S01 (ER_NET_FCNTL_ERROR)
 499      Message: Got an error from fcntl()
 500
 501      Error: 1156 SQLSTATE: 08S01 (ER_NET_PACKETS_OUT_OF_ORDER)
 502      Message: Got packets out of order
 503
 504      Error: 1157 SQLSTATE: 08S01 (ER_NET_UNCOMPRESS_ERROR)
 505      Message: Couldn't uncompress communication packet
 506
 507      Error: 1158 SQLSTATE: 08S01 (ER_NET_READ_ERROR)
 508      Message: Got an error reading communication packets
 509
 510      Error: 1159 SQLSTATE: 08S01 (ER_NET_READ_INTERRUPTED)
 511      Message: Got timeout reading communication packets
 512
 513      Error: 1160 SQLSTATE: 08S01 (ER_NET_ERROR_ON_WRITE)
 514      Message: Got an error writing communication packets
 515
 516      Error: 1161 SQLSTATE: 08S01 (ER_NET_WRITE_INTERRUPTED)
 517      Message: Got timeout writing communication packets
 518
 519      Error: 1162 SQLSTATE: 42000 (ER_TOO_LONG_STRING)
 520      Message: Result string is longer than 'max_allowed_packet' bytes
 521
 522      Error: 1163 SQLSTATE: 42000 (ER_TABLE_CANT_HANDLE_BLOB)
 523      Message: The used table type doesn't support BLOB/TEXT columns
 524
 525      Error: 1164 SQLSTATE: 42000 (ER_TABLE_CANT_HANDLE_AUTO_INCREMENT)
 526      Message: The used table type doesn't support AUTO_INCREMENT columns
 527
 528      Error: 1165 SQLSTATE: HY000 (ER_DELAYED_INSERT_TABLE_LOCKED)
 529      Message: INSERT DELAYED can't be used with table '%s' because it 
 530      is locked with LOCK TABLES
 531
 532      Error: 1166 SQLSTATE: 42000 (ER_WRONG_COLUMN_NAME)
 533      Message: Incorrect column name '%s'
 534
 535      Error: 1167 SQLSTATE: 42000 (ER_WRONG_KEY_COLUMN)
 536      Message: The used storage engine can't index column '%s'
 537
 538      Error: 1168 SQLSTATE: HY000 (ER_WRONG_MRG_TABLE)
 539      Message: Unable to open underlying table which is differently 
 540      defined or of non-MyISAM type or doesn't exist
 541
 542      Error: 1169 SQLSTATE: 23000 (ER_DUP_UNIQUE)
 543      Message: Can't write, because of unique constraint, to table '%s'
 544
 545      Error: 1170 SQLSTATE: 42000 (ER_BLOB_KEY_WITHOUT_LENGTH)
 546      Message: BLOB/TEXT column '%s' used in key specification without 
 547      a key length
 548
 549      Error: 1171 SQLSTATE: 42000 (ER_PRIMARY_CANT_HAVE_NULL)
 550      Message: All parts of a PRIMARY KEY must be NOT NULL; if you need 
 551      NULL in a key, use UNIQUE instead
 552
 553      Error: 1172 SQLSTATE: 42000 (ER_TOO_MANY_ROWS)
 554      Message: Result consisted of more than one row
 555
 556      Error: 1173 SQLSTATE: 42000 (ER_REQUIRES_PRIMARY_KEY)
 557      Message: This table type requires a primary key
 558
 559      Error: 1174 SQLSTATE: HY000 (ER_NO_RAID_COMPILED)
 560      Message: This version of MySQL is not compiled with RAID support
 561
 562      Error: 1175 SQLSTATE: HY000 (ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE)
 563      Message: You are using safe update mode and you tried to update a 
 564      table without a WHERE that uses a KEY column
 565
 566      Error: 1176 SQLSTATE: HY000 (ER_KEY_DOES_NOT_EXITS)
 567      Message: Key '%s' doesn't exist in table '%s'
 568
 569      Error: 1177 SQLSTATE: 42000 (ER_CHECK_NO_SUCH_TABLE)
 570      Message: Can't open table
 571
 572      Error: 1178 SQLSTATE: 42000 (ER_CHECK_NOT_IMPLEMENTED)
 573      Message: The storage engine for the table doesn't support %s
 574
 575      Error: 1179 SQLSTATE: 25000 (ER_CANT_DO_THIS_DURING_AN_TRANSACTION)
 576      Message: You are not allowed to execute this command in a transaction
 577
 578      Error: 1180 SQLSTATE: HY000 (ER_ERROR_DURING_COMMIT)
 579      Message: Got error %d during COMMIT
 580
 581      Error: 1181 SQLSTATE: HY000 (ER_ERROR_DURING_ROLLBACK)
 582      Message: Got error %d during ROLLBACK
 583
 584      Error: 1182 SQLSTATE: HY000 (ER_ERROR_DURING_FLUSH_LOGS)
 585      Message: Got error %d during FLUSH_LOGS
 586
 587      Error: 1183 SQLSTATE: HY000 (ER_ERROR_DURING_CHECKPOINT)
 588      Message: Got error %d during CHECKPOINT
 589
 590      Error: 1184 SQLSTATE: 08S01 (ER_NEW_ABORTING_CONNECTION)
 591      Message: Aborted connection %ld to db: '%s' user: '%s' host: '%s' (%s)
 592
 593      Error: 1185 SQLSTATE: HY000 (ER_DUMP_NOT_IMPLEMENTED)
 594      Message: The storage engine for the table does not support binary 
 595      table dump
 596
 597      Error: 1186 SQLSTATE: HY000 (ER_FLUSH_MASTER_BINLOG_CLOSED)
 598      Message: Binlog closed, cannot RESET MASTER
 599
 600      Error: 1187 SQLSTATE: HY000 (ER_INDEX_REBUILD)
 601      Message: Failed rebuilding the index of dumped table '%s'
 602
 603      Error: 1188 SQLSTATE: HY000 (ER_MASTER)
 604      Message: Error from master: '%s'
 605
 606      Error: 1189 SQLSTATE: 08S01 (ER_MASTER_NET_READ)
 607      Message: Net error reading from master
 608
 609      Error: 1190 SQLSTATE: 08S01 (ER_MASTER_NET_WRITE)
 610      Message: Net error writing to master
 611
 612      Error: 1191 SQLSTATE: HY000 (ER_FT_MATCHING_KEY_NOT_FOUND)
 613      Message: Can't find FULLTEXT index matching the column list
 614
 615      Error: 1192 SQLSTATE: HY000 (ER_LOCK_OR_ACTIVE_TRANSACTION)
 616      Message: Can't execute the given command because you have active 
 617      locked tables or an active transaction
 618
 619      Error: 1193 SQLSTATE: HY000 (ER_UNKNOWN_SYSTEM_VARIABLE)
 620      Message: Unknown system variable '%s'
 621
 622      Error: 1194 SQLSTATE: HY000 (ER_CRASHED_ON_USAGE)
 623      Message: Table '%s' is marked as crashed and should be repaired
 624
 625      Error: 1195 SQLSTATE: HY000 (ER_CRASHED_ON_REPAIR)
 626      Message: Table '%s' is marked as crashed and last (automatic?) 
 627      repair failed
 628
 629      Error: 1196 SQLSTATE: HY000 (ER_WARNING_NOT_COMPLETE_ROLLBACK)
 630      Message: Some non-transactional changed tables couldn't be rolled back
 631
 632      Error: 1197 SQLSTATE: HY000 (ER_TRANS_CACHE_FULL)
 633      Message: Multi-statement transaction required more than 
 634      'max_binlog_cache_size' bytes of storage; increase this 
 635      mysqld variable and try again
 636
 637      Error: 1198 SQLSTATE: HY000 (ER_SLAVE_MUST_STOP)
 638      Message: This operation cannot be performed with a running slave; 
 639      run STOP SLAVE first
 640
 641      Error: 1199 SQLSTATE: HY000 (ER_SLAVE_NOT_RUNNING)
 642      Message: This operation requires a running slave; configure slave 
 643      and do START SLAVE
 644
 645      Error: 1200 SQLSTATE: HY000 (ER_BAD_SLAVE)
 646      Message: The server is not configured as slave; fix in config 
 647      file or with CHANGE MASTER TO
 648
 649      Error: 1201 SQLSTATE: HY000 (ER_MASTER_INFO)
 650      Message: Could not initialize master info structure; more error 
 651      messages can be found in the MySQL error log
 652
 653      Error: 1202 SQLSTATE: HY000 (ER_SLAVE_THREAD)
 654      Message: Could not create slave thread; check system resources
 655
 656      Error: 1203 SQLSTATE: 42000 (ER_TOO_MANY_USER_CONNECTIONS)
 657      Message: User %s already has more than 'max_user_connections' 
 658      active connections
 659
 660      Error: 1204 SQLSTATE: HY000 (ER_SET_CONSTANTS_ONLY)
 661      Message: You may only use constant expressions with SET
 662
 663      Error: 1205 SQLSTATE: HY000 (ER_LOCK_WAIT_TIMEOUT)
 664      Message: Lock wait timeout exceeded; try restarting transaction
 665
 666      Error: 1206 SQLSTATE: HY000 (ER_LOCK_TABLE_FULL)
 667      Message: The total number of locks exceeds the lock table size
 668
 669      Error: 1207 SQLSTATE: 25000 (ER_READ_ONLY_TRANSACTION)
 670      Message: Update locks cannot be acquired during a READ UNCOMMITTED
 671      transaction
 672
 673      Error: 1208 SQLSTATE: HY000 (ER_DROP_DB_WITH_READ_LOCK)
 674      Message: DROP DATABASE not allowed while thread is holding global 
 675      read lock
 676
 677      Error: 1209 SQLSTATE: HY000 (ER_CREATE_DB_WITH_READ_LOCK)
 678      Message: CREATE DATABASE not allowed while thread is holding global 
 679      read lock
 680
 681      Error: 1210 SQLSTATE: HY000 (ER_WRONG_ARGUMENTS)
 682      Message: Incorrect arguments to %s
 683
 684      Error: 1211 SQLSTATE: 42000 (ER_NO_PERMISSION_TO_CREATE_USER)
 685      Message: '%s'@'%s' is not allowed to create new users
 686
 687      Error: 1212 SQLSTATE: HY000 (ER_UNION_TABLES_IN_DIFFERENT_DIR)
 688      Message: Incorrect table definition; all MERGE tables must be in 
 689      the same database
 690
 691      Error: 1213 SQLSTATE: 40001 (ER_LOCK_DEADLOCK)
 692      Message: Deadlock found when trying to get lock; try restarting
 693      transaction
 694
 695      Error: 1214 SQLSTATE: HY000 (ER_TABLE_CANT_HANDLE_FT)
 696      Message: The used table type doesn't support FULLTEXT indexes
 697
 698      Error: 1215 SQLSTATE: HY000 (ER_CANNOT_ADD_FOREIGN)
 699      Message: Cannot add foreign key constraint
 700
 701      Error: 1216 SQLSTATE: 23000 (ER_NO_REFERENCED_ROW)
 702      Message: Cannot add or update a child row: a foreign key 
 703      constraint fails
 704
 705      Error: 1217 SQLSTATE: 23000 (ER_ROW_IS_REFERENCED)
 706      Message: Cannot delete or update a parent row: a foreign key 
 707      constraint fails
 708
 709      Error: 1218 SQLSTATE: 08S01 (ER_CONNECT_TO_MASTER)
 710      Message: Error connecting to master: %s
 711
 712      Error: 1219 SQLSTATE: HY000 (ER_QUERY_ON_MASTER)
 713      Message: Error running query on master: %s
 714
 715      Error: 1220 SQLSTATE: HY000 (ER_ERROR_WHEN_EXECUTING_COMMAND)
 716      Message: Error when executing command %s: %s
 717
 718      Error: 1221 SQLSTATE: HY000 (ER_WRONG_USAGE)
 719      Message: Incorrect usage of %s and %s
 720
 721      Error: 1222 SQLSTATE: 21000 (ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT)
 722      Message: The used SELECT statements have a different number of columns
 723
 724      Error: 1223 SQLSTATE: HY000 (ER_CANT_UPDATE_WITH_READLOCK)
 725      Message: Can't execute the query because you have a conflicting 
 726      read lock
 727
 728      Error: 1224 SQLSTATE: HY000 (ER_MIXING_NOT_ALLOWED)
 729      Message: Mixing of transactional and non-transactional tables 
 730      is disabled
 731
 732      Error: 1225 SQLSTATE: HY000 (ER_DUP_ARGUMENT)
 733      Message: Option '%s' used twice in statement
 734
 735      Error: 1226 SQLSTATE: 42000 (ER_USER_LIMIT_REACHED)
 736      Message: User '%s' has exceeded the '%s' resource (current value: %ld)
 737
 738      Error: 1227 SQLSTATE: 42000 (ER_SPECIFIC_ACCESS_DENIED_ERROR)
 739      Message: Access denied; you need the %s privilege for this operation
 740
 741      Error: 1228 SQLSTATE: HY000 (ER_LOCAL_VARIABLE)
 742      Message: Variable '%s' is a SESSION variable and can't be used 
 743      with SET GLOBAL
 744
 745      Error: 1229 SQLSTATE: HY000 (ER_GLOBAL_VARIABLE)
 746      Message: Variable '%s' is a GLOBAL variable and should be set 
 747      with SET GLOBAL
 748
 749      Error: 1230 SQLSTATE: 42000 (ER_NO_DEFAULT)
 750      Message: Variable '%s' doesn't have a default value
 751
 752      Error: 1231 SQLSTATE: 42000 (ER_WRONG_VALUE_FOR_VAR)
 753      Message: Variable '%s' can't be set to the value of '%s'
 754
 755      Error: 1232 SQLSTATE: 42000 (ER_WRONG_TYPE_FOR_VAR)
 756      Message: Incorrect argument type to variable '%s'
 757
 758      Error: 1233 SQLSTATE: HY000 (ER_VAR_CANT_BE_READ)
 759      Message: Variable '%s' can only be set, not read
 760
 761      Error: 1234 SQLSTATE: 42000 (ER_CANT_USE_OPTION_HERE)
 762      Message: Incorrect usage/placement of '%s'
 763
 764      Error: 1235 SQLSTATE: 42000 (ER_NOT_SUPPORTED_YET)
 765      Message: This version of MySQL doesn't yet support '%s'
 766
 767      Error: 1236 SQLSTATE: HY000 (ER_MASTER_FATAL_ERROR_READING_BINLOG)
 768      Message: Got fatal error %d: '%s' from master when reading data 
 769      from binary log
 770
 771      Error: 1237 SQLSTATE: HY000 (ER_SLAVE_IGNORED_TABLE)
 772      Message: Slave SQL thread ignored the query because of replicate
 773      -*-table rules
 774
 775      Error: 1238 SQLSTATE: HY000 (ER_INCORRECT_GLOBAL_LOCAL_VAR)
 776      Message: Variable '%s' is a %s variable
 777
 778      Error: 1239 SQLSTATE: 42000 (ER_WRONG_FK_DEF)
 779      Message: Incorrect foreign key definition for '%s': %s
 780
 781      Error: 1240 SQLSTATE: HY000 (ER_KEY_REF_DO_NOT_MATCH_TABLE_REF)
 782      Message: Key reference and table reference don't match
 783
 784      Error: 1241 SQLSTATE: 21000 (ER_OPERAND_COLUMNS)
 785      Message: Operand should contain %d column(s)
 786
 787      Error: 1242 SQLSTATE: 21000 (ER_SUBQUERY_NO_1_ROW)
 788      Message: Subquery returns more than 1 row
 789
 790      Error: 1243 SQLSTATE: HY000 (ER_UNKNOWN_STMT_HANDLER)
 791      Message: Unknown prepared statement handler (%.*s) given to %s
 792
 793      Error: 1244 SQLSTATE: HY000 (ER_CORRUPT_HELP_DB)
 794      Message: Help database is corrupt or does not exist
 795
 796      Error: 1245 SQLSTATE: HY000 (ER_CYCLIC_REFERENCE)
 797      Message: Cyclic reference on subqueries
 798
 799      Error: 1246 SQLSTATE: HY000 (ER_AUTO_CONVERT)
 800      Message: Converting column '%s' from %s to %s
 801
 802      Error: 1247 SQLSTATE: 42S22 (ER_ILLEGAL_REFERENCE)
 803      Message: Reference '%s' not supported (%s)
 804
 805      Error: 1248 SQLSTATE: 42000 (ER_DERIVED_MUST_HAVE_ALIAS)
 806      Message: Every derived table must have its own alias
 807
 808      Error: 1249 SQLSTATE: 01000 (ER_SELECT_REDUCED)
 809      Message: Select %u was reduced during optimization
 810
 811      Error: 1250 SQLSTATE: 42000 (ER_TABLENAME_NOT_ALLOWED_HERE)
 812      Message: Table '%s' from one of the SELECTs cannot be used in %s
 813
 814      Error: 1251 SQLSTATE: 08004 (ER_NOT_SUPPORTED_AUTH_MODE)
 815      Message: Client does not support authentication protocol 
 816      requested by server; consider upgrading MySQL client
 817
 818      Error: 1252 SQLSTATE: 42000 (ER_SPATIAL_CANT_HAVE_NULL)
 819      Message: All parts of a SPATIAL index must be NOT NULL
 820
 821      Error: 1253 SQLSTATE: 42000 (ER_COLLATION_CHARSET_MISMATCH)
 822      Message: COLLATION '%s' is not valid for CHARACTER SET '%s'
 823
 824      Error: 1254 SQLSTATE: HY000 (ER_SLAVE_WAS_RUNNING)
 825      Message: Slave is already running
 826
 827      Error: 1255 SQLSTATE: HY000 (ER_SLAVE_WAS_NOT_RUNNING)
 828      Message: Slave already has been stopped
 829
 830      Error: 1256 SQLSTATE: HY000 (ER_TOO_BIG_FOR_UNCOMPRESS)
 831      Message: Uncompressed data size too large; the maximum size 
 832      is %d (probably, length of uncompressed data was corrupted)
 833
 834      Error: 1257 SQLSTATE: HY000 (ER_ZLIB_Z_MEM_ERROR)
 835      Message: ZLIB: Not enough memory
 836
 837      Error: 1258 SQLSTATE: HY000 (ER_ZLIB_Z_BUF_ERROR)
 838      Message: ZLIB: Not enough room in the output buffer (probably, 
 839      length of uncompressed data was corrupted)
 840
 841      Error: 1259 SQLSTATE: HY000 (ER_ZLIB_Z_DATA_ERROR)
 842      Message: ZLIB: Input data corrupted
 843
 844      Error: 1260 SQLSTATE: HY000 (ER_CUT_VALUE_GROUP_CONCAT)
 845      Message: %d line(s) were cut by GROUP_CONCAT()
 846
 847      Error: 1261 SQLSTATE: 01000 (ER_WARN_TOO_FEW_RECORDS)
 848      Message: Row %ld doesn't contain data for all columns
 849
 850      Error: 1262 SQLSTATE: 01000 (ER_WARN_TOO_MANY_RECORDS)
 851      Message: Row %ld was truncated; it contained more data than 
 852      there were input columns
 853
 854      Error: 1263 SQLSTATE: 22004 (ER_WARN_NULL_TO_NOTNULL)
 855      Message: Column was set to data type implicit default; 
 856      NULL supplied for NOT NULL column '%s' at row %ld
 857
 858      Error: 1264 SQLSTATE: 22003 (ER_WARN_DATA_OUT_OF_RANGE)
 859      Message: Out of range value adjusted for column '%s' at row %ld
 860
 861      Error: 1265 SQLSTATE: 01000 (WARN_DATA_TRUNCATED)
 862      Message: Data truncated for column '%s' at row %ld
 863
 864      Error: 1266 SQLSTATE: HY000 (ER_WARN_USING_OTHER_HANDLER)
 865      Message: Using storage engine %s for table '%s'
 866
 867      Error: 1267 SQLSTATE: HY000 (ER_CANT_AGGREGATE_2COLLATIONS)
 868      Message: Illegal mix of collations (%s,%s) and (%s,%s) for operation '%s'
 869
 870      Error: 1268 SQLSTATE: HY000 (ER_DROP_USER)
 871      Message: Cannot drop one or more of the requested users
 872
 873      Error: 1269 SQLSTATE: HY000 (ER_REVOKE_GRANTS)
 874      Message: Can't revoke all privileges for one or more of the 
 875      requested users
 876
 877      Error: 1270 SQLSTATE: HY000 (ER_CANT_AGGREGATE_3COLLATIONS)
 878      Message: Illegal mix of collations (%s,%s), (%s,%s), (%s,%s) 
 879      for operation '%s'
 880
 881      Error: 1271 SQLSTATE: HY000 (ER_CANT_AGGREGATE_NCOLLATIONS)
 882      Message: Illegal mix of collations for operation '%s'
 883
 884      Error: 1272 SQLSTATE: HY000 (ER_VARIABLE_IS_NOT_STRUCT)
 885      Message: Variable '%s' is not a variable component (can't be 
 886      used as XXXX.variable_name)
 887
 888      Error: 1273 SQLSTATE: HY000 (ER_UNKNOWN_COLLATION)
 889      Message: Unknown collation: '%s'
 890
 891      Error: 1274 SQLSTATE: HY000 (ER_SLAVE_IGNORED_SSL_PARAMS)
 892      Message: SSL parameters in CHANGE MASTER are ignored because this 
 893      MySQL slave was compiled without SSL support; they can be used 
 894      later if MySQL slave with SSL is started
 895
 896      Error: 1275 SQLSTATE: HY000 (ER_SERVER_IS_IN_SECURE_AUTH_MODE)
 897      Message: Server is running in --secure-auth mode, but '%s'@'%s' 
 898      has a password in the old format; please change the password to 
 899      the new format
 900
 901      Error: 1276 SQLSTATE: HY000 (ER_WARN_FIELD_RESOLVED)
 902      Message: Field or reference '%s%s%s%s%s' of SELECT #%d was 
 903      resolved in SELECT #%d
 904
 905      Error: 1277 SQLSTATE: HY000 (ER_BAD_SLAVE_UNTIL_COND)
 906      Message: Incorrect parameter or combination of parameters for 
 907      START SLAVE UNTIL
 908
 909      Error: 1278 SQLSTATE: HY000 (ER_MISSING_SKIP_SLAVE)
 910      Message: It is recommended to use --skip-slave-start when doing
 911      step-by-step replication with START SLAVE UNTIL; otherwise, you 
 912      will get problems if you get an unexpected slave's mysqld restart
 913
 914      Error: 1279 SQLSTATE: HY000 (ER_UNTIL_COND_IGNORED)
 915      Message: SQL thread is not to be started so UNTIL options are 
 916      ignored
 917
 918      Error: 1280 SQLSTATE: 42000 (ER_WRONG_NAME_FOR_INDEX)
 919      Message: Incorrect index name '%s'
 920
 921      Error: 1281 SQLSTATE: 42000 (ER_WRONG_NAME_FOR_CATALOG)
 922      Message: Incorrect catalog name '%s'
 923
 924      Error: 1282 SQLSTATE: HY000 (ER_WARN_QC_RESIZE)
 925      Message: Query cache failed to set size %lu; new query cache size 
 926      is %lu
 927
 928      Error: 1283 SQLSTATE: HY000 (ER_BAD_FT_COLUMN)
 929      Message: Column '%s' cannot be part of FULLTEXT index
 930
 931      Error: 1284 SQLSTATE: HY000 (ER_UNKNOWN_KEY_CACHE)
 932      Message: Unknown key cache '%s'
 933
 934      Error: 1285 SQLSTATE: HY000 (ER_WARN_HOSTNAME_WONT_WORK)
 935      Message: MySQL is started in --skip-name-resolve mode; you must 
 936      restart it without this switch for this grant to work
 937
 938      Error: 1286 SQLSTATE: 42000 (ER_UNKNOWN_STORAGE_ENGINE)
 939      Message: Unknown table engine '%s'
 940
 941      Error: 1287 SQLSTATE: HY000 (ER_WARN_DEPRECATED_SYNTAX)
 942      Message: '%s' is deprecated; use '%s' instead
 943
 944      Error: 1288 SQLSTATE: HY000 (ER_NON_UPDATABLE_TABLE)
 945      Message: The target table %s of the %s is not updatable
 946
 947      Error: 1289 SQLSTATE: HY000 (ER_FEATURE_DISABLED)
 948      Message: The '%s' feature is disabled; you need MySQL built 
 949      with '%s' to have it working
 950
 951      Error: 1290 SQLSTATE: HY000 (ER_OPTION_PREVENTS_STATEMENT)
 952      Message: The MySQL server is running with the %s option so it 
 953      cannot execute this statement
 954
 955      Error: 1291 SQLSTATE: HY000 (ER_DUPLICATED_VALUE_IN_TYPE)
 956      Message: Column '%s' has duplicated value '%s' in %s
 957
 958      Error: 1292 SQLSTATE: 22007 (ER_TRUNCATED_WRONG_VALUE)
 959      Message: Truncated incorrect %s value: '%s'
 960
 961      Error: 1293 SQLSTATE: HY000 (ER_TOO_MUCH_AUTO_TIMESTAMP_COLS)
 962      Message: Incorrect table definition; there can be only one 
 963      TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON 
 964      UPDATE clause
 965
 966      Error: 1294 SQLSTATE: HY000 (ER_INVALID_ON_UPDATE)
 967      Message: Invalid ON UPDATE clause for '%s' column
 968
 969      Error: 1295 SQLSTATE: HY000 (ER_UNSUPPORTED_PS)
 970      Message: This command is not supported in the prepared 
 971      statement protocol yet
 972
 973      Error: 1296 SQLSTATE: HY000 (ER_GET_ERRMSG)
 974      Message: Got error %d '%s' from %s
 975
 976      Error: 1297 SQLSTATE: HY000 (ER_GET_TEMPORARY_ERRMSG)
 977      Message: Got temporary error %d '%s' from %s
 978
 979      Error: 1298 SQLSTATE: HY000 (ER_UNKNOWN_TIME_ZONE)
 980      Message: Unknown or incorrect time zone: '%s'
 981
 982      Error: 1299 SQLSTATE: HY000 (ER_WARN_INVALID_TIMESTAMP)
 983      Message: Invalid TIMESTAMP value in column '%s' at row %ld
 984
 985      Error: 1300 SQLSTATE: HY000 (ER_INVALID_CHARACTER_STRING)
 986      Message: Invalid %s character string: '%s'
 987
 988      Error: 1301 SQLSTATE: HY000 (ER_WARN_ALLOWED_PACKET_OVERFLOWED)
 989      Message: Result of %s() was larger than max_allowed_packet 
 990      (%ld) - truncated
 991
 992      Error: 1302 SQLSTATE: HY000 (ER_CONFLICTING_DECLARATIONS)
 993      Message: Conflicting declarations: '%s%s' and '%s%s'
 994
 995      Error: 1303 SQLSTATE: 2F003 (ER_SP_NO_RECURSIVE_CREATE)
 996      Message: Can't create a %s from within another stored routine
 997
 998      Error: 1304 SQLSTATE: 42000 (ER_SP_ALREADY_EXISTS)
 999      Message: %s %s already exists
1000
1001      Error: 1305 SQLSTATE: 42000 (ER_SP_DOES_NOT_EXIST)
1002      Message: %s %s does not exist
1003
1004      Error: 1306 SQLSTATE: HY000 (ER_SP_DROP_FAILED)
1005      Message: Failed to DROP %s %s
1006
1007      Error: 1307 SQLSTATE: HY000 (ER_SP_STORE_FAILED)
1008      Message: Failed to CREATE %s %s
1009
1010      Error: 1308 SQLSTATE: 42000 (ER_SP_LILABEL_MISMATCH)
1011      Message: %s with no matching label: %s
1012
1013      Error: 1309 SQLSTATE: 42000 (ER_SP_LABEL_REDEFINE)
1014      Message: Redefining label %s
1015
1016      Error: 1310 SQLSTATE: 42000 (ER_SP_LABEL_MISMATCH)
1017      Message: End-label %s without match
1018
1019      Error: 1311 SQLSTATE: 01000 (ER_SP_UNINIT_VAR)
1020      Message: Referring to uninitialized variable %s
1021
1022      Error: 1312 SQLSTATE: 0A000 (ER_SP_BADSELECT)
1023      Message: PROCEDURE %s can't return a result set in the given context
1024
1025      Error: 1313 SQLSTATE: 42000 (ER_SP_BADRETURN)
1026      Message: RETURN is only allowed in a FUNCTION
1027
1028      Error: 1314 SQLSTATE: 0A000 (ER_SP_BADSTATEMENT)
1029      Message: %s is not allowed in stored procedures
1030
1031      Error: 1315 SQLSTATE: 42000 (ER_UPDATE_LOG_DEPRECATED_IGNORED)
1032      Message: The update log is deprecated and replaced by the binary 
1033      log; SET SQL_LOG_UPDATE has been ignored
1034
1035      Error: 1316 SQLSTATE: 42000 (ER_UPDATE_LOG_DEPRECATED_TRANSLATED)
1036      Message: The update log is deprecated and replaced by the binary 
1037      log; SET SQL_LOG_UPDATE has been translated to SET SQL_LOG_BIN
1038
1039      Error: 1317 SQLSTATE: 70100 (ER_QUERY_INTERRUPTED)
1040      Message: Query execution was interrupted
1041
1042      Error: 1318 SQLSTATE: 42000 (ER_SP_WRONG_NO_OF_ARGS)
1043      Message: Incorrect number of arguments for %s %s; expected %u, got %u
1044
1045      Error: 1319 SQLSTATE: 42000 (ER_SP_COND_MISMATCH)
1046      Message: Undefined CONDITION: %s
1047
1048      Error: 1320 SQLSTATE: 42000 (ER_SP_NORETURN)
1049      Message: No RETURN found in FUNCTION %s
1050
1051      Error: 1321 SQLSTATE: 2F005 (ER_SP_NORETURNEND)
1052      Message: FUNCTION %s ended without RETURN
1053
1054      Error: 1322 SQLSTATE: 42000 (ER_SP_BAD_CURSOR_QUERY)
1055      Message: Cursor statement must be a SELECT
1056
1057      Error: 1323 SQLSTATE: 42000 (ER_SP_BAD_CURSOR_SELECT)
1058      Message: Cursor SELECT must not have INTO
1059
1060      Error: 1324 SQLSTATE: 42000 (ER_SP_CURSOR_MISMATCH)
1061      Message: Undefined CURSOR: %s
1062
1063      Error: 1325 SQLSTATE: 24000 (ER_SP_CURSOR_ALREADY_OPEN)
1064      Message: Cursor is already open
1065
1066      Error: 1326 SQLSTATE: 24000 (ER_SP_CURSOR_NOT_OPEN)
1067      Message: Cursor is not open
1068
1069      Error: 1327 SQLSTATE: 42000 (ER_SP_UNDECLARED_VAR)
1070      Message: Undeclared variable: %s
1071
1072      Error: 1328 SQLSTATE: HY000 (ER_SP_WRONG_NO_OF_FETCH_ARGS)
1073      Message: Incorrect number of FETCH variables
1074
1075      Error: 1329 SQLSTATE: 02000 (ER_SP_FETCH_NO_DATA)
1076      Message: No data - zero rows fetched, selected, or processed
1077
1078      Error: 1330 SQLSTATE: 42000 (ER_SP_DUP_PARAM)
1079      Message: Duplicate parameter: %s
1080
1081      Error: 1331 SQLSTATE: 42000 (ER_SP_DUP_VAR)
1082      Message: Duplicate variable: %s
1083
1084      Error: 1332 SQLSTATE: 42000 (ER_SP_DUP_COND)
1085      Message: Duplicate condition: %s
1086
1087      Error: 1333 SQLSTATE: 42000 (ER_SP_DUP_CURS)
1088      Message: Duplicate cursor: %s
1089
1090      Error: 1334 SQLSTATE: HY000 (ER_SP_CANT_ALTER)
1091      Message: Failed to ALTER %s %s
1092
1093      Error: 1335 SQLSTATE: 0A000 (ER_SP_SUBSELECT_NYI)
1094      Message: Subselect value not supported
1095
1096      Error: 1336 SQLSTATE: 0A000 (ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG)
1097      Message: %s is not allowed in stored function or trigger
1098
1099      Error: 1337 SQLSTATE: 42000 (ER_SP_VARCOND_AFTER_CURSHNDLR)
1100      Message: Variable or condition declaration after cursor or 
1101      handler declaration
1102
1103      Error: 1338 SQLSTATE: 42000 (ER_SP_CURSOR_AFTER_HANDLER)
1104      Message: Cursor declaration after handler declaration
1105
1106      Error: 1339 SQLSTATE: 20000 (ER_SP_CASE_NOT_FOUND)
1107      Message: Case not found for CASE statement
1108
1109      Error: 1340 SQLSTATE: HY000 (ER_FPARSER_TOO_BIG_FILE)
1110      Message: Configuration file '%s' is too big
1111
1112      Error: 1341 SQLSTATE: HY000 (ER_FPARSER_BAD_HEADER)
1113      Message: Malformed file type header in file '%s'
1114
1115      Error: 1342 SQLSTATE: HY000 (ER_FPARSER_EOF_IN_COMMENT)
1116      Message: Unexpected end of file while parsing comment '%s'
1117
1118      Error: 1343 SQLSTATE: HY000 (ER_FPARSER_ERROR_IN_PARAMETER)
1119      Message: Error while parsing parameter '%s' (line: '%s')
1120
1121      Error: 1344 SQLSTATE: HY000 (ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER)
1122      Message: Unexpected end of file while skipping unknown parameter '%s'
1123
1124      Error: 1345 SQLSTATE: HY000 (ER_VIEW_NO_EXPLAIN)
1125      Message: EXPLAIN/SHOW can not be issued; lacking privileges for
1126      underlying table
1127
1128      Error: 1346 SQLSTATE: HY000 (ER_FRM_UNKNOWN_TYPE)
1129      Message: File '%s' has unknown type '%s' in its header
1130
1131      Error: 1347 SQLSTATE: HY000 (ER_WRONG_OBJECT)
1132      Message: '%s.%s' is not %s
1133
1134      Error: 1348 SQLSTATE: HY000 (ER_NONUPDATEABLE_COLUMN)
1135      Message: Column '%s' is not updatable
1136
1137      Error: 1349 SQLSTATE: HY000 (ER_VIEW_SELECT_DERIVED)
1138      Message: View's SELECT contains a subquery in the FROM clause
1139
1140      Error: 1350 SQLSTATE: HY000 (ER_VIEW_SELECT_CLAUSE)
1141      Message: View's SELECT contains a '%s' clause
1142
1143      Error: 1351 SQLSTATE: HY000 (ER_VIEW_SELECT_VARIABLE)
1144      Message: View's SELECT contains a variable or parameter
1145
1146      Error: 1352 SQLSTATE: HY000 (ER_VIEW_SELECT_TMPTABLE)
1147      Message: View's SELECT refers to a temporary table '%s'
1148
1149      Error: 1353 SQLSTATE: HY000 (ER_VIEW_WRONG_LIST)
1150      Message: View's SELECT and view's field list have different 
1151      column counts
1152
1153      Error: 1354 SQLSTATE: HY000 (ER_WARN_VIEW_MERGE)
1154      Message: View merge algorithm can't be used here for now 
1155     (assumed undefined algorithm)
1156
1157      Error: 1355 SQLSTATE: HY000 (ER_WARN_VIEW_WITHOUT_KEY)
1158      Message: View being updated does not have complete key of 
1159      underlying table in it
1160
1161      Error: 1356 SQLSTATE: HY000 (ER_VIEW_INVALID)
1162      Message: View '%s.%s' references invalid table(s) or column(s) 
1163      or function(s) or definer/invoker of view lack rights to use them
1164
1165      Error: 1357 SQLSTATE: HY000 (ER_SP_NO_DROP_SP)
1166      Message: Can't drop or alter a %s from within another stored routine
1167
1168      Error: 1358 SQLSTATE: HY000 (ER_SP_GOTO_IN_HNDLR)
1169      Message: GOTO is not allowed in a stored procedure handler
1170
1171      Error: 1359 SQLSTATE: HY000 (ER_TRG_ALREADY_EXISTS)
1172      Message: Trigger already exists
1173
1174      Error: 1360 SQLSTATE: HY000 (ER_TRG_DOES_NOT_EXIST)
1175      Message: Trigger does not exist
1176
1177      Error: 1361 SQLSTATE: HY000 (ER_TRG_ON_VIEW_OR_TEMP_TABLE)
1178      Message: Trigger's '%s' is view or temporary table
1179
1180      Error: 1362 SQLSTATE: HY000 (ER_TRG_CANT_CHANGE_ROW)
1181      Message: Updating of %s row is not allowed in %strigger
1182
1183      Error: 1363 SQLSTATE: HY000 (ER_TRG_NO_SUCH_ROW_IN_TRG)
1184      Message: There is no %s row in %s trigger
1185
1186      Error: 1364 SQLSTATE: HY000 (ER_NO_DEFAULT_FOR_FIELD)
1187      Message: Field '%s' doesn't have a default value
1188
1189      Error: 1365 SQLSTATE: 22012 (ER_DIVISION_BY_ZERO)
1190      Message: Division by 0
1191
1192      Error: 1366 SQLSTATE: HY000 (ER_TRUNCATED_WRONG_VALUE_FOR_FIELD)
1193      Message: Incorrect %s value: '%s' for column '%s' at row %ld
1194
1195      Error: 1367 SQLSTATE: 22007 (ER_ILLEGAL_VALUE_FOR_TYPE)
1196      Message: Illegal %s '%s' value found during parsing
1197
1198      Error: 1368 SQLSTATE: HY000 (ER_VIEW_NONUPD_CHECK)
1199      Message: CHECK OPTION on non-updatable view '%s.%s'
1200
1201      Error: 1369 SQLSTATE: HY000 (ER_VIEW_CHECK_FAILED)
1202      Message: CHECK OPTION failed '%s.%s'
1203
1204      Error: 1370 SQLSTATE: 42000 (ER_PROCACCESS_DENIED_ERROR)
1205      Message: %s command denied to user '%s'@'%s' for routine '%s'
1206
1207      Error: 1371 SQLSTATE: HY000 (ER_RELAY_LOG_FAIL)
1208      Message: Failed purging old relay logs: %s
1209
1210      Error: 1372 SQLSTATE: HY000 (ER_PASSWD_LENGTH)
1211      Message: Password hash should be a %d-digit hexadecimal number
1212
1213      Error: 1373 SQLSTATE: HY000 (ER_UNKNOWN_TARGET_BINLOG)
1214      Message: Target log not found in binlog index
1215
1216      Error: 1374 SQLSTATE: HY000 (ER_IO_ERR_LOG_INDEX_READ)
1217      Message: I/O error reading log index file
1218
1219      Error: 1375 SQLSTATE: HY000 (ER_BINLOG_PURGE_PROHIBITED)
1220      Message: Server configuration does not permit binlog purge
1221
1222      Error: 1376 SQLSTATE: HY000 (ER_FSEEK_FAIL)
1223      Message: Failed on fseek()
1224
1225      Error: 1377 SQLSTATE: HY000 (ER_BINLOG_PURGE_FATAL_ERR)
1226      Message: Fatal error during log purge
1227
1228      Error: 1378 SQLSTATE: HY000 (ER_LOG_IN_USE)
1229      Message: A purgeable log is in use, will not purge
1230
1231      Error: 1379 SQLSTATE: HY000 (ER_LOG_PURGE_UNKNOWN_ERR)
1232      Message: Unknown error during log purge
1233
1234      Error: 1380 SQLSTATE: HY000 (ER_RELAY_LOG_INIT)
1235      Message: Failed initializing relay log position: %s
1236
1237      Error: 1381 SQLSTATE: HY000 (ER_NO_BINARY_LOGGING)
1238      Message: You are not using binary logging
1239
1240      Error: 1382 SQLSTATE: HY000 (ER_RESERVED_SYNTAX)
1241      Message: The '%s' syntax is reserved for purposes internal 
1242      to the MySQL server
1243
1244      Error: 1383 SQLSTATE: HY000 (ER_WSAS_FAILED)
1245      Message: WSAStartup Failed
1246
1247      Error: 1384 SQLSTATE: HY000 (ER_DIFF_GROUPS_PROC)
1248      Message: Can't handle procedures with different groups yet
1249
1250      Error: 1385 SQLSTATE: HY000 (ER_NO_GROUP_FOR_PROC)
1251      Message: Select must have a group with this procedure
1252
1253      Error: 1386 SQLSTATE: HY000 (ER_ORDER_WITH_PROC)
1254      Message: Can't use ORDER clause with this procedure
1255
1256      Error: 1387 SQLSTATE: HY000 (ER_LOGGING_PROHIBIT_CHANGING_OF)
1257      Message: Binary logging and replication forbid changing the 
1258      global server %s
1259
1260      Error: 1388 SQLSTATE: HY000 (ER_NO_FILE_MAPPING)
1261      Message: Can't map file: %s, errno: %d
1262
1263      Error: 1389 SQLSTATE: HY000 (ER_WRONG_MAGIC)
1264      Message: Wrong magic in %s
1265
1266      Error: 1390 SQLSTATE: HY000 (ER_PS_MANY_PARAM)
1267      Message: Prepared statement contains too many placeholders
1268
1269      Error: 1391 SQLSTATE: HY000 (ER_KEY_PART_0)
1270      Message: Key part '%s' length cannot be 0
1271
1272      Error: 1392 SQLSTATE: HY000 (ER_VIEW_CHECKSUM)
1273      Message: View text checksum failed
1274
1275      Error: 1393 SQLSTATE: HY000 (ER_VIEW_MULTIUPDATE)
1276      Message: Can not modify more than one base table through a 
1277      join view '%s.%s'
1278
1279      Error: 1394 SQLSTATE: HY000 (ER_VIEW_NO_INSERT_FIELD_LIST)
1280      Message: Can not insert into join view '%s.%s' without fields list
1281
1282      Error: 1395 SQLSTATE: HY000 (ER_VIEW_DELETE_MERGE_VIEW)
1283      Message: Can not delete from join view '%s.%s'
1284
1285      Error: 1396 SQLSTATE: HY000 (ER_CANNOT_USER)
1286      Message: Operation %s failed for %s
1287
1288      Error: 1397 SQLSTATE: XAE04 (ER_XAER_NOTA)
1289      Message: XAER_NOTA: Unknown XID
1290
1291      Error: 1398 SQLSTATE: XAE05 (ER_XAER_INVAL)
1292      Message: XAER_INVAL: Invalid arguments (or unsupported command)
1293
1294      Error: 1399 SQLSTATE: XAE07 (ER_XAER_RMFAIL)
1295      Message: XAER_RMFAIL: The command cannot be executed when global
1296      transaction is in the %s state
1297
1298      Error: 1400 SQLSTATE: XAE09 (ER_XAER_OUTSIDE)
1299      Message: XAER_OUTSIDE: Some work is done outside global transaction
1300
1301      Error: 1401 SQLSTATE: XAE03 (ER_XAER_RMERR)
1302      Message: XAER_RMERR: Fatal error occurred in the transaction branch 
1303      - check your data for consistency
1304
1305      Error: 1402 SQLSTATE: XA100 (ER_XA_RBROLLBACK)
1306      Message: XA_RBROLLBACK: Transaction branch was rolled back
1307
1308      Error: 1403 SQLSTATE: 42000 (ER_NONEXISTING_PROC_GRANT)
1309      Message: There is no such grant defined for user '%s' on host 
1310      '%s' on routine '%s'
1311
1312      Error: 1404 SQLSTATE: HY000 (ER_PROC_AUTO_GRANT_FAIL)
1313      Message: Failed to grant EXECUTE and ALTER ROUTINE privileges
1314
1315      Error: 1405 SQLSTATE: HY000 (ER_PROC_AUTO_REVOKE_FAIL)
1316      Message: Failed to revoke all privileges to dropped routine
1317
1318      Error: 1406 SQLSTATE: 22001 (ER_DATA_TOO_LONG)
1319      Message: Data too long for column '%s' at row %ld
1320
1321      Error: 1407 SQLSTATE: 42000 (ER_SP_BAD_SQLSTATE)
1322      Message: Bad SQLSTATE: '%s'
1323
1324      Error: 1408 SQLSTATE: HY000 (ER_STARTUP)
1325      Message: %s: ready for connections. Version: '%s' socket: '%s' 
1326      port: %d %s
1327
1328      Error: 1409 SQLSTATE: HY000 (ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR)
1329      Message: Can't load value from file with fixed size rows to variable
1330
1331      Error: 1410 SQLSTATE: 42000 (ER_CANT_CREATE_USER_WITH_GRANT)
1332      Message: You are not allowed to create a user with GRANT
1333
1334      Error: 1411 SQLSTATE: HY000 (ER_WRONG_VALUE_FOR_TYPE)
1335      Message: Incorrect %s value: '%s' for function %s
1336
1337      Error: 1412 SQLSTATE: HY000 (ER_TABLE_DEF_CHANGED)
1338      Message: Table definition has changed, please retry transaction
1339
1340      Error: 1413 SQLSTATE: 42000 (ER_SP_DUP_HANDLER)
1341      Message: Duplicate handler declared in the same block
1342
1343      Error: 1414 SQLSTATE: 42000 (ER_SP_NOT_VAR_ARG)
1344      Message: OUT or INOUT argument %d for routine %s is not a variable 
1345      or NEW pseudo-variable in BEFORE trigger
1346
1347      Error: 1415 SQLSTATE: 0A000 (ER_SP_NO_RETSET)
1348      Message: Not allowed to return a result set from a %s
1349
1350      Error: 1416 SQLSTATE: 22003 (ER_CANT_CREATE_GEOMETRY_OBJECT)
1351      Message: Cannot get geometry object from data you send to the 
1352      GEOMETRY field
1353
1354      Error: 1417 SQLSTATE: HY000 (ER_FAILED_ROUTINE_BREAK_BINLOG)
1355      Message: A routine failed and has neither NO SQL nor READS SQL DATA 
1356      in its declaration and binary logging is enabled; if non-transactional
1357      tables were updated, the binary log will miss their changes
1358
1359      Error: 1418 SQLSTATE: HY000 (ER_BINLOG_UNSAFE_ROUTINE)
1360      Message: This function has none of DETERMINISTIC, NO SQL, or READS SQL
1361      DATA in its declaration and binary logging is enabled (you *might* want
1362      to use the less safe log_bin_trust_function_creators variable)
1363
1364      Error: 1419 SQLSTATE: HY000 (ER_BINLOG_CREATE_ROUTINE_NEED_SUPER)
1365      Message: You do not have the SUPER privilege and binary logging is
1366      enabled (you *might* want to use the less safe
1367      log_bin_trust_function_creators variable)
1368
1369      Error: 1420 SQLSTATE: HY000 (ER_EXEC_STMT_WITH_OPEN_CURSOR)
1370      Message: You can't execute a prepared statement which has an open 
1371      cursor associated with it. Reset the statement to re-execute it.
1372
1373      Error: 1421 SQLSTATE: HY000 (ER_STMT_HAS_NO_OPEN_CURSOR)
1374      Message: The statement (%lu) has no open cursor.
1375
1376      Error: 1422 SQLSTATE: HY000 (ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG)
1377      Message: Explicit or implicit commit is not allowed in stored function 
1378      or trigger.
1379
1380      Error: 1423 SQLSTATE: HY000 (ER_NO_DEFAULT_FOR_VIEW_FIELD)
1381      Message: Field of view '%s.%s' underlying table doesn't have a default
1382      value
1383
1384      Error: 1424 SQLSTATE: HY000 (ER_SP_NO_RECURSION)
1385      Message: Recursive stored functions and triggers are not allowed.
1386
1387      Error: 1425 SQLSTATE: 42000 (ER_TOO_BIG_SCALE)
1388      Message: Too big scale %lu specified for column '%s'. Maximum is %d.
1389
1390      Error: 1426 SQLSTATE: 42000 (ER_TOO_BIG_PRECISION)
1391      Message: Too big precision %lu specified for column '%s'. Maximum 
1392      is %lu.
1393
1394      Error: 1427 SQLSTATE: 42000 (ER_M_BIGGER_THAN_D)
1395      Message: For float(M,D), double(M,D) or decimal(M,D), 
1396      M must be >= D (column '%s').
1397
1398      Error: 1428 SQLSTATE: HY000 (ER_WRONG_LOCK_OF_SYSTEM_TABLE)
1399      Message: You can't combine write-locking of system '%s.%s' 
1400      table with other tables
1401
1402      Error: 1429 SQLSTATE: HY000 (ER_CONNECT_TO_FOREIGN_DATA_SOURCE)
1403      Message: Unable to connect to foreign data source: %s
1404
1405      Error: 1430 SQLSTATE: HY000 (ER_QUERY_ON_FOREIGN_DATA_SOURCE)
1406      Message: There was a problem processing the query on the foreign 
1407      data source. Data source error: %s
1408
1409      Error: 1431 SQLSTATE: HY000 (ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST)
1410      Message: The foreign data source you are trying to reference does 
1411      not exist. Data source error: %s
1412
1413      Error: 1432 SQLSTATE: HY000 (ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE)
1414      Message: Can't create federated table. The data source connection string
1415      '%s' is not in the correct format
1416
1417      Error: 1433 SQLSTATE: HY000 (ER_FOREIGN_DATA_STRING_INVALID)
1418      Message: The data source connection string '%s' is not in the 
1419      correct format
1420
1421      Error: 1434 SQLSTATE: HY000 (ER_CANT_CREATE_FEDERATED_TABLE)
1422      Message: Can't create federated table. Foreign data src error: %s
1423
1424      Error: 1435 SQLSTATE: HY000 (ER_TRG_IN_WRONG_SCHEMA)
1425      Message: Trigger in wrong schema
1426
1427      Error: 1436 SQLSTATE: HY000 (ER_STACK_OVERRUN_NEED_MORE)
1428      Message: Thread stack overrun: %ld bytes used of a %ld byte stack, 
1429      and %ld bytes needed. Use 'mysqld -O thread_stack=#' to specify a 
1430      bigger stack.
1431
1432      Error: 1437 SQLSTATE: 42000 (ER_TOO_LONG_BODY)
1433      Message: Routine body for '%s' is too long
1434
1435      Error: 1438 SQLSTATE: HY000 (ER_WARN_CANT_DROP_DEFAULT_KEYCACHE)
1436      Message: Cannot drop default keycache
1437
1438      Error: 1439 SQLSTATE: 42000 (ER_TOO_BIG_DISPLAYWIDTH)
1439      Message: Display width out of range for column '%s' (max = %lu)
1440
1441      Error: 1440 SQLSTATE: XAE08 (ER_XAER_DUPID)
1442      Message: XAER_DUPID: The XID already exists
1443
1444      Error: 1441 SQLSTATE: 22008 (ER_DATETIME_FUNCTION_OVERFLOW)
1445      Message: Datetime function: %s field overflow
1446
1447      Error: 1442 SQLSTATE: HY000 (ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG)
1448      Message: Can't update table '%s' in stored function/trigger because 
1449      it is already used by statement which invoked this stored
1450      function/trigger.
1451
1452      Error: 1443 SQLSTATE: HY000 (ER_VIEW_PREVENT_UPDATE)
1453      Message: The definition of table '%s' prevents operation %s on 
1454      table '%s'.
1455
1456      Error: 1444 SQLSTATE: HY000 (ER_PS_NO_RECURSION)
1457      Message: The prepared statement contains a stored routine call that
1458      refers to that same statement. It's not allowed to execute a prepared
1459      statement in such a recursive manner
1460
1461      Error: 1445 SQLSTATE: HY000 (ER_SP_CANT_SET_AUTOCOMMIT)
1462      Message: Not allowed to set autocommit from a stored function or 
1463      trigger
1464
1465      Error: 1446 SQLSTATE: HY000 (ER_MALFORMED_DEFINER)
1466      Message: Definer is not fully qualified
1467
1468      Error: 1447 SQLSTATE: HY000 (ER_VIEW_FRM_NO_USER)
1469      Message: View '%s'.'%s' has no definer information (old table format).
1470      Current user is used as definer. Please recreate the view!
1471
1472      Error: 1448 SQLSTATE: HY000 (ER_VIEW_OTHER_USER)
1473      Message: You need the SUPER privilege for creation view with '%s'@'%s'
1474      definer
1475
1476      Error: 1449 SQLSTATE: HY000 (ER_NO_SUCH_USER)
1477      Message: There is no '%s'@'%s' registered
1478
1479      Error: 1450 SQLSTATE: HY000 (ER_FORBID_SCHEMA_CHANGE)
1480      Message: Changing schema from '%s' to '%s' is not allowed.
1481
1482      Error: 1451 SQLSTATE: 23000 (ER_ROW_IS_REFERENCED_2)
1483      Message: Cannot delete or update a parent row: a foreign key constraint
1484      fails (%s)
1485
1486      Error: 1452 SQLSTATE: 23000 (ER_NO_REFERENCED_ROW_2)
1487      Message: Cannot add or update a child row: a foreign key constraint 
1488      fails (%s)
1489
1490      Error: 1453 SQLSTATE: 42000 (ER_SP_BAD_VAR_SHADOW)
1491      Message: Variable '%s' must be quoted with `...`, or renamed
1492
1493      Error: 1454 SQLSTATE: HY000 (ER_TRG_NO_DEFINER)
1494      Message: No definer attribute for trigger '%s'.'%s'. The trigger will 
1495      be activated under the authorization of the invoker, which may have
1496      insufficient privileges. Please recreate the trigger.
1497
1498      Error: 1455 SQLSTATE: HY000 (ER_OLD_FILE_FORMAT)
1499      Message: '%s' has an old format, you should re-create the '%s' 
1500      object(s)
1501
1502      Error: 1456 SQLSTATE: HY000 (ER_SP_RECURSION_LIMIT)
1503      Message: Recursive limit %d (as set by the max_sp_recursion_depth
1504      variable) was exceeded for routine %s
1505
1506      Error: 1457 SQLSTATE: HY000 (ER_SP_PROC_TABLE_CORRUPT)
1507      Message: Failed to load routine %s. The table mysql.proc is missing,
1508      corrupt, or contains bad data (internal code %d)
1509
1510      Error: 1458 SQLSTATE: 42000 (ER_SP_WRONG_NAME)
1511      Message: Incorrect routine name '%s'
1512
1513      Error: 1459 SQLSTATE: HY000 (ER_TABLE_NEEDS_UPGRADE)
1514      Message: Table upgrade required. Please do "REPAIR TABLE `%s`" 
1515      to fix it!
1516
1517      Error: 1460 SQLSTATE: 42000 (ER_SP_NO_AGGREGATE)
1518      Message: AGGREGATE is not supported for stored functions
1519
1520      Error: 1461 SQLSTATE: 42000 (ER_MAX_PREPARED_STMT_COUNT_REACHED)
1521      Message: Can't create more than max_prepared_stmt_count statements
1522      (current value: %lu)
1523
1524      Error: 1462 SQLSTATE: HY000 (ER_VIEW_RECURSIVE)
1525      Message: `%s`.`%s` contains view recursion
1526
1527      Error: 1463 SQLSTATE: 42000 (ER_NON_GROUPING_FIELD_USED)
1528      Message: non-grouping field '%s' is used in %s clause
1529
1530      Error: 1464 SQLSTATE: HY000 (ER_TABLE_CANT_HANDLE_SPKEYS)
1531      Message: The used table type doesn't support SPATIAL indexes
1532
1533      Error: 1465 SQLSTATE: HY000 (ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA)
1534      Message: Triggers can not be created on system tables
1535
1536      Error: 1466 SQLSTATE: HY000 (ER_REMOVED_SPACES)
1537      Message: Leading spaces are removed from name '%s'
1538
1539      Error: 1467 SQLSTATE: HY000 (ER_AUTOINC_READ_FAILED)
1540      Message: Failed to read auto-increment value

Condividi su:

Esprimi un voto:

  • Current rating: 0.0/5
  • 1
  • 2
  • 3
  • 4
  • 5

Argomenti chiave:

Ultimi commenti Ultimi commenti

Esegui il Login oppure registrati per scrivere un commento.
Cerca nel sito...
Ultime recipes

Un utilissimo tool di shell che effettua un dettagliato e comodo report su MySQL MySQL Report un tool di shell per tenere tutto sotto controllo

Un utilissimo tool di shell che effettua un dettagliato e comodo report su MySQL


Vai alla recipe

Un utilissimo tool per sniffare il traffico Client/Server TCP/IP di MySQL MySQLSniffer sniffare il traffico TCP di MySQL

Un utilissimo tool per sniffare il traffico Client/Server TCP/IP di MySQL


Vai alla recipe

Verificare l'integrità, riparare gestire chiavi e memoria di tabelle MyISAM attraverso myisamchk riparare file MyISAM

Verificare l'integrità, riparare gestire chiavi e memoria di tabelle MyISAM attraverso il file myisamchk


Vai alla recipe

Un tool per comprimere le tabelle MyISAM fino a oltre il 50% myisampack comprimere file MyISAM

Un tool per comprimere le tabelle MyISAM fino a oltre il 50%


Vai alla recipe

mysqlshow le info di base sui database, tabelle e colonne senza utilizzare alcun mysqlshow visualizzare le informazioni sul database MySQL

mysqlshow le info di base sui database, tabelle e colonne senza utilizzare alcun client


Vai alla recipe

Utilizzando UNION / UNION ALL su campi int unsigned zerofill,
ho notato che MysqlUNION / UNION ALL su campi int unsigned zerofill. di DebUsr
Vai al tip

Utilizzo di funzioni come alias di campo tramite l'impiego di prepared statementReport con alias di campo dinamici di john_revelator
Vai al tip

Può capitare che sia necessario eseguire un dump di database in formato Comma SeparatedEsecuzione dump in formato CSV (tabelle in engine MyIsam esportate in formato CSV) di ghigomatto
Vai al tip

E' possibile eseguire le query SQL contenute in un file di testo. Questo è utileEseguire le query da un file di testo di Sante Caserio
Vai al tip

Se vogliamo fare il backup di tutti i database con mysqldump, e ne abbiamo parecchiFare il backup di tutti i database di Sante Caserio
Vai al tip

Salve,vorrei chiedervi un aiutino per una query che mi infastidisce un pò.
Ho 4 aiuto per una query! di fighterdorico Vai al topic

Salve,vorrei chiedervi un aiutino per una query che mi infastidisce un pò.
Ho 4 aiuto per una query! di fighterdorico Vai al topic

Salve,vorrei chiedervi un aiutino per una query che mi infastidisce un pò.
Ho 4 aiuto per una query! di fighterdorico Vai al topic

Salve a tutti.

Ho una tabella con lettere accentate.
Le lettere vengono visualizzate ordinamento tabelle di ditch Vai al topic

Salve a tutti.

Ho una tabella con lettere accentate.
Le lettere vengono visualizzate ordinamento tabelle di ditch Vai al topic