All pages
Powered by GitBook
Couldn't generate the PDF for 101 pages, generation stopped at 100.
Extend with 50 more pages.
1 of 100

MariaDB Error Codes 1300 to 1399

Error 1300: Invalid character string

Error Code
SQLSTATE
Error
Description

1300

HY000

ER_INVALID_CHARACTER_STRING

Invalid %s character string: '%s'

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1301: Result was larger than max_allowed_packet - truncated

Error Code
SQLSTATE
Error
Description

1301

HY000

ER_WARN_ALLOWED_PACKET_OVERFLOWED

Result of %s() was larger than max_allowed_packet (%ld) - truncated

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1302: Conflicting declarations

Error Code
SQLSTATE
Error
Description

1302

HY000

ER_CONFLICTING_DECLARATIONS

Conflicting declarations: '%s%s' and '%s%s'

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1303: Can't create from within another stored routine

Error Code
SQLSTATE
Error
Description

1303

2F003

ER_SP_NO_RECURSIVE_CREATE

Can't create a %s from within another stored routine

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1304: already exists

Error Code
SQLSTATE
Error
Description

1304

42000

ER_SP_ALREADY_EXISTS

%s %s already exists

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1305: does not exist

Error Code
SQLSTATE
Error
Description

1305

42000

ER_SP_DOES_NOT_EXIST

%s %s does not exist

Possible Causes and Solutions

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

Error 1306: Failed to DROP

Error Code
SQLSTATE
Error
Description

1306

HY000

ER_SP_DROP_FAILED

Failed to DROP %s %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1307: Failed to CREATE

Error Code
SQLSTATE
Error
Description

1307

HY000

ER_SP_STORE_FAILED

Failed to CREATE %s %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1308: with no matching label

Error Code
SQLSTATE
Error
Description

1308

42000

ER_SP_LILABEL_MISMATCH

%s with no matching label: %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1309: Redefining label

Error Code
SQLSTATE
Error
Description

1309

42000

ER_SP_LABEL_REDEFINE

Redefining label %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1310: End-label without match

Error Code
SQLSTATE
Error
Description

1310

42000

ER_SP_LABEL_MISMATCH

End-label %s without match

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1311: Referring to uninitialized variable

Error Code
SQLSTATE
Error
Description

1311

01000

ER_SP_UNINIT_VAR

Referring to uninitialized variable %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1312: PROCEDURE can't return a result set in the given context

Error Code
SQLSTATE
Error
Description

1312

0A000

ER_SP_BADSELECT

PROCEDURE %s can't return a result set in the given context

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1313: RETURN is only allowed in a FUNCTION

Error Code
SQLSTATE
Error
Description

1313

42000

ER_SP_BADRETURN

RETURN is only allowed in a FUNCTION

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1314: is not allowed in stored procedures

Error Code
SQLSTATE
Error
Description

1314

0A000

ER_SP_BADSTATEMENT

%s is not allowed in stored procedures

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1315: The update log is deprecated and replaced by the binary log

Error Code
SQLSTATE
Error
Description

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.

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1316: The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been

Error Code
SQLSTATE
Error
Description

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.

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1317: Query execution was interrupted

Error Code
SQLSTATE
Error
Description

1317

70100

ER_QUERY_INTERRUPTED

Query execution was interrupted

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1318: Incorrect number of arguments; expected, got

Error Code
SQLSTATE
Error
Description

1318

42000

ER_SP_WRONG_NO_OF_ARGS

Incorrect number of arguments for %s %s; expected %u, got %u

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1319: Undefined CONDITION

Error Code
SQLSTATE
Error
Description

1319

42000

ER_SP_COND_MISMATCH

Undefined CONDITION: %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1320: No RETURN found in FUNCTION

Error Code
SQLSTATE
Error
Description

1320

42000

ER_SP_NORETURN

No RETURN found in FUNCTION %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1321: FUNCTION ended without RETURN

Error Code
SQLSTATE
Error
Description

1321

2F005

ER_SP_NORETURNEND

FUNCTION %s ended without RETURN

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1322: Cursor statement must be a SELECT

Error Code
SQLSTATE
Error
Description

1322

42000

ER_SP_BAD_CURSOR_QUERY

Cursor statement must be a SELECT

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1323: Cursor SELECT must not have INTO

Error Code
SQLSTATE
Error
Description

1323

42000

ER_SP_BAD_CURSOR_SELECT

Cursor SELECT must not have INTO

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1324: Undefined CURSOR

Error Code
SQLSTATE
Error
Description

1324

42000

ER_SP_CURSOR_MISMATCH

Undefined CURSOR: %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1325: Cursor is already open

Error Code
SQLSTATE
Error
Description

1325

24000

ER_SP_CURSOR_ALREADY_OPEN

