MySqlErrorCode Enumeration

MySQL Connector/Net

MySqlErrorCode Enumeration
Provides a reference to error codes returned by MySQL.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public enum MySqlErrorCode
Public Enumeration MySqlErrorCode
public enum class MySqlErrorCode
type MySqlErrorCode
Members
  Member nameValueDescription
None0
HashCheck1000
ISAMCheck1001
No1002
Yes1003
CannotCreateFile1004The file couldn't be created.
CannotCreateTable1005The table couldn't be created.
CannotCreateDatabase1006The database couldn't be created.
DatabaseCreateExists1007The database couldn't be created, it already exists.
DatabaseDropExists1008The database couldn't be dropped, it doesn't exist.
DatabaseDropDelete1009The database couldn't be dropped, the file can't be deleted.
DatabaseDropRemoveDir1010The database couldn't be dropped, the directory can't be deleted.
CannotDeleteFile1011The file couldn't be deleted.
CannotFindSystemRecord1012The record couldn't be read from the system table.
CannotGetStatus1013The status couldn't be retrieved.
CannotGetWorkingDirectory1014The working directory couldn't be retrieved.
CannotLock1015The file couldn't be locked.
CannotOpenFile1016The file couldn't be opened.
FileNotFound1017The file couldn't be found.
CannotReadDirectory1018The directory couldn't be read.
CannotSetWorkingDirectory1019The working directory couldn't be entered.
CheckRead1020The record changed since it was last read.
DiskFull1021The disk is full.
DuplicateKey1022 There is already a key with the given values.
ErrorOnClose1023An error occurred when closing the file.
ErrorOnRead1024An error occurred when reading from the file.
ErrorOnRename1025An error occurred when renaming then file.
ErrorOnWrite1026An error occurred when writing to the file.
FileUsed1027The file is in use.
FileSortAborted1028Sorting has been aborted.
FormNotFound1029The view doesn't exist.
GetErrorNumber1030Got the specified error from the table storage engine.
IllegalHA1031The table storage engine doesn't support the specified option.
KeyNotFound1032 The specified key was not found.
NotFormFile1033The file contains incorrect information.
NotKeyFile1034The key file is incorrect for the table, it should be repaired.
OldKeyFile1035The key file is old for the table, it should be repaired.
OpenAsReadOnly1036The table is read-only
OutOfMemory1037The server is out of memory, it should be restarted.
OutOfSortMemory1038The server is out of sort-memory, the sort buffer size should be increased.
UnexepectedEOF1039An unexpected EOF was found when reading from the file.
ConnectionCountError1040Too many connections are open.
OutOfResources1041The server is out of resources, check if MySql or some other process is using all available memory.
UnableToConnectToHost1042 Given when the connection is unable to successfully connect to host.
HandshakeError1043The handshake was invalid.
DatabaseAccessDenied1044Access was denied for the specified user using the specified database.
AccessDenied1045 Normally returned when an incorrect password is given
NoDatabaseSelected1046No database has been selected.
UnknownCommand1047The command is unknown.
ColumnCannotBeNull1048The specified column cannot be NULL.
UnknownDatabase1049The specified database is not known.
TableExists1050The specified table already exists.
BadTable1051The specified table is unknown.
NonUnique1052The specified column is ambiguous.
ServerShutdown1053The server is currently being shutdown.
BadFieldError1054The specified columns is unknown.
WrongFieldWithGroup1055The specified column isn't in GROUP BY.
WrongGroupField1056The specified columns cannot be grouped on.
WrongSumSelected1057There are sum functions and columns in the same statement.
WrongValueCount1058The column count doesn't match the value count.
TooLongIdentifier1059The identifier name is too long.
DuplicateFieldName1060The column name is duplicated.
DuplicateKeyName1061 Duplicate Key Name
DuplicateKeyEntry1062 Duplicate Key Entry
WrongFieldSpecifier1063The column specifier is incorrect.
ParseError1064An error occurred when parsing the statement.
EmptyQuery1065The statement is empty.
NonUniqueTable1066The table alias isn't unique.
InvalidDefault1067The default value is invalid for the specified field.
MultiplePrimaryKey1068The table has multiple primary keys defined.
TooManyKeys1069Too many keys were defined for the table.
TooManyKeysParts1070Too many parts to the keys were defined for the table.
TooLongKey1071The specified key is too long
KeyColumnDoesNotExist1072The specified key column doesn't exist in the table.
BlobUsedAsKey1073The BLOB column was used as a key, this can't be done.
TooBigFieldLength1074The column length is too big for the specified column type.
WrongAutoKey1075There can only be one auto-column, and it must be defined as a PK.
Ready1076The server is ready to accept connections.
NormalShutdown1077
GotSignal1078The server received the specified signal and is aborting.
ShutdownComplete1079The server shutdown is complete.
ForcingClose1080The server is forcing close of the specified thread.
IPSocketError1081An error occurred when creating the IP socket.
NoSuchIndex1082The table has no index like the one used in CREATE INDEX.
WrongFieldTerminators1083The field separator argument is not what is expected, check the manual.
BlobsAndNoTerminated1084The BLOB columns must terminated, fixed row lengths cannot be used.
TextFileNotReadable1085The text file cannot be read.
FileExists1086The specified file already exists.
LoadInfo1087Information returned by the LOAD statement.
AlterInfo1088Information returned by an UPDATE statement.
WrongSubKey1089The prefix key is incorrect.
CannotRemoveAllFields1090All columns cannot be removed from a table, use DROP TABLE instead.
CannotDropFieldOrKey1091Cannot DROP, check that the column or key exists.
InsertInfo1092Information returned by an INSERT statement.
UpdateTableUsed1093The target table cannot be specified for update in FROM clause.
NoSuchThread1094The specified thread ID is unknown.
KillDenied1095The thread cannot be killed, the current user is not the owner.
NoTablesUsed1096No tables used in the statement.
TooBigSet1097Too many string have been used for the specified column and SET.
NoUniqueLogFile1098A unique filename couldn't be generated.
TableNotLockedForWrite1099The specified table was locked with a READ lock, and can't be updated.
TableNotLocked1100The specified table was not locked with LOCK TABLES.
BlobCannotHaveDefault1101BLOB and Text columns cannot have a default value.
WrongDatabaseName1102The specified database name is incorrect.
WrongTableName1103The specified table name is incorrect.
TooBigSelect1104The SELECT command would examine more than MAX_JOIN_SIZE rows, check the WHERE clause and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is ok.
UnknownError1105An unknown error occurred.
UnknownProcedure1106The specified procedure is unknown.
WrongParameterCountToProcedure1107The number of parameters provided for the specified procedure is incorrect.
WrongParametersToProcedure1108The parameters provided for the specified procedure are incorrect.
UnknownTable1109The specified table is unknown.
FieldSpecifiedTwice1110The specified column has been specified twice.
InvalidGroupFunctionUse1111The group function has been incorrectly used.
UnsupportedExtenstion1112The specified table uses an extension that doesn't exist in this MySQL version.
TableMustHaveColumns1113The table must have at least one column.
RecordFileFull1114The specified table is full.
UnknownCharacterSet1115The specified character set is unknown.
TooManyTables1116Too many tables, MySQL can only use the specified number of tables in a JOIN.
TooManyFields1117Too many columns
TooBigRowSize1118The row size is too large, the maximum row size for the used tables (not counting BLOBS) is specified, change some columns or BLOBS.
StackOverrun1119A thread stack overrun occurred. Stack statistics are specified.
WrongOuterJoin1120A cross dependency was found in the OUTER JOIN, examine the ON conditions.
NullColumnInIndex1121The table handler doesn't support NULL in the given index, change specified column to be NOT NULL or use another handler.
CannotFindUDF1122The specified user defined function cannot be loaded.
CannotInitializeUDF1123The specified user defined function cannot be initialised.
UDFNoPaths1124No paths are allowed for the shared library.
UDFExists1125The specified user defined function already exists.
CannotOpenLibrary1126The specified shared library cannot be opened.
CannotFindDLEntry1127The specified symbol cannot be found in the library.
FunctionNotDefined1128The specified function is not defined.
HostIsBlocked1129The specified host is blocked because of too many connection errors, unblock with 'mysqladmin flush-hosts'.
HostNotPrivileged1130 The given host is not allowed to connect
AnonymousUser1131 The anonymous user is not allowed to connect
PasswordNotAllowed1132 The given password is not allowed
PasswordNoMatch1133 The given password does not match
UpdateInfo1134Information returned by an UPDATE statement.
CannotCreateThread1135A new thread couldn't be created.
WrongValueCountOnRow1136The column count doesn't match the value count.
CannotReopenTable1137The specified table can't be re-opened.
InvalidUseOfNull1138The NULL value has been used incorrectly.
RegExpError1139The regular expression contains an error.
MixOfGroupFunctionAndFields1140GROUP columns (MIN(), MAX(), COUNT(), ...) cannot be mixes with no GROUP columns if there is not GROUP BY clause.
NonExistingGrant1141
TableAccessDenied1142
ColumnAccessDenied1143
IllegalGrantForTable1144
GrantWrongHostOrUser1145
NoSuchTable1146
NonExistingTableGrant1147
NotAllowedCommand1148
SyntaxError1149
DelayedCannotChangeLock1150
TooManyDelayedThreads1151
AbortingConnection1152
PacketTooLarge1153 An attempt was made to send or receive a packet larger than max_allowed_packet_size
NetReadErrorFromPipe1154
NetFCntlError1155
NetPacketsOutOfOrder1156
NetUncompressError1157
NetReadError1158
NetReadInterrupted1159
NetErrorOnWrite1160
NetWriteInterrupted1161
TooLongString1162
TableCannotHandleBlob1163
TableCannotHandleAutoIncrement1164
DelayedInsertTableLocked1165
WrongColumnName1166
WrongKeyColumn1167
WrongMergeTable1168
DuplicateUnique1169
BlobKeyWithoutLength1170
PrimaryCannotHaveNull1171
TooManyRows1172
RequiresPrimaryKey1173
NoRAIDCompiled1174
UpdateWithoutKeysInSafeMode1175
KeyDoesNotExist1176
CheckNoSuchTable1177
CheckNotImplemented1178
CannotDoThisDuringATransaction1179
ErrorDuringCommit1180
ErrorDuringRollback1181
ErrorDuringFlushLogs1182
ErrorDuringCheckpoint1183
NewAbortingConnection1184
DumpNotImplemented1185
FlushMasterBinLogClosed1186
IndexRebuild1187
MasterError1188
MasterNetRead1189
MasterNetWrite1190
FullTextMatchingKeyNotFound1191
LockOrActiveTransaction1192
UnknownSystemVariable1193
CrashedOnUsage1194
CrashedOnRepair1195
WarningNotCompleteRollback1196
TransactionCacheFull1197
SlaveMustStop1198
SlaveNotRunning1199
BadSlave1200
MasterInfo1201
SlaveThread1202
TooManyUserConnections1203
SetConstantsOnly1204
LockWaitTimeout1205
LockTableFull1206
ReadOnlyTransaction1207
DropDatabaseWithReadLock1208
CreateDatabaseWithReadLock1209
WrongArguments1210
NoPermissionToCreateUser1211
UnionTablesInDifferentDirectory1212
LockDeadlock1213
TableCannotHandleFullText1214
CannotAddForeignConstraint1215
NoReferencedRow1216
RowIsReferenced1217
ConnectToMaster1218
QueryOnMaster1219
ErrorWhenExecutingCommand1220
WrongUsage1221
WrongNumberOfColumnsInSelect1222
CannotUpdateWithReadLock1223
MixingNotAllowed1224
DuplicateArgument1225
UserLimitReached1226
SpecifiedAccessDeniedError1227
LocalVariableError1228
GlobalVariableError1229
NotDefaultError1230
WrongValueForVariable1231
WrongTypeForVariable1232
VariableCannotBeRead1233
CannotUseOptionHere1234
NotSupportedYet1235
MasterFatalErrorReadingBinLog1236
SlaveIgnoredTable1237
IncorrectGlobalLocalVariable1238
WrongForeignKeyDefinition1239
KeyReferenceDoesNotMatchTableReference1240
OpearnColumnsError1241
SubQueryNoOneRow1242
UnknownStatementHandler1243
CorruptHelpDatabase1244
CyclicReference1245
AutoConvert1246
IllegalReference1247
DerivedMustHaveAlias1248
SelectReduced1249
TableNameNotAllowedHere1250
NotSupportedAuthMode1251
SpatialCannotHaveNull1252
CollationCharsetMismatch1253
SlaveWasRunning1254
SlaveWasNotRunning1255
TooBigForUncompress1256
ZipLibMemoryError1257
ZipLibBufferError1258
ZipLibDataError1259
CutValueGroupConcat1260
WarningTooFewRecords1261
WarningTooManyRecords1262
WarningNullToNotNull1263
WarningDataOutOfRange1264
WaningDataTruncated1265
WaningUsingOtherHandler1266
CannotAggregateTwoCollations1267
DropUserError1268
RevokeGrantsError1269
CannotAggregateThreeCollations1270
CannotAggregateNCollations1271
VariableIsNotStructure1272
UnknownCollation1273
SlaveIgnoreSSLParameters1274
ServerIsInSecureAuthMode1275
WaningFieldResolved1276
BadSlaveUntilCondition1277
MissingSkipSlave1278
ErrorUntilConditionIgnored1279
WrongNameForIndex1280
WrongNameForCatalog1281
WarningQueryCacheResize1282
BadFullTextColumn1283
UnknownKeyCache1284
WarningHostnameWillNotWork1285
UnknownStorageEngine1286
WaningDeprecatedSyntax1287
NonUpdateableTable1288
FeatureDisabled1289
OptionPreventsStatement1290
DuplicatedValueInType1291
TruncatedWrongValue1292
TooMuchAutoTimestampColumns1293
InvalidOnUpdate1294
UnsupportedPreparedStatement1295
GetErroMessage1296
GetTemporaryErrorMessage1297
UnknownTimeZone1298
WarningInvalidTimestamp1299
InvalidCharacterString1300
WarningAllowedPacketOverflowed1301
ConflictingDeclarations1302
StoredProcedureNoRecursiveCreate1303
StoredProcedureAlreadyExists1304
StoredProcedureDoesNotExist1305
StoredProcedureDropFailed1306
StoredProcedureStoreFailed1307
StoredProcedureLiLabelMismatch1308
StoredProcedureLabelRedefine1309
StoredProcedureLabelMismatch1310
StoredProcedureUninitializedVariable1311
StoredProcedureBadSelect1312
StoredProcedureBadReturn1313
StoredProcedureBadStatement1314
UpdateLogDeprecatedIgnored1315
UpdateLogDeprecatedTranslated1316
QueryInterrupted1317
StoredProcedureNumberOfArguments1318
StoredProcedureConditionMismatch1319
StoredProcedureNoReturn1320
StoredProcedureNoReturnEnd1321
StoredProcedureBadCursorQuery1322
StoredProcedureBadCursorSelect1323
StoredProcedureCursorMismatch1324
StoredProcedureAlreadyOpen1325
StoredProcedureCursorNotOpen1326
StoredProcedureUndeclaredVariabel1327
StoredProcedureWrongNumberOfFetchArguments1328
StoredProcedureFetchNoData1329
StoredProcedureDuplicateParameter1330
StoredProcedureDuplicateVariable1331
StoredProcedureDuplicateCondition1332
StoredProcedureDuplicateCursor1333
StoredProcedureCannotAlter1334
StoredProcedureSubSelectNYI1335
StatementNotAllowedInStoredFunctionOrTrigger1336
StoredProcedureVariableConditionAfterCursorHandler1337
StoredProcedureCursorAfterHandler1338
StoredProcedureCaseNotFound1339
FileParserTooBigFile1340
FileParserBadHeader1341
FileParserEOFInComment1342
FileParserErrorInParameter1343
FileParserEOFInUnknownParameter1344
ViewNoExplain1345
FrmUnknownType1346
WrongObject1347
NonUpdateableColumn1348
ViewSelectDerived1349
ViewSelectClause1350
ViewSelectVariable1351
ViewSelectTempTable1352
ViewWrongList1353
WarningViewMerge1354
WarningViewWithoutKey1355
ViewInvalid1356
StoredProcedureNoDropStoredProcedure1357
StoredProcedureGotoInHandler1358
TriggerAlreadyExists1359
TriggerDoesNotExist1360
TriggerOnViewOrTempTable1361
TriggerCannotChangeRow1362
TriggerNoSuchRowInTrigger1363
NoDefaultForField1364
DivisionByZero1365
TruncatedWrongValueForField1366
IllegalValueForType1367
ViewNonUpdatableCheck1368
ViewCheckFailed1369
PrecedureAccessDenied1370
RelayLogFail1371
PasswordLength1372
UnknownTargetBinLog1373
IOErrorLogIndexRead1374
BinLogPurgeProhibited1375
FSeekFail1376
BinLogPurgeFatalError1377
LogInUse1378
LogPurgeUnknownError1379
RelayLogInit1380
NoBinaryLogging1381
ReservedSyntax1382
WSAStartupFailed1383
DifferentGroupsProcedure1384
NoGroupForProcedure1385
OrderWithProcedure1386
LoggingProhibitsChangingOf1387
NoFileMapping1388
WrongMagic1389
PreparedStatementManyParameters1390
KeyPartZero1391
ViewChecksum1392
ViewMultiUpdate1393
ViewNoInsertFieldList1394
ViewDeleteMergeView1395
CannotUser1396
XAERNotA1397
XAERInvalid1398
XAERRemoveFail1399
XAEROutside1400
XAERRemoveError1401
XARBRollback1402
NonExistingProcedureGrant1403
ProcedureAutoGrantFail1404
ProcedureAutoRevokeFail1405
DataTooLong1406
StoredProcedureSQLState1407
StartupError1408
LoadFromFixedSizeRowsToVariable1409
CannotCreateUserWithGrant1410
WrongValueForType1411
TableDefinitionChanged1412
StoredProcedureDuplicateHandler1413
StoredProcedureNotVariableArgument1414
StoredProcedureNoReturnSet1415
CannotCreateGeometryObject1416
FailedRoutineBreaksBinLog1417
BinLogUnsafeRoutine1418
BinLogCreateRoutineNeedSuper1419
ExecuteStatementWithOpenCursor1420
StatementHasNoOpenCursor1421
CommitNotAllowedIfStoredFunctionOrTrigger1422
NoDefaultForViewField1423
StoredProcedureNoRecursion1424
TooBigScale1425
TooBigPrecision1426
MBiggerThanD1427
WrongLockOfSystemTable1428
ConnectToForeignDataSource1429
QueryOnForeignDataSource1430
ForeignDataSourceDoesNotExist1431
ForeignDataStringInvalidCannotCreate1432
ForeignDataStringInvalid1433
CannotCreateFederatedTable1434
TriggerInWrongSchema1435
StackOverrunNeedMore1436
TooLongBody1437
WarningCannotDropDefaultKeyCache1438
TooBigDisplayWidth1439
XAERDuplicateID1440
DateTimeFunctionOverflow1441
CannotUpdateUsedTableInStoredFunctionOrTrigger1442
ViewPreventUpdate1443
PreparedStatementNoRecursion1444
StoredProcedureCannotSetAutoCommit1445
MalformedDefiner1446
ViewFrmNoUser1447
ViewOtherUser1448
NoSuchUser1449
ForbidSchemaChange1450
RowIsReferenced21451
NoReferencedRow21452
StoredProcedureBadVariableShadow1453
TriggerNoDefiner1454
OldFileFormat1455
StoredProcedureRecursionLimit1456
StoredProcedureTableCorrupt1457
StoredProcedureWrongName1458
TableNeedsUpgrade1459
StoredProcedureNoAggregate1460
MaxPreparedStatementCountReached1461
ViewRecursive1462
NonGroupingFieldUsed1463
TableCannotHandleSpatialKeys1464
NoTriggersOnSystemSchema1465
RemovedSpaces1466
AutoIncrementReadFailed1467
UserNameError1468
HostNameError1469
WrongStringLength1470
NonInsertableTable1471
AdminWrongMergeTable1472
TooHighLevelOfNestingForSelect1473
NameBecomesEmpty1474
AmbiguousFieldTerm1475
ForeignServerExists1476
ForeignServerDoesNotExist1477
IllegalHACreateOption1478
PartitionRequiresValues1479
PartitionWrongValues1480
PartitionMaxValue1481
PartitionSubPartition1482
PartitionSubPartMix1483
PartitionWrongNoPart1484
PartitionWrongNoSubPart1485
WrongExpressionInParitionFunction1486
NoConstantExpressionInRangeOrListError1487
FieldNotFoundPartitionErrror1488
ListOfFieldsOnlyInHash1489
InconsistentPartitionInfo1490
PartitionFunctionNotAllowed1491
PartitionsMustBeDefined1492
RangeNotIncreasing1493
InconsistentTypeOfFunctions1494
MultipleDefinitionsConstantInListPartition1495
PartitionEntryError1496
MixHandlerError1497
PartitionNotDefined1498
TooManyPartitions1499
SubPartitionError1500
CannotCreateHandlerFile1501
BlobFieldInPartitionFunction1502
UniqueKeyNeedAllFieldsInPartitioningFunction1503
NoPartitions1504
PartitionManagementOnNoPartitioned1505
ForeignKeyOnPartitioned1506
DropPartitionNonExistent1507
DropLastPartition1508
CoalesceOnlyOnHashPartition1509
ReorganizeHashOnlyOnSameNumber1510
ReorganizeNoParameter1511
OnlyOnRangeListPartition1512
AddPartitionSubPartition1513
AddPartitionNoNewPartition1514
CoalescePartitionNoPartition1515
ReorganizePartitionNotExist1516
SameNamePartition1517
NoBinLog1518
ConsecutiveReorganizePartitions1519
ReorganizeOutsideRange1520
PartitionFunctionFailure1521
PartitionStateError1522
LimitedPartitionRange1523
PluginIsNotLoaded1524
WrongValue1525
NoPartitionForGivenValue1526
FileGroupOptionOnlyOnce1527
CreateFileGroupFailed1528
DropFileGroupFailed1529
TableSpaceAutoExtend1530
WrongSizeNumber1531
SizeOverflow1532
AlterFileGroupFailed1533
BinLogRowLogginFailed1534
BinLogRowWrongTableDefinition1535
BinLogRowRBRToSBR1536
EventAlreadyExists1537
EventStoreFailed1538
EventDoesNotExist1539
EventCannotAlter1540
EventDropFailed1541
EventIntervalNotPositiveOrTooBig1542
EventEndsBeforeStarts1543
EventExecTimeInThePast1544
EventOpenTableFailed1545
EventNeitherMExpresssionNorMAt1546
ColumnCountDoesNotMatchCorrupted1547
CannotLoadFromTable1548
EventCannotDelete1549
EventCompileError1550
EventSameName1551
EventDataTooLong1552
DropIndexForeignKey1553
WarningDeprecatedSyntaxWithVersion1554
CannotWriteLockLogTable1555
CannotLockLogTable1556
ForeignDuplicateKey1557
ColumnCountDoesNotMatchPleaseUpdate1558
TemoraryTablePreventSwitchOutOfRBR1559
StoredFunctionPreventsSwitchBinLogFormat1560
NDBCannotSwitchBinLogFormat1561
PartitionNoTemporary1562
PartitionConstantDomain1563
PartitionFunctionIsNotAllowed1564
DDLLogError1565
NullInValuesLessThan1566
WrongPartitionName1567
CannotChangeTransactionIsolation1568
DuplicateEntryAutoIncrementCase1569
EventModifyQueueError1570
EventSetVariableError1571
PartitionMergeError1572
CannotActivateLog1573
RBRNotAvailable1574
Base64DecodeError1575
EventRecursionForbidden1576
EventsDatabaseError1577
OnlyIntegersAllowed1578
UnsupportedLogEngine1579
BadLogStatement1580
CannotRenameLogTable1581
WrongParameterCountToNativeFCT1582
WrongParametersToNativeFCT1583
WrongParametersToStoredFCT1584
NativeFCTNameCollision1585
DuplicateEntryWithKeyName1586
BinLogPurgeEMFile1587
EventCannotCreateInThePast1588
EventCannotAlterInThePast1589
SlaveIncident1590
NoPartitionForGivenValueSilent1591
BinLogUnsafeStatement1592
SlaveFatalError1593
SlaveRelayLogReadFailure1594
SlaveRelayLogWriteFailure1595
SlaveCreateEventFailure1596
SlaveMasterComFailure1597
BinLogLoggingImpossible1598
ViewNoCreationContext1599
ViewInvalidCreationContext1600
StoredRoutineInvalidCreateionContext1601
TiggerCorruptedFile1602
TriggerNoCreationContext1603
TriggerInvalidCreationContext1604
EventInvalidCreationContext1605
TriggerCannotOpenTable1606
CannoCreateSubRoutine1607
SlaveAmbiguousExecMode1608
NoFormatDescriptionEventBeforeBinLogStatement1609
SlaveCorruptEvent1610
LoadDataInvalidColumn1611
LogPurgeNoFile1612
XARBTimeout1613
XARBDeadlock1614
NeedRePrepare1615
DelayedNotSupported1616
WarningNoMasterInfo1617
WarningOptionIgnored1618
WarningPluginDeleteBuiltIn1619
WarningPluginBusy1620
VariableIsReadonly1621
WarningEngineTransactionRollback1622
SlaveHeartbeatFailure1623
SlaveHeartbeatValueOutOfRange1624
NDBReplicationSchemaError1625
ConflictFunctionParseError1626
ExcepionsWriteError1627
TooLongTableComment1628
TooLongFieldComment1629
FunctionInExistentNameCollision1630
DatabaseNameError1631
TableNameErrror1632
PartitionNameError1633
SubPartitionNameError1634
TemporaryNameError1635
RenamedNameError1636
TooManyConcurrentTransactions1637
WarningNonASCIISeparatorNotImplemented1638
DebugSyncTimeout1639
DebugSyncHitLimit1640
ErrorLast1640
See Also