1300
HY000
ER_INVALID_CHARACTER_STRING
Invalid %s character string: '%s'
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1301
HY000
ER_WARN_ALLOWED_PACKET_OVERFLOWED
Result of %s() was larger than max_allowed_packet (%ld) - truncated
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1302
HY000
ER_CONFLICTING_DECLARATIONS
Conflicting declarations: '%s%s' and '%s%s'
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1303
2F003
ER_SP_NO_RECURSIVE_CREATE
Can't create a %s from within another stored routine
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1304
42000
ER_SP_ALREADY_EXISTS
%s %s already exists
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1305
42000
ER_SP_DOES_NOT_EXIST
%s %s does not exist
This error is returned when what is being called does not exist. For example:
CALL Reset_animal_count();
ERROR 1305 (42000): PROCEDURE test.Reset_animal_count does not exist
SELECT Reset_animal_count();
ERROR 1305 (42000): FUNCTION test.Reset_animal_count does not exist
There are a number of possible causes:
The stored procedure or stored function has not yet been created. See CREATE PROCEDURE or CREATE FUNCTION. For example:
DELIMITER //
CREATE PROCEDURE Reset_animal_count()
MODIFIES SQL DATA
UPDATE animal_count SET animals = 0;
//
Query OK, 0 rows affected (0.032 sec)
DELIMITER ;
CALL Reset_animal_count();
Query OK, 0 rows affected (0.001 sec)
There was a typo in the name. Check also that the case is correct. See Identifier Case-sensitivity. For example:
CALL reset_animal_count();
ERROR 1305 (42000): PROCEDURE test.Reset_animal_count does not exist
CALL Reset_animal_count();
Query OK, 0 rows affected (0.001 sec)
The database specified is not the same as the database containing the stored procedure or function. For example:
use test2
CALL Reset_animal_count();
ERROR 1305 (42000): PROCEDURE test2.Reset_animal_count does not exist
Either change the default (current) database with the USE statement, or specify the database in the call, for example:
CALL test.Reset_animal_count();
Query OK, 0 rows affected (0.001 sec)
or
use test
CALL Reset_animal_count();
Query OK, 0 rows affected (0.001 sec)
One is trying to access a stored procedure instead of a stored function, or vice-versa. For example:
SELECT Reset_animal_count();
ERROR 1305 (42000): FUNCTION test.Reset_animal_count does not exist
CALL Reset_animal_count();
Query OK, 0 rows affected (0.001 sec)
This page is licensed: CC BY-SA / Gnu FDL
1306
HY000
ER_SP_DROP_FAILED
Failed to DROP %s %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1307
HY000
ER_SP_STORE_FAILED
Failed to CREATE %s %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1308
42000
ER_SP_LILABEL_MISMATCH
%s with no matching label: %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1309
42000
ER_SP_LABEL_REDEFINE
Redefining label %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1310
42000
ER_SP_LABEL_MISMATCH
End-label %s without match
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1311
01000
ER_SP_UNINIT_VAR
Referring to uninitialized variable %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1312
0A000
ER_SP_BADSELECT
PROCEDURE %s can't return a result set in the given context
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1313
42000
ER_SP_BADRETURN
RETURN is only allowed in a FUNCTION
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1314
0A000
ER_SP_BADSTATEMENT
%s is not allowed in stored procedures
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1315
42000
ER_UPDATE_LOG_DEPRECATED_IGNORED
The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been ignored. This option will be removed in MariaDB 5.6.
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1316
42000
ER_UPDATE_LOG_DEPRECATED_TRANSLATED
The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been translated to SET SQL_LOG_BIN. This option will be removed in MariaDB 5.6.
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1317
70100
ER_QUERY_INTERRUPTED
Query execution was interrupted
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1318
42000
ER_SP_WRONG_NO_OF_ARGS
Incorrect number of arguments for %s %s; expected %u, got %u
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1319
42000
ER_SP_COND_MISMATCH
Undefined CONDITION: %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1320
42000
ER_SP_NORETURN
No RETURN found in FUNCTION %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1321
2F005
ER_SP_NORETURNEND
FUNCTION %s ended without RETURN
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1322
42000
ER_SP_BAD_CURSOR_QUERY
Cursor statement must be a SELECT
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1323
42000
ER_SP_BAD_CURSOR_SELECT
Cursor SELECT must not have INTO
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1324
42000
ER_SP_CURSOR_MISMATCH
Undefined CURSOR: %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1325
24000
ER_SP_CURSOR_ALREADY_OPEN
Cursor is already open
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1326
24000
ER_SP_CURSOR_NOT_OPEN
Cursor is not open
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1327
42000
ER_SP_UNDECLARED_VAR
Undeclared variable: %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1328
HY000
ER_SP_WRONG_NO_OF_FETCH_ARGS
Incorrect number of FETCH variables
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1329
02000
ER_SP_FETCH_NO_DATA
No data - zero rows fetched, selected, or processed
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1330
42000
ER_SP_DUP_PARAM
Duplicate parameter: %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1331
42000
ER_SP_DUP_VAR
Duplicate variable: %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1332
42000
ER_SP_DUP_COND
Duplicate condition: %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1333
42000
ER_SP_DUP_CURS
Duplicate cursor: %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1334
HY000
ER_SP_CANT_ALTER
Failed to ALTER %s %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1335
0A000
ER_SP_SUBSELECT_NYI
Subquery value not supported
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1336
0A000
ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG
%s is not allowed in stored function or trigger
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1337
42000
ER_SP_VARCOND_AFTER_CURSHNDLR
Variable or condition declaration after cursor or handler declaration
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1338
42000
ER_SP_CURSOR_AFTER_HANDLER
Cursor declaration after handler declaration
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1339
20000
ER_SP_CASE_NOT_FOUND
Case not found for CASE statement
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1340
HY000
ER_FPARSER_TOO_BIG_FILE
Configuration file '%s' is too big
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1341
HY000
ER_FPARSER_BAD_HEADER
Malformed file type header in file '%s'
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1342
HY000
ER_FPARSER_EOF_IN_COMMENT
Unexpected end of file while parsing comment '%s'
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1343
HY000
ER_FPARSER_ERROR_IN_PARAMETER
Error while parsing parameter '%s' (line: '%s')
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1344
HY000
ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER
Unexpected end of file while skipping unknown parameter '%s'
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1345
HY000
ER_VIEW_NO_EXPLAIN
EXPLAIN/SHOW can not be issued; lacking privileges for underlying table
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1346
HY000
ER_FRM_UNKNOWN_TYPE
File '%s' has unknown type '%s' in its header
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1347
HY000
ER_WRONG_OBJECT
'%s.%s' is not %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1348
HY000
ER_NONUPDATEABLE_COLUMN
Column '%s' is not updatable
The usual cause is that an UPDATE, LOAD DATA or LOAD XML, is being performed on the column of a view where the view column is an expression.
This page is licensed: CC BY-SA / Gnu FDL
1349
HY000
ER_VIEW_SELECT_DERIVED
View's SELECT contains a subquery in the FROM clause
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1350
HY000
ER_VIEW_SELECT_CLAUSE
View's SELECT contains a '%s' clause
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1351
HY000
ER_VIEW_SELECT_VARIABLE
View's SELECT contains a variable or parameter
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1352
HY000
ER_VIEW_SELECT_TMPTABLE
View's SELECT refers to a temporary table '%s'
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1353
HY000
ER_VIEW_WRONG_LIST
View's SELECT and view's field list have different column counts
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1354
HY000
ER_WARN_VIEW_MERGE
View merge algorithm can't be used here for now (assumed undefined algorithm)
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1355
HY000
ER_WARN_VIEW_WITHOUT_KEY
View being updated does not have complete key of underlying table in it
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1356
HY000
ER_VIEW_INVALID
View '%s.%s' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
This article doesn't currently contain any content. You can help!
<
This page is licensed: CC BY-SA / Gnu FDL
1357
HY000
ER_SP_NO_DROP_SP
Can't drop or alter a %s from within another stored routine
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1358
HY000
ER_SP_GOTO_IN_HNDLR
GOTO is not allowed in a stored procedure handler
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1359
HY000
ER_TRG_ALREADY_EXISTS
Trigger already exists
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1360
HY000
ER_TRG_DOES_NOT_EXIST
Trigger does not exist
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1361
HY000
ER_TRG_ON_VIEW_OR_TEMP_TABLE
Trigger's '%s' is view or temporary table
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1362
HY000
ER_TRG_CANT_CHANGE_ROW
Updating of %s row is not allowed in %strigger
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1363
HY000
ER_TRG_NO_SUCH_ROW_IN_TRG
There is no %s row in %s trigger
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1364
HY000
ER_NO_DEFAULT_FOR_FIELD
Field '%s' doesn't have a default value
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1365
22012
ER_DIVISION_BY_ZER
Division by 0
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1366
HY000
ER_TRUNCATED_WRONG_VALUE_FOR_FIELD
Incorrect %s value: '%s' for column '%s' at row %ld
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1367
22007
ER_ILLEGAL_VALUE_FOR_TYPE
Illegal %s '%s' value found during parsing
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1368
HY000
ER_VIEW_NONUPD_CHECK
CHECK OPTION on non-updatable view '%s.%s'
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1369
HY000
ER_VIEW_CHECK_FAILED
CHECK OPTION failed '%s.%s'
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1370
42000
ER_PROCACCESS_DENIED_ERROR
%s command denied to user '%s'@'%s' for routine '%s'
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1371
HY000
ER_RELAY_LOG_FAIL
Failed purging old relay logs: %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1372
HY000
ER_PASSWD_LENGTH
Password hash should be a %d-digit hexadecimal number
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1373
HY000
ER_UNKNOWN_TARGET_BINLOG
Target log not found in binlog index
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1374
HY000
ER_IO_ERR_LOG_INDEX_READ
I/O error reading log index file
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1375
HY000
ER_BINLOG_PURGE_PROHIBITED
Server configuration does not permit binlog purge
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1376
HY000
ER_FSEEK_FAIL
Failed on fseek()
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1377
HY000
ER_BINLOG_PURGE_FATAL_ERR
Fatal error during log purge
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1378
HY000
ER_LOG_IN_USE
A purgeable log is in use, will not purge
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1379
HY000
ER_LOG_PURGE_UNKNOWN_ERR
Unknown error during log purge
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1380
HY000
ER_RELAY_LOG_INIT
Failed initializing relay log position: %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1381
HY000
ER_NO_BINARY_LOGGING
You are not using binary logging
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1382
HY000
ER_RESERVED_SYNTAX
The '%s' syntax is reserved for purposes internal to the MariaDB server
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1383
HY000
ER_WSAS_FAILED
WSAStartup Failed
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1384
HY000
ER_DIFF_GROUPS_PROC
Can't handle procedures with different groups yet
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1385
HY000
ER_NO_GROUP_FOR_PROC
Select must have a group with this procedure
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1386
HY000
ER_ORDER_WITH_PROC
Can't use ORDER clause with this procedure
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1387
HY000
ER_LOGGING_PROHIBIT_CHANGING_OF
Binary logging and replication forbid changing the global server %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1388
HY000
ER_NO_FILE_MAPPING
Can't map file: %s, errno: %d
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1389
HY000
ER_WRONG_MAGIC
Wrong magic in %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1390
HY000
ER_PS_MANY_PARAM
Prepared statement contains too many placeholders
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1391
HY000
ER_KEY_PART_0
Key part '%s' length cannot be 0
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1392
HY000
ER_VIEW_CHECKSUM
View text checksum failed
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1393
HY000
ER_VIEW_MULTIUPDATE
Can not modify more than one base table through a join view '%s.%s'
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1394
HY000
ER_VIEW_NO_INSERT_FIELD_LIST
Can not insert into join view '%s.%s' without fields list
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1395
HY000
ER_VIEW_DELETE_MERGE_VIEW
Can not delete from join view '%s.%s'
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1396
HY000
ER_CANNOT_USER
Operation %s failed for %s
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1397
XAE04
ER_XAER_NOTA
XAER_NOTA: Unknown XID
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL
1398
XAE05
ER_XAER_INVAL
XAER_INVAL: Invalid arguments (or unsupported command)
This article doesn't currently contain any content. You can help!
This page is licensed: CC BY-SA / Gnu FDL