Cursor is already open

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1326: Cursor is not open

Error Code
SQLSTATE
Error
Description

1326

24000

ER_SP_CURSOR_NOT_OPEN

Cursor is not open

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1327: Undeclared variable

Error Code
SQLSTATE
Error
Description

1327

42000

ER_SP_UNDECLARED_VAR

Undeclared variable: %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1328: Incorrect number of FETCH variables

Error Code
SQLSTATE
Error
Description

1328

HY000

ER_SP_WRONG_NO_OF_FETCH_ARGS

Incorrect number of FETCH variables

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1329: No data - zero rows fetched, selected, or processed

Error Code
SQLSTATE
Error
Description

1329

02000

ER_SP_FETCH_NO_DATA

No data - zero rows fetched, selected, or processed

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1330: Duplicate parameter

Error Code
SQLSTATE
Error
Description

1330

42000

ER_SP_DUP_PARAM

Duplicate parameter: %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1331: Duplicate variable

Error Code
SQLSTATE
Error
Description

1331

42000

ER_SP_DUP_VAR

Duplicate variable: %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1332: Duplicate condition

Error Code
SQLSTATE
Error
Description

1332

42000

ER_SP_DUP_COND

Duplicate condition: %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1333: Duplicate cursor

Error Code
SQLSTATE
Error
Description

1333

42000

ER_SP_DUP_CURS

Duplicate cursor: %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1334: Failed to ALTER

Error Code
SQLSTATE
Error
Description

1334

HY000

ER_SP_CANT_ALTER

Failed to ALTER %s %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1335: Subquery value not supported

Error Code
SQLSTATE
Error
Description

1335

0A000

ER_SP_SUBSELECT_NYI

Subquery value not supported

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1336: is not allowed in stored function or trigger

Error Code
SQLSTATE
Error
Description

1336

0A000

ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG

%s is not allowed in stored function or trigger

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1337: Variable or condition declaration after cursor or handler declaration

Error Code
SQLSTATE
Error
Description

1337

42000

ER_SP_VARCOND_AFTER_CURSHNDLR

Variable or condition declaration after cursor or handler declaration

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1338: Cursor declaration after handler declaration

Error Code
SQLSTATE
Error
Description

1338

42000

ER_SP_CURSOR_AFTER_HANDLER

Cursor declaration after handler declaration

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1339: Case not found for CASE statement

Error Code
SQLSTATE
Error
Description

1339

20000

ER_SP_CASE_NOT_FOUND

Case not found for CASE statement

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1340: Configuration file is too big

Error Code
SQLSTATE
Error
Description

1340

HY000

ER_FPARSER_TOO_BIG_FILE

Configuration file '%s' is too big

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1341: Malformed file type header in file

Error Code
SQLSTATE
Error
Description

1341

HY000

ER_FPARSER_BAD_HEADER

Malformed file type header in file '%s'

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1342: Unexpected end of file while parsing comment

Error Code
SQLSTATE
Error
Description

1342

HY000

ER_FPARSER_EOF_IN_COMMENT

Unexpected end of file while parsing comment '%s'

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1343: Error while parsing parameter

Error Code
SQLSTATE
Error
Description

1343

HY000

ER_FPARSER_ERROR_IN_PARAMETER

Error while parsing parameter '%s' (line: '%s')

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1344: Unexpected end of file while skipping unknown parameter

Error Code
SQLSTATE
Error
Description

1344

HY000

ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER

Unexpected end of file while skipping unknown parameter '%s'

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1345: EXPLAIN/SHOW can not be issued; lacking privileges for underlying table

Error Code
SQLSTATE
Error
Description

1345

HY000

ER_VIEW_NO_EXPLAIN

EXPLAIN/SHOW can not be issued; lacking privileges for underlying table

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1346: File has unknown type in its header

Error Code
SQLSTATE
Error
Description

1346

HY000

ER_FRM_UNKNOWN_TYPE

File '%s' has unknown type '%s' in its header

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1347: '%s.%s' is not %s

Error Code
SQLSTATE
Error
Description

1347

HY000

ER_WRONG_OBJECT

'%s.%s' is not %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1348: Column is not updatable

Error Code
SQLSTATE
Error
Description

1348

HY000

ER_NONUPDATEABLE_COLUMN

Column '%s' is not updatable

Possible Causes and Solutions

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

Error 1349: View's SELECT contains a subquery in the FROM clause

Error Code
SQLSTATE
Error
Description

1349

HY000

ER_VIEW_SELECT_DERIVED

View's SELECT contains a subquery in the FROM clause

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1350: View's SELECT contains clause

Error Code
SQLSTATE
Error
Description

1350

HY000

ER_VIEW_SELECT_CLAUSE

View's SELECT contains a '%s' clause

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1351: View's SELECT contains a variable or parameter

Error Code
SQLSTATE
Error
Description

1351

HY000

ER_VIEW_SELECT_VARIABLE

View's SELECT contains a variable or parameter

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1352: View's SELECT refers to a temporary table'

Error Code
SQLSTATE
Error
Description

1352

HY000

ER_VIEW_SELECT_TMPTABLE

View's SELECT refers to a temporary table '%s'

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1353: View's SELECT and view's field list have different column counts

Error Code
SQLSTATE
Error
Description

1353

HY000

ER_VIEW_WRONG_LIST

View's SELECT and view's field list have different column counts

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1354: View merge algorithm can't be used here for now

Error Code
SQLSTATE
Error
Description

1354

HY000

ER_WARN_VIEW_MERGE

View merge algorithm can't be used here for now (assumed undefined algorithm)

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1355: View being updated does not have complete key of underlying table in it

Error Code
SQLSTATE
Error
Description

1355

HY000

ER_WARN_VIEW_WITHOUT_KEY

View being updated does not have complete key of underlying table in it

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1356: View references invalid table(s) or column(s) or function(s) or definer/invoker of view

Error Code
SQLSTATE
Error
Description

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

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

<

This page is licensed: CC BY-SA / Gnu FDL

Error 1357: Can't drop or alter from within another stored routine

Error Code
SQLSTATE
Error
Description

1357

HY000

ER_SP_NO_DROP_SP

Can't drop or alter a %s from within another stored routine

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1358: GOTO is not allowed in a stored procedure handler

Error Code
SQLSTATE
Error
Description

1358

HY000

ER_SP_GOTO_IN_HNDLR

GOTO is not allowed in a stored procedure handler

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1359: Trigger already exists

Error Code
SQLSTATE
Error
Description

1359

HY000

ER_TRG_ALREADY_EXISTS

Trigger already exists

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1360: Trigger does not exist

Error Code
SQLSTATE
Error
Description

1360

HY000

ER_TRG_DOES_NOT_EXIST

Trigger does not exist

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1361: Trigger's is view or temporary table

Error Code
SQLSTATE
Error
Description

1361

HY000

ER_TRG_ON_VIEW_OR_TEMP_TABLE

Trigger's '%s' is view or temporary table

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1362: Updating of row is not allowed in trigger

Error Code
SQLSTATE
Error
Description

1362

HY000

ER_TRG_CANT_CHANGE_ROW

Updating of %s row is not allowed in %strigger

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1363: There is no row in trigger

Error Code
SQLSTATE
Error
Description

1363

HY000

ER_TRG_NO_SUCH_ROW_IN_TRG

There is no %s row in %s trigger

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1364: Field doesn't have a default value

Error Code
SQLSTATE
Error
Description

1364

HY000

ER_NO_DEFAULT_FOR_FIELD

Field '%s' doesn't have a default value

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1365: Division by 0

Error Code
SQLSTATE
Error
Description

1365

22012

ER_DIVISION_BY_ZER

Division by 0

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1366: Incorrect value for column at row

Error Code
SQLSTATE
Error
Description

1366

HY000

ER_TRUNCATED_WRONG_VALUE_FOR_FIELD

Incorrect %s value: '%s' for column '%s' at row %ld

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1367: Illegal value found during parsing

Error Code
SQLSTATE
Error
Description

1367

22007

ER_ILLEGAL_VALUE_FOR_TYPE

Illegal %s '%s' value found during parsing

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1368: CHECK OPTION on non-updatable view

Error Code
SQLSTATE
Error
Description

1368

HY000

ER_VIEW_NONUPD_CHECK

CHECK OPTION on non-updatable view '%s.%s'

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1369: CHECK OPTION failed

Error Code
SQLSTATE
Error
Description

1369

HY000

ER_VIEW_CHECK_FAILED

CHECK OPTION failed '%s.%s'

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1370: command denied to user for routine

Error Code
SQLSTATE
Error
Description

1370

42000

ER_PROCACCESS_DENIED_ERROR

%s command denied to user '%s'@'%s' for routine '%s'

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1371: Failed purging old relay logs

Error Code
SQLSTATE
Error
Description

1371

HY000

ER_RELAY_LOG_FAIL

Failed purging old relay logs: %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1372: Password hash should be a %d-digit hexadecimal number

Error Code
SQLSTATE
Error
Description

1372

HY000

ER_PASSWD_LENGTH

Password hash should be a %d-digit hexadecimal number

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1373: Target log not found in binlog index

Error Code
SQLSTATE
Error
Description

1373

HY000

ER_UNKNOWN_TARGET_BINLOG

Target log not found in binlog index

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1374: I/O error reading log index file

Error Code
SQLSTATE
Error
Description

1374

HY000

ER_IO_ERR_LOG_INDEX_READ

I/O error reading log index file

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1375: Server configuration does not permit binlog purge

Error Code
SQLSTATE
Error
Description

1375

HY000

ER_BINLOG_PURGE_PROHIBITED

Server configuration does not permit binlog purge

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1376: Failed on fseek()

Error Code
SQLSTATE
Error
Description

1376

HY000

ER_FSEEK_FAIL

Failed on fseek()

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1377: Fatal error during log purge

Error Code
SQLSTATE
Error
Description

1377

HY000

ER_BINLOG_PURGE_FATAL_ERR

Fatal error during log purge

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1378: A purgeable log is in use, will not purge

Error Code
SQLSTATE
Error
Description

1378

HY000

ER_LOG_IN_USE

A purgeable log is in use, will not purge

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1379: Unknown error during log purge

Error Code
SQLSTATE
Error
Description

1379

HY000

ER_LOG_PURGE_UNKNOWN_ERR

Unknown error during log purge

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1380: Failed initializing relay log position

Error Code
SQLSTATE
Error
Description

1380

HY000

ER_RELAY_LOG_INIT

Failed initializing relay log position: %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1381: You are not using binary logging

Error Code
SQLSTATE
Error
Description

1381

HY000

ER_NO_BINARY_LOGGING

You are not using binary logging

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1382: The syntax is reserved for purposes internal to the MariaDB server

Error Code
SQLSTATE
Error
Description

1382

HY000

ER_RESERVED_SYNTAX

The '%s' syntax is reserved for purposes internal to the MariaDB server

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1383: WSAStartup Failed

Error Code
SQLSTATE
Error
Description

1383

HY000

ER_WSAS_FAILED

WSAStartup Failed

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1384: Can't handle procedures with different groups yet

Error Code
SQLSTATE
Error
Description

1384

HY000

ER_DIFF_GROUPS_PROC

Can't handle procedures with different groups yet

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1385: Select must have a group with this procedure

Error Code
SQLSTATE
Error
Description

1385

HY000

ER_NO_GROUP_FOR_PROC

Select must have a group with this procedure

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1386: Can't use ORDER clause with this procedure

Error Code
SQLSTATE
Error
Description

1386

HY000

ER_ORDER_WITH_PROC

Can't use ORDER clause with this procedure

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1387: Binary logging and replication forbid changing the global server

Error Code
SQLSTATE
Error
Description

1387

HY000

ER_LOGGING_PROHIBIT_CHANGING_OF

Binary logging and replication forbid changing the global server %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1388: Can't map file

Error Code
SQLSTATE
Error
Description

1388

HY000

ER_NO_FILE_MAPPING

Can't map file: %s, errno: %d

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1389: Wrong magic in

Error Code
SQLSTATE
Error
Description

1389

HY000

ER_WRONG_MAGIC

Wrong magic in %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1390: Prepared statement contains too many placeholders

Error Code
SQLSTATE
Error
Description

1390

HY000

ER_PS_MANY_PARAM

Prepared statement contains too many placeholders

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1391: Key part length cannot be 0

Error Code
SQLSTATE
Error
Description

1391

HY000

ER_KEY_PART_0

Key part '%s' length cannot be 0

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1392: View text checksum failed

Error Code
SQLSTATE
Error
Description

1392

HY000

ER_VIEW_CHECKSUM

View text checksum failed

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1393: Can not modify more than one base table through a join view

Error Code
SQLSTATE
Error
Description

1393

HY000

ER_VIEW_MULTIUPDATE

Can not modify more than one base table through a join view '%s.%s'

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1394: Can not insert into join view without fields list

Error Code
SQLSTATE
Error
Description

1394

HY000

ER_VIEW_NO_INSERT_FIELD_LIST

Can not insert into join view '%s.%s' without fields list

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1395: Can not delete from join view

Error Code
SQLSTATE
Error
Description

1395

HY000

ER_VIEW_DELETE_MERGE_VIEW

Can not delete from join view '%s.%s'

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1396: Operation failed for

Error Code
SQLSTATE
Error
Description

1396

HY000

ER_CANNOT_USER

Operation %s failed for %s

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1397: XAER_NOTA: Unknown XID

Error Code
SQLSTATE
Error
Description

1397

XAE04

ER_XAER_NOTA

XAER_NOTA: Unknown XID

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL

Error 1398: XAER_INVAL: Invalid arguments (or unsupported command)

Error Code
SQLSTATE
Error
Description

1398

XAE05

ER_XAER_INVAL

XAER_INVAL: Invalid arguments (or unsupported command)

Possible Causes and Solutions

This article doesn't currently contain any content. You can help!

This page is licensed: CC BY-SA / Gnu FDL