DEV WIKI
백엔드 · 기술

MySQL

클라이언트의 연결 요청을 받아 SQL로 데이터를 저장·조회·수정하는 관계형 데이터베이스 서버로, 로컬은 Unix 소켓, 원격은 TCP/IP 포트를 입력 경로로 사용합니다.

적용 범위
MySQL의 개념·동작을 확인해야 하는 공개 웹 환경
출처 확인일
2026-07-23
최종 검토
2026-07-23
오류·수정 제보 (새 창에서 열림)

정상 동작 조건

요약

MySQL은 서버가 클라이언트의 연결 요청을 받아 데이터를 저장·조회·수정하는 관계형 데이터베이스입니다. 클라이언트는 Unix 소켓 파일 또는 TCP/IP 포트로 서버에 접속하며, 연결이 실패하거나 슬롯이 모두 사용되면 접속 오류가 발생합니다.

확인 절차

MySQL은 클라이언트의 연결 요청을 받아 SQL로 데이터를 저장·조회·수정하는 관계형 데이터베이스 서버입니다. 웹 애플리케이션이 데이터를 읽고 쓰려면 먼저 데이터베이스 서버 프로세스(mysqld)에 연결해야 하며, 이 연결 구간에서 문제가 생기면 애플리케이션 화면에는 흔히 서버 오류로 나타납니다.

MySQL은 데이터 저장소이자 별도의 연결 지점입니다. 애플리케이션 오류가 MySQL 연결 구간에서 비롯됐는지 나눠서 확인해야 합니다.

클라이언트가 서버에 연결하는 경로

MySQL 클라이언트는 두 가지 경로로 서버에 접속합니다.

연결 경로사용 조건기본값
Unix 소켓 파일호스트를 지정하지 않거나 localhost로 접속하는 로컬 연결/tmp/mysql.sock
TCP/IP 포트로컬·원격 모두 가능포트 3306

연결이 실패할 때 나타나는 Can't connect to ... MySQL server 오류는 원인 자체가 아니라 관찰된 결과입니다. 공식 문서는 다음과 같은 조건을 확인 대상으로 제시합니다. [Observation]

  • mysqld 프로세스가 실행 중인지 (ps xa | grep mysqld)
  • 클라이언트가 사용하는 소켓 경로 또는 포트가 서버 설정과 일치하는지
  • 방화벽이 해당 포트를 차단하는지
  • 서버가 --skip_networking으로 TCP/IP를 막았거나 bind_address가 특정 주소만 허용하는지

동시 연결 수 한계

MySQL 서버는 동시에 받을 수 있는 연결 수를 max_connections 시스템 변수로 제한합니다. 모든 연결 슬롯이 사용 중일 때 새 클라이언트가 접속을 시도하면 Too many connections 오류가 발생합니다.

실제 허용 한계는 max_connections + 1이며, 추가 한 자리는 CONNECTION_ADMIN(또는 폐기 예정인 SUPER) 권한을 가진 계정에만 예약됩니다. 이 자리는 슬롯이 가득 찬 상황에서도 관리자가 접속해 SHOW PROCESSLIST로 원인을 진단할 수 있게 하기 위한 것입니다. [Observation]

연결 슬롯을 늘리려면 max_connections 값을 상향해야 합니다.

-- 실행 중인 서버의 동시 연결 한계를 상향 (재시작 시 초기화됨)SET GLOBAL max_connections = 1000;

설정 파일(my.cnf / my.ini)의 [mysqld] 섹션에 지정하면 재시작 이후에도 유지됩니다.

[Hypothesis] 슬롯 부족이 반복된다면 값 상향만으로는 근본 원인을 해결하지 못할 수 있습니다. 연결이 반환되지 않고 누적되는지(커넥션 누수), 연결 풀 설정이 적정한지를 함께 확인하는 것이 안전한 접근입니다. 이 판단은 개별 애플리케이션 관찰이 필요하므로 공식 문서만으로 단정하지 않습니다.

변경 시 주의할 점

  • SET GLOBAL max_connections는 실행 중인 서버에만 적용되며 재시작하면 초기화됩니다. 영구 적용은 설정 파일에 함께 반영해야 되돌아가지 않습니다.
  • max_connections를 무제한에 가깝게 올리면 각 연결이 소비하는 메모리 때문에 서버 자원이 고갈될 수 있으므로, 한 번에 크게 올리기 전에 자원 여유를 확인합니다.
  • CONNECTION_ADMIN 권한은 진단용 예약 슬롯을 쓰기 위한 것이므로 일반 사용자 계정에 부여하지 않습니다.

관련 오류·증상

400.4Kb

MySQL 공식 원문에 표시된 400.4Kb 항목의 문구를 확인하는 문서입니다.

as source positions are invalid.

MySQL 공식 원문에 표시된 as source positions are invalid. 항목의 문구를 확인하는 문서입니다.

ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = LOCAL|<UUID> cannot

MySQL 공식 원문에 표시된 ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = LOCAL|<UUID> cannot 항목의 문구를 확인하는 문서입니다.

ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = <UUID> cannot be

MySQL 공식 원문에 표시된 ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS = <UUID> cannot be 항목의 문구를 확인하는 문서입니다.

binary logs. Replicate the missing transactions from elsewhere, or

MySQL 공식 원문에 표시된 binary logs. Replicate the missing transactions from elsewhere, or 항목의 문구를 확인하는 문서입니다.

binlog_expire_logs_seconds cannot be used together. Please use

MySQL 공식 원문에 표시된 binlog_expire_logs_seconds cannot be used together. Please use 항목의 문구를 확인하는 문서입니다.

binlog_format=STATEMENT. It cannot be guaranteed that the SELECT

MySQL 공식 원문에 표시된 binlog_format=STATEMENT. It cannot be guaranteed that the SELECT 항목의 문구를 확인하는 문서입니다.

blocked. As part of the process of starting Group Replication

MySQL 공식 원문에 표시된 blocked. As part of the process of starting Group Replication 항목의 문구를 확인하는 문서입니다.

bytes exceeded. Consumed %llu bytes.

MySQL 공식 원문에 표시된 bytes exceeded. Consumed %llu bytes. 항목의 문구를 확인하는 문서입니다.

cannot be dropped or renamed.

MySQL 공식 원문에 표시된 cannot be dropped or renamed. 항목의 문구를 확인하는 문서입니다.

cannot be parsed.

MySQL 공식 원문에 표시된 cannot be parsed. 항목의 문구를 확인하는 문서입니다.

Cannot discard the table.

MySQL 공식 원문에 표시된 Cannot discard the table. 항목의 문구를 확인하는 문서입니다.

cannot execute this statement

MySQL 공식 원문에 표시된 cannot execute this statement 항목의 문구를 확인하는 문서입니다.

Cannot upgrade server earlier than 5.7 to 8.0

MySQL 공식 원문에 표시된 Cannot upgrade server earlier than 5.7 to 8.0 항목의 문구를 확인하는 문서입니다.

Can't get working directory (errno: %d)

MariaDB 공식 원문에 표시된 Can't get working directory (errno: %d) 항목의 문구를 확인하는 문서입니다.

Can't open file: '%s' (OS errno: %d - %s)

MySQL 공식 원문에 표시된 Can't open file: '%s' (OS errno: %d - %s) 항목의 문구를 확인하는 문서입니다.

characters exceeded the size of the internal copy buffer for file

MySQL 공식 원문에 표시된 characters exceeded the size of the internal copy buffer for file 항목의 문구를 확인하는 문서입니다.

Check constraint '%s' is not found in the table.

MySQL 공식 원문에 표시된 Check constraint '%s' is not found in the table. 항목의 문구를 확인하는 문서입니다.

Check constraint '%s' cannot refer to a row value.

MySQL 공식 원문에 표시된 Check constraint '%s' cannot refer to a row value. 항목의 문구를 확인하는 문서입니다.

Column prefixes for externally stored columns exceeded the

MySQL 공식 원문에 표시된 Column prefixes for externally stored columns exceeded the 항목의 문구를 확인하는 문서입니다.

command encountered a failure. %s

MySQL 공식 원문에 표시된 command encountered a failure. %s 항목의 문구를 확인하는 문서입니다.

connecting. Now, if a client has an expired password,

MySQL 공식 원문에 표시된 connecting. Now, if a client has an expired password, 항목의 문구를 확인하는 문서입니다.

Data for some columns is missing.

MySQL 공식 원문에 표시된 Data for some columns is missing. 항목의 문구를 확인하는 문서입니다.

determines which (if any) rows are updated. This order cannot be

MySQL 공식 원문에 표시된 determines which (if any) rows are updated. This order cannot be 항목의 문구를 확인하는 문서입니다.

disabled if you specify a value of 0 explicitly for

MySQL 공식 원문에 표시된 disabled if you specify a value of 0 explicitly for 항목의 문구를 확인하는 문서입니다.

duplicate values or invalid values.

MySQL 공식 원문에 표시된 duplicate values or invalid values. 항목의 문구를 확인하는 문서입니다.

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

로컬 MySQL 서버에 연결할 때 서버 데몬 또는 서비스가 실행되지 않아 표시되는 오류 메시지를 식별합니다.

Error on rename of '%s' to '%s' (errno: %d)

MariaDB 공식 원문에 표시된 Error on rename of '%s' to '%s' (errno: %d) 항목의 문구를 확인하는 문서입니다.

exceeded. Consumed %llu bytes.

MySQL 공식 원문에 표시된 exceeded. Consumed %llu bytes. 항목의 문구를 확인하는 문서입니다.

execution contained invalid foreign key names.

MySQL 공식 원문에 표시된 execution contained invalid foreign key names. 항목의 문구를 확인하는 문서입니다.

execution time exceeded

MySQL 공식 원문에 표시된 execution time exceeded 항목의 문구를 확인하는 문서입니다.

(expire_logs_days is deprecated)

MySQL 공식 원문에 표시된 (expire_logs_days is deprecated) 항목의 문구를 확인하는 문서입니다.

failed.

MySQL 공식 원문에 표시된 failed. 항목의 문구를 확인하는 문서입니다.

Failed to initialize system variables.

MySQL 공식 원문에 표시된 Failed to initialize system variables. 항목의 문구를 확인하는 문서입니다.

Failed to set datadir to \'%s\' (OS errno: %d - %s)

MySQL 공식 원문에 표시된 Failed to set datadir to \'%s\' (OS errno: %d - %s) 항목의 문구를 확인하는 문서입니다.

Failed to set persisted options.

MySQL 공식 원문에 표시된 Failed to set persisted options. 항목의 문구를 확인하는 문서입니다.

Failed to upgrade server.

MySQL 공식 원문에 표시된 Failed to upgrade server. 항목의 문구를 확인하는 문서입니다.

failure.

MySQL 공식 원문에 표시된 failure. 항목의 문구를 확인하는 문서입니다.

failure to read the key file.

MySQL 공식 원문에 표시된 failure to read the key file. 항목의 문구를 확인하는 문서입니다.

Fatal error in defaults handling. Program aborted!

MySQL 공식 원문에 표시된 Fatal error in defaults handling. Program aborted! 항목의 문구를 확인하는 문서입니다.

File Not Found and Similar Errors

MySQL 공식 원문에 표시된 File Not Found and Similar Errors 항목의 문구를 확인하는 문서입니다.

files cannot be found.

MySQL 공식 원문에 표시된 files cannot be found. 항목의 문구를 확인하는 문서입니다.

Got a packet bigger than 'max_allowed_packet' bytes

MariaDB 또는 MySQL 오류 코드 1153의 오류 메시지를 식별합니다.

Group Replication failed to start if certain required variables

MySQL 공식 원문에 표시된 Group Replication failed to start if certain required variables 항목의 문구를 확인하는 문서입니다.

Fatal error: Illegal or unknown default time zone '%s'

MySQL 공식 원문에 표시된 Fatal error: Illegal or unknown default time zone '%s' 항목의 문구를 확인하는 문서입니다.

importing and exporting data are disabled

MySQL 공식 원문에 표시된 importing and exporting data are disabled 항목의 문구를 확인하는 문서입니다.

In strict SQL mode, assignment of invalid values to

MySQL 공식 원문에 표시된 In strict SQL mode, assignment of invalid values to 항목의 문구를 확인하는 문서입니다.

InnoDB: Invalid page size=%lu.

MySQL 공식 원문에 표시된 InnoDB: Invalid page size=%lu. 항목의 문구를 확인하는 문서입니다.

syntax error in innodb_log_group_home_dir

MySQL 공식 원문에 표시된 syntax error in innodb_log_group_home_dir 항목의 문구를 확인하는 문서입니다.

syntax error in innodb_undo_directory

MySQL 공식 원문에 표시된 syntax error in innodb_undo_directory 항목의 문구를 확인하는 문서입니다.

Inserted values cannot be logged correctly.

MySQL 공식 원문에 표시된 Inserted values cannot be logged correctly. 항목의 문구를 확인하는 문서입니다.

invalid.

MySQL 공식 원문에 표시된 invalid. 항목의 문구를 확인하는 문서입니다.

Invalid audit log file content: '%s'

MySQL 공식 원문에 표시된 Invalid audit log file content: '%s' 항목의 문구를 확인하는 문서입니다.

invalid character '%c'.

MySQL 공식 원문에 표시된 invalid character '%c'. 항목의 문구를 확인하는 문서입니다.

invalid in function %s.

MySQL 공식 원문에 표시된 invalid in function %s. 항목의 문구를 확인하는 문서입니다.

invalid or the current user lacks privileges to execute the

MySQL 공식 원문에 표시된 invalid or the current user lacks privileges to execute the 항목의 문구를 확인하는 문서입니다.

Invalid redo log header checksum.

MySQL 공식 원문에 표시된 Invalid redo log header checksum. 항목의 문구를 확인하는 문서입니다.

Invalid VCPU range %u-%u.

MySQL 공식 원문에 표시된 Invalid VCPU range %u-%u. 항목의 문구를 확인하는 문서입니다.

JSON_TABLE() failed if no default

MySQL 공식 원문에 표시된 JSON_TABLE() failed if no default 항목의 문구를 확인하는 문서입니다.

LOAD BULK DATA into table '%s' failed: %s

MySQL 공식 원문에 표시된 LOAD BULK DATA into table '%s' failed: %s 항목의 문구를 확인하는 문서입니다.

LOCAL|<UUID> and SOURCE_AUTO_POSITION = 1 cannot be used

MySQL 공식 원문에 표시된 LOCAL|<UUID> and SOURCE_AUTO_POSITION = 1 cannot be used 항목의 문구를 확인하는 문서입니다.

longer than 511 bytes; consider using the SUBSTRING() function

MySQL 공식 원문에 표시된 longer than 511 bytes; consider using the SUBSTRING() function 항목의 문구를 확인하는 문서입니다.

Access denied for user '%s'@'%s' (using password: %s)

MariaDB 오류 코드 1045의 오류 문자열과 SQLSTATE를 대조하는 오류 식별 문서입니다.

Access denied; you need (at least one of) the %s privilege(s) for this operation

MariaDB 오류 코드 1227의 오류 메시지와 식별 값을 대조합니다.

Cannot truncate a table referenced in a foreign key constraint (%s)

MariaDB 오류 코드 1701의 오류 메시지를 로그 또는 클라이언트 출력에서 식별하는 문서입니다.

Column count doesn't match value count

MariaDB 오류 코드 1058의 오류 문자열과 SQLSTATE를 대조해 오류를 식별합니다.

Disk full (%s); waiting for someone to free some space...

MariaDB 오류 코드 1021(ER_DISK_FULL)의 오류 메시지를 현재 화면 또는 로그와 대조하는 방법입니다.

Duplicate entry '%s' for key %d

MariaDB 오류 코드 1062의 오류 문자열을 현재 화면 또는 로그와 대조하는 문서입니다.

'%s' is locked against change

MariaDB 오류 코드 1027(ER_FILE_USED) 메시지를 화면 또는 로그에서 대조해 식별합니다.

Out of memory; restart server and try again (needed %d bytes)

MariaDB 오류 코드 1037(ER_OUTOFMEMORY)의 메시지를 화면 또는 로그에서 식별합니다.

Out of memory; check if mysqld or some other process uses all available memory; if not, you may have to use 'ulimit' to allow mysqld to use more memory or you can add more swap space

MariaDB 오류 코드 1041(ER_OUT_OF_RESOURCES)과 오류 메시지를 대조해 메모리 부족 오류를 식별합니다.

Plugin '%s' is not loaded

MariaDB 오류 코드 1524와 SQLSTATE HY000에 해당하는 플러그인 미로딩 오류 메시지를 식별합니다.

Query execution was interrupted (max_statement_time exceeded)

MariaDB 오류 코드 1969(ER_STATEMENT_TIMEOUT)의 오류 메시지 식별 문서입니다.

Table storage engine for '%s' doesn't have this option

MariaDB 오류 코드 1031(ER_ILLEGAL_HA)의 메시지를 로그 또는 클라이언트 오류 출력과 대조하는 문서입니다.

Transaction isolation level can't be changed while a transaction is in progress

MariaDB 오류 코드 1568과 SQLSTATE 25001의 오류 메시지를 대조해 식별합니다.

Message: A primary key index cannot be invisible

MySQL 공식 원문에 표시된 Message: A primary key index cannot be invisible 항목의 문구를 확인하는 문서입니다.

Message: A VALUES clause cannot use DEFAULT values, unless used as

MySQL 공식 원문에 표시된 Message: A VALUES clause cannot use DEFAULT values, unless used as 항목의 문구를 확인하는 문서입니다.

Message: A window which depends on another cannot define

MySQL 공식 원문에 표시된 Message: A window which depends on another cannot define 항목의 문구를 확인하는 문서입니다.

Message: Access denied for user '%s'@'%s'

MySQL 공식 원문에 표시된 Message: Access denied for user '%s'@'%s' 항목의 문구를 확인하는 문서입니다.

Message: Access denied for user '%s'@'%s'. Account is blocked for

MySQL 공식 원문에 표시된 Message: Access denied for user '%s'@'%s'. Account is blocked for 항목의 문구를 확인하는 문서입니다.

Message: Access denied for user '%s'@'%s' to database '%s'

MySQL 공식 원문에 표시된 Message: Access denied for user '%s'@'%s' to database '%s' 항목의 문구를 확인하는 문서입니다.

Message: Access denied for user '%s'@'%s' (using password: %s)

MySQL 공식 원문에 표시된 Message: Access denied for user '%s'@'%s' (using password: %s) 항목의 문구를 확인하는 문서입니다.

Message: Access denied trying to change to user '%s'@'%s' (using

MySQL 공식 원문에 표시된 Message: Access denied trying to change to user '%s'@'%s' (using 항목의 문구를 확인하는 문서입니다.

Message: Access denied; you need (at least one of) the %s

MySQL 공식 원문에 표시된 Message: Access denied; you need (at least one of) the %s 항목의 문구를 확인하는 문서입니다.

Message: Access denied; you need %s privileges for this operation

MySQL 공식 원문에 표시된 Message: Access denied; you need %s privileges for this operation 항목의 문구를 확인하는 문서입니다.

Message: Aggregate bitwise functions cannot accept arguments

MySQL 공식 원문에 표시된 Message: Aggregate bitwise functions cannot accept arguments 항목의 문구를 확인하는 문서입니다.

Message: AGGREGATE is not supported for stored functions

MySQL 공식 원문에 표시된 Message: AGGREGATE is not supported for stored functions 항목의 문구를 확인하는 문서입니다.

Message: Attribute %s is too long. The maximum length is %u

MySQL 공식 원문에 표시된 Message: Attribute %s is too long. The maximum length is %u 항목의 문구를 확인하는 문서입니다.

Message: Authentication plugin '%s' cannot be loaded: %s

MySQL 공식 원문에 표시된 Message: Authentication plugin '%s' cannot be loaded: %s 항목의 문구를 확인하는 문서입니다.

Message: Authentication plugin's registration failed.

MySQL 공식 원문에 표시된 Message: Authentication plugin's registration failed. 항목의 문구를 확인하는 문서입니다.

Message: AuthId `%s`@`%s` is set as mandatory_roles. Cannot grant

MySQL 공식 원문에 표시된 Message: AuthId `%s`@`%s` is set as mandatory_roles. Cannot grant 항목의 문구를 확인하는 문서입니다.

Message: Bad syntax in replicate-rewrite-db - missing '->'!

MySQL 공식 원문에 표시된 Message: Bad syntax in replicate-rewrite-db - missing '->'! 항목의 문구를 확인하는 문서입니다.

Message: Being purged log %s was not found

MySQL 공식 원문에 표시된 Message: Being purged log %s was not found 항목의 문구를 확인하는 문서입니다.

Message: Built-in plugins cannot be deleted

MySQL 공식 원문에 표시된 Message: Built-in plugins cannot be deleted 항목의 문구를 확인하는 문서입니다.

Message: Bulk loader failed, mysql_load->load returned an

MySQL 공식 원문에 표시된 Message: Bulk loader failed, mysql_load->load returned an 항목의 문구를 확인하는 문서입니다.

Message: Bulk reader failed to initialize libcurl

MySQL 공식 원문에 표시된 Message: Bulk reader failed to initialize libcurl 항목의 문구를 확인하는 문서입니다.

Message: Cannot acquire scheme load service implementation for

MySQL 공식 원문에 표시된 Message: Cannot acquire scheme load service implementation for 항목의 문구를 확인하는 문서입니다.

Message: Cannot add foreign key constraint

MySQL 공식 원문에 표시된 Message: Cannot add foreign key constraint 항목의 문구를 확인하는 문서입니다.

Message: Cannot add or update a child row: a foreign key

MySQL 공식 원문에 표시된 Message: Cannot add or update a child row: a foreign key 항목의 문구를 확인하는 문서입니다.

Message: Cannot allocate the keycache

MySQL 공식 원문에 표시된 Message: Cannot allocate the keycache 항목의 문구를 확인하는 문서입니다.

Message: Cannot CAST value to JSON.

MySQL 공식 원문에 표시된 Message: Cannot CAST value to JSON. 항목의 문구를 확인하는 문서입니다.

Message: Cannot cast value to %s.

MySQL 공식 원문에 표시된 Message: Cannot cast value to %s. 항목의 문구를 확인하는 문서입니다.

Message: Cannot change column type INPLACE

MySQL 공식 원문에 표시된 Message: Cannot change column type INPLACE 항목의 문구를 확인하는 문서입니다.

Message: Cannot change the binary logging format inside a stored

MySQL 공식 원문에 표시된 Message: Cannot change the binary logging format inside a stored 항목의 문구를 확인하는 문서입니다.

Message: Cannot change the binlog direct flag inside a stored

MySQL 공식 원문에 표시된 Message: Cannot change the binlog direct flag inside a stored 항목의 문구를 확인하는 문서입니다.

Message: Cannot change the sql_log_bin inside a stored function or

MySQL 공식 원문에 표시된 Message: Cannot change the sql_log_bin inside a stored function or 항목의 문구를 확인하는 문서입니다.

Message: Cannot change the value of variable %s without binary log

MySQL 공식 원문에 표시된 Message: Cannot change the value of variable %s without binary log 항목의 문구를 확인하는 문서입니다.

Message: Cannot clean up worker info tables. Additional error

MySQL 공식 원문에 표시된 Message: Cannot clean up worker info tables. Additional error 항목의 문구를 확인하는 문서입니다.

Message: Cannot convert string '%s' from %s to %s

MySQL 공식 원문에 표시된 Message: Cannot convert string '%s' from %s to %s 항목의 문구를 확인하는 문서입니다.

Message: Cannot create FULLTEXT index on materialized subquery

MySQL 공식 원문에 표시된 Message: Cannot create FULLTEXT index on materialized subquery 항목의 문구를 확인하는 문서입니다.

Message: Cannot create FULLTEXT index on temporary InnoDB table

MySQL 공식 원문에 표시된 Message: Cannot create FULLTEXT index on temporary InnoDB table 항목의 문구를 확인하는 문서입니다.

Message: Cannot create index on virtual column whose base column

MySQL 공식 원문에 표시된 Message: Cannot create index on virtual column whose base column 항목의 문구를 확인하는 문서입니다.

Message: Cannot create redo log archive file '%s' (OS errno: %d -

MySQL 공식 원문에 표시된 Message: Cannot create redo log archive file '%s' (OS errno: %d - 항목의 문구를 확인하는 문서입니다.

Message: Cannot create temporary table with partitions

MySQL 공식 원문에 표시된 Message: Cannot create temporary table with partitions 항목의 문구를 확인하는 문서입니다.

Message: Cannot delete or update a parent row: a foreign key

MySQL 공식 원문에 표시된 Message: Cannot delete or update a parent row: a foreign key 항목의 문구를 확인하는 문서입니다.

Message: Cannot DISCARD/IMPORT tablespace associated with

MySQL 공식 원문에 표시된 Message: Cannot DISCARD/IMPORT tablespace associated with 항목의 문구를 확인하는 문서입니다.

Message: Cannot drop default keycache

MySQL 공식 원문에 표시된 Message: Cannot drop default keycache 항목의 문구를 확인하는 문서입니다.

Message: Cannot drop or rename FTS_DOC_ID

MySQL 공식 원문에 표시된 Message: Cannot drop or rename FTS_DOC_ID 항목의 문구를 확인하는 문서입니다.

Message: Cannot drop table '%s' referenced by a foreign key

MySQL 공식 원문에 표시된 Message: Cannot drop table '%s' referenced by a foreign key 항목의 문구를 확인하는 문서입니다.

Message: Cannot execute statement: impossible to write to binary

MySQL 공식 원문에 표시된 Message: Cannot execute statement: impossible to write to binary 항목의 문구를 확인하는 문서입니다.

Message: Cannot execute statements with implicit commit inside a

MySQL 공식 원문에 표시된 Message: Cannot execute statements with implicit commit inside a 항목의 문구를 확인하는 문서입니다.

Message: Cannot have more than one value for this type of %s

MySQL 공식 원문에 표시된 Message: Cannot have more than one value for this type of %s 항목의 문구를 확인하는 문서입니다.

Message: Cannot load from %s.%s. The table is probably corrupted

MySQL 공식 원문에 표시된 Message: Cannot load from %s.%s. The table is probably corrupted 항목의 문구를 확인하는 문서입니다.

Message: Cannot modify

MySQL 공식 원문에 표시된 Message: Cannot modify 항목의 문구를 확인하는 문서입니다.

Message: Cannot modify @@session.binlog_format inside a

MySQL 공식 원문에 표시된 Message: Cannot modify @@session.binlog_format inside a 항목의 문구를 확인하는 문서입니다.

Message: Cannot modify @@session.sql_log_bin inside a transaction

MySQL 공식 원문에 표시된 Message: Cannot modify @@session.sql_log_bin inside a transaction 항목의 문구를 확인하는 문서입니다.

Message: Cannot open %s; check privileges, or remove syseventlog

MySQL 공식 원문에 표시된 Message: Cannot open %s; check privileges, or remove syseventlog 항목의 문구를 확인하는 문서입니다.

Message: Cannot open table for trigger `%s`.`%s`

MySQL 공식 원문에 표시된 Message: Cannot open table for trigger `%s`.`%s` 항목의 문구를 확인하는 문서입니다.

Message: Cannot perform operation as InnoDB redo logging is

MySQL 공식 원문에 표시된 Message: Cannot perform operation as InnoDB redo logging is 항목의 문구를 확인하는 문서입니다.

Message: Cannot register service implementation '%s' provided by

MySQL 공식 원문에 표시된 Message: Cannot register service implementation '%s' provided by 항목의 문구를 확인하는 문서입니다.

Message: Cannot remove all partitions, use DROP TABLE instead

MySQL 공식 원문에 표시된 Message: Cannot remove all partitions, use DROP TABLE instead 항목의 문구를 확인하는 문서입니다.

Message: Cannot replace hidden FTS_DOC_ID with a user-visible one

MySQL 공식 원문에 표시된 Message: Cannot replace hidden FTS_DOC_ID with a user-visible one 항목의 문구를 확인하는 문서입니다.

Message: Cannot satisfy dependency for service '%s' required by

MySQL 공식 원문에 표시된 Message: Cannot satisfy dependency for service '%s' required by 항목의 문구를 확인하는 문서입니다.

Message: Cannot schedule event %s, relay-log name %s, position %s

MySQL 공식 원문에 표시된 Message: Cannot schedule event %s, relay-log name %s, position %s 항목의 문구를 확인하는 문서입니다.

Message: Cannot set mandatory_roles: AuthId `%s`@`%s` has '%s'

MySQL 공식 원문에 표시된 Message: Cannot set mandatory_roles: AuthId `%s`@`%s` has '%s' 항목의 문구를 확인하는 문서입니다.

Message: cannot silently convert NULL values, as required in this

MySQL 공식 원문에 표시된 Message: cannot silently convert NULL values, as required in this 항목의 문구를 확인하는 문서입니다.

Message: Cannot update GTID_PURGED with the Group Replication

MySQL 공식 원문에 표시된 Message: Cannot update GTID_PURGED with the Group Replication 항목의 문구를 확인하는 문서입니다.

Message: Cannot use MAXVALUE as value in VALUES IN

MySQL 공식 원문에 표시된 Message: Cannot use MAXVALUE as value in VALUES IN 항목의 문구를 확인하는 문서입니다.

Message: Case not found for CASE statement

MySQL 공식 원문에 표시된 Message: Case not found for CASE statement 항목의 문구를 확인하는 문서입니다.

Message: Changing %s not supported on this platform. Falling back

MySQL 공식 원문에 표시된 Message: Changing %s not supported on this platform. Falling back 항목의 문구를 확인하는 문서입니다.

Message: Character set '%s' cannot be used in conjunction with

MySQL 공식 원문에 표시된 Message: Character set '%s' cannot be used in conjunction with 항목의 문구를 확인하는 문서입니다.

Message: CHECK OPTION failed '%s.%s'

MySQL 공식 원문에 표시된 Message: CHECK OPTION failed '%s.%s' 항목의 문구를 확인하는 문서입니다.

Message: Column %d of table '%s.%s' cannot be converted from type

MySQL 공식 원문에 표시된 Message: Column %d of table '%s.%s' cannot be converted from type 항목의 문구를 확인하는 문서입니다.

Message: Column '%s' cannot be null

MySQL 공식 원문에 표시된 Message: Column '%s' cannot be null 항목의 문구를 확인하는 문서입니다.

Message: Column '%s' cannot be part of FULLTEXT index

MySQL 공식 원문에 표시된 Message: Column '%s' cannot be part of FULLTEXT index 항목의 문구를 확인하는 문서입니다.

Message: Column '%s' has a functional index dependency and cannot

MySQL 공식 원문에 표시된 Message: Column '%s' has a functional index dependency and cannot 항목의 문구를 확인하는 문서입니다.

Message: Command not supported by pluggable protocols

MySQL 공식 원문에 표시된 Message: Command not supported by pluggable protocols 항목의 문구를 확인하는 문서입니다.

Message: Comment for field '%s' is too long (max = %lu)

MySQL 공식 원문에 표시된 Message: Comment for field '%s' is too long (max = %lu) 항목의 문구를 확인하는 문서입니다.

Message: Comment for index '%s' is too long (max = %lu)

MySQL 공식 원문에 표시된 Message: Comment for index '%s' is too long (max = %lu) 항목의 문구를 확인하는 문서입니다.

Message: Comment for routine '%s' is too long (max = %lu)

MySQL 공식 원문에 표시된 Message: Comment for routine '%s' is too long (max = %lu) 항목의 문구를 확인하는 문서입니다.

Message: Comment for %s '%s' contains an invalid %s character

MySQL 공식 원문에 표시된 Message: Comment for %s '%s' contains an invalid %s character 항목의 문구를 확인하는 문서입니다.

Message: Comment for table partition '%s' is too long (max = %lu)

MySQL 공식 원문에 표시된 Message: Comment for table partition '%s' is too long (max = %lu) 항목의 문구를 확인하는 문서입니다.

Message: Comment for table '%s' is too long (max = %lu)

MySQL 공식 원문에 표시된 Message: Comment for table '%s' is too long (max = %lu) 항목의 문구를 확인하는 문서입니다.

Message: Comment for tablespace '%s' is too long (max = %lu)

MySQL 공식 원문에 표시된 Message: Comment for tablespace '%s' is too long (max = %lu) 항목의 문구를 확인하는 문서입니다.

Message: Compression failed with the following error : %s

MySQL 공식 원문에 표시된 Message: Compression failed with the following error : %s 항목의 문구를 확인하는 문서입니다.

Message: Compression protocol not supported with asynchronous

MySQL 공식 원문에 표시된 Message: Compression protocol not supported with asynchronous 항목의 문구를 확인하는 문서입니다.

Message: Couldn't create channel: Channel name is either invalid

MySQL 공식 원문에 표시된 Message: Couldn't create channel: Channel name is either invalid 항목의 문구를 확인하는 문서입니다.

Message: Create/Alter user has failed, Configured user realm as

MySQL 공식 원문에 표시된 Message: Create/Alter user has failed, Configured user realm as 항목의 문구를 확인하는 문서입니다.

Message: Create table/tablespace '%s' failed, as disk is full

MySQL 공식 원문에 표시된 Message: Create table/tablespace '%s' failed, as disk is full 항목의 문구를 확인하는 문서입니다.

Message: Creation context of event `%s`.`%s` is invalid

MySQL 공식 원문에 표시된 Message: Creation context of event `%s`.`%s` is invalid 항목의 문구를 확인하는 문서입니다.

Message: Creation context of view `%s`.`%s' is invalid

MySQL 공식 원문에 표시된 Message: Creation context of view `%s`.`%s' is invalid 항목의 문구를 확인하는 문서입니다.

Message: %d error logging component(s) failed to flush. For

MySQL 공식 원문에 표시된 Message: %d error logging component(s) failed to flush. For 항목의 문구를 확인하는 문서입니다.

Message: Data Dictionary initialization failed.

MySQL 공식 원문에 표시된 Message: Data Dictionary initialization failed. 항목의 문구를 확인하는 문서입니다.

Message: Data for column '%s' too long

MySQL 공식 원문에 표시된 Message: Data for column '%s' too long 항목의 문구를 확인하는 문서입니다.

Message: Data too long for column '%s' at row %ld

MySQL 공식 원문에 표시된 Message: Data too long for column '%s' at row %ld 항목의 문구를 확인하는 문서입니다.

Message: Data too long for condition item '%s'

MySQL 공식 원문에 표시된 Message: Data too long for condition item '%s' 항목의 문구를 확인하는 문서입니다.

Message: Decoding of base64 string failed

MySQL 공식 원문에 표시된 Message: Decoding of base64 string failed 항목의 문구를 확인하는 문서입니다.

Message: DEFAULT function cannot be used with default value

MySQL 공식 원문에 표시된 Message: DEFAULT function cannot be used with default value 항목의 문구를 확인하는 문서입니다.

Message: Default value expression of column '%s' cannot refer user

MySQL 공식 원문에 표시된 Message: Default value expression of column '%s' cannot refer user 항목의 문구를 확인하는 문서입니다.

Message: Definer clause is missing in Trigger of Table %s. Rebuild

MySQL 공식 원문에 표시된 Message: Definer clause is missing in Trigger of Table %s. Rebuild 항목의 문구를 확인하는 문서입니다.

Message: Definition of %s '%s.%s' contains an invalid %s character

MySQL 공식 원문에 표시된 Message: Definition of %s '%s.%s' contains an invalid %s character 항목의 문구를 확인하는 문서입니다.

Message: Determining the real path for '%s' failed with error

MySQL 공식 원문에 표시된 Message: Determining the real path for '%s' failed with error 항목의 문구를 확인하는 문서입니다.

Message: Dictionary object name '%s' is invalid. (%s)

MySQL 공식 원문에 표시된 Message: Dictionary object name '%s' is invalid. (%s) 항목의 문구를 확인하는 문서입니다.

Message: DNS SRV lookup failed with error : %d

MySQL 공식 원문에 표시된 Message: DNS SRV lookup failed with error : %d 항목의 문구를 확인하는 문서입니다.

Message: Engine cannot be used in partitioned tables

MySQL 공식 원문에 표시된 Message: Engine cannot be used in partitioned tables 항목의 문구를 확인하는 문서입니다.

Message: Error: Invalid %s

MySQL 공식 원문에 표시된 Message: Error: Invalid %s 항목의 문구를 확인하는 문서입니다.

Message: Event Scheduler: Cannot initialize the scheduler thread

MySQL 공식 원문에 표시된 Message: Event Scheduler: Cannot initialize the scheduler thread 항목의 문구를 확인하는 문서입니다.

Message: Exceeded max number of values per record for multi-valued

MySQL 공식 원문에 표시된 Message: Exceeded max number of values per record for multi-valued 항목의 문구를 확인하는 문서입니다.

Message: Exceeded max total length of values per record for

MySQL 공식 원문에 표시된 Message: Exceeded max total length of values per record for 항목의 문구를 확인하는 문서입니다.

Message: Expression of generated column '%s' cannot refer user or

MySQL 공식 원문에 표시된 Message: Expression of generated column '%s' cannot refer user or 항목의 문구를 확인하는 문서입니다.

Message: Failed initializing relay log position: %s

MySQL 공식 원문에 표시된 Message: Failed initializing relay log position: %s 항목의 문구를 확인하는 문서입니다.

Message: Failed on fseek()

MySQL 공식 원문에 표시된 Message: Failed on fseek() 항목의 문구를 확인하는 문서입니다.

Message: Failed purging old relay logs: %s

MySQL 공식 원문에 표시된 Message: Failed purging old relay logs: %s 항목의 문구를 확인하는 문서입니다.

Message: Failed to access directory for --secure-file-priv. Please

MySQL 공식 원문에 표시된 Message: Failed to access directory for --secure-file-priv. Please 항목의 문구를 확인하는 문서입니다.

Message: Failed to acquire lock on user management service, unable

MySQL 공식 원문에 표시된 Message: Failed to acquire lock on user management service, unable 항목의 문구를 확인하는 문서입니다.

Message: Failed to add the foreign key constraint. Missing column

MySQL 공식 원문에 표시된 Message: Failed to add the foreign key constraint. Missing column 항목의 문구를 확인하는 문서입니다.

Message: Failed to add the foreign key constraint. Missing index

MySQL 공식 원문에 표시된 Message: Failed to add the foreign key constraint. Missing index 항목의 문구를 확인하는 문서입니다.

Message: Failed to add the foreign key constraint '%s' to system

MySQL 공식 원문에 표시된 Message: Failed to add the foreign key constraint '%s' to system 항목의 문구를 확인하는 문서입니다.

Message: Failed to alter: %s

MySQL 공식 원문에 표시된 Message: Failed to alter: %s 항목의 문구를 확인하는 문서입니다.

Message: Failed to ALTER %s %s

MySQL 공식 원문에 표시된 Message: Failed to ALTER %s %s 항목의 문구를 확인하는 문서입니다.

Message: Failed to bootstrap components infrastructure.

MySQL 공식 원문에 표시된 Message: Failed to bootstrap components infrastructure. 항목의 문구를 확인하는 문서입니다.

Message: Failed to create %s

MySQL 공식 원문에 표시된 Message: Failed to create %s 항목의 문구를 확인하는 문서입니다.

Message: Failed to create %s(file: '%s', errno %d)

MySQL 공식 원문에 표시된 Message: Failed to create %s(file: '%s', errno %d) 항목의 문구를 확인하는 문서입니다.

Message: Failed to CREATE %s %s

MySQL 공식 원문에 표시된 Message: Failed to CREATE %s %s 항목의 문구를 확인하는 문서입니다.

Message: Failed to create schema directory '%s' (errno: %d - %s)

MySQL 공식 원문에 표시된 Message: Failed to create schema directory '%s' (errno: %d - %s) 항목의 문구를 확인하는 문서입니다.

Message: Failed to create specific handler file

MySQL 공식 원문에 표시된 Message: Failed to create specific handler file 항목의 문구를 확인하는 문서입니다.

Message: Failed to drop %s

MySQL 공식 원문에 표시된 Message: Failed to drop %s 항목의 문구를 확인하는 문서입니다.

Message: Failed to DROP %s %s

MySQL 공식 원문에 표시된 Message: Failed to DROP %s %s 항목의 문구를 확인하는 문서입니다.

Message: Failed to enable Asynchronous Replication Connection

MySQL 공식 원문에 표시된 Message: Failed to enable Asynchronous Replication Connection 항목의 문구를 확인하는 문서입니다.

Message: Failed to fetch key from keyring, please check if keyring

MySQL 공식 원문에 표시된 Message: Failed to fetch key from keyring, please check if keyring 항목의 문구를 확인하는 문서입니다.

Message: Failed to generate invisible primary key. Auto-increment

MySQL 공식 원문에 표시된 Message: Failed to generate invisible primary key. Auto-increment 항목의 문구를 확인하는 문서입니다.

Message: Failed to generate invisible primary key. Column

MySQL 공식 원문에 표시된 Message: Failed to generate invisible primary key. Column 항목의 문구를 확인하는 문서입니다.

Message: Failed to generate key, please check if keyring is

MySQL 공식 원문에 표시된 Message: Failed to generate key, please check if keyring is 항목의 문구를 확인하는 문서입니다.

Message: Failed to get stat for directory pointed out by

MySQL 공식 원문에 표시된 Message: Failed to get stat for directory pointed out by 항목의 문구를 확인하는 문서입니다.

Message: Failed to grant EXECUTE and ALTER ROUTINE privileges

MySQL 공식 원문에 표시된 Message: Failed to grant EXECUTE and ALTER ROUTINE privileges 항목의 문구를 확인하는 문서입니다.

Message: Failed to grant %s` to %s

MySQL 공식 원문에 표시된 Message: Failed to grant %s` to %s 항목의 문구를 확인하는 문서입니다.

Message: Failed to initialize builtin plugins.

MySQL 공식 원문에 표시된 Message: Failed to initialize builtin plugins. 항목의 문구를 확인하는 문서입니다.

Message: Failed to initialize dynamic plugins.

MySQL 공식 원문에 표시된 Message: Failed to initialize dynamic plugins. 항목의 문구를 확인하는 문서입니다.

Message: Failed to initialize early plugins.

MySQL 공식 원문에 표시된 Message: Failed to initialize early plugins. 항목의 문구를 확인하는 문서입니다.

Message: Failed to initialize GTID structures.

MySQL 공식 원문에 표시된 Message: Failed to initialize GTID structures. 항목의 문구를 확인하는 문서입니다.

Message: Failed to load routine '%s'.

MySQL 공식 원문에 표시된 Message: Failed to load routine '%s'. 항목의 문구를 확인하는 문서입니다.

Message: Failed to lock memory. Errno: %d

MySQL 공식 원문에 표시된 Message: Failed to lock memory. Errno: %d 항목의 문구를 확인하는 문서입니다.

Message: Failed to open the referenced table '%s'

MySQL 공식 원문에 표시된 Message: Failed to open the referenced table '%s' 항목의 문구를 확인하는 문서입니다.

Message: Failed to open the security system tables

MySQL 공식 원문에 표시된 Message: Failed to open the security system tables 항목의 문구를 확인하는 문서입니다.

Message: Failed to operate binary log master key on keyring,

MySQL 공식 원문에 표시된 Message: Failed to operate binary log master key on keyring, 항목의 문구를 확인하는 문서입니다.

Message: Failed to Populate DD tables.

MySQL 공식 원문에 표시된 Message: Failed to Populate DD tables. 항목의 문구를 확인하는 문서입니다.

Message: Failed to read auto-increment value from storage engine

MySQL 공식 원문에 표시된 Message: Failed to read auto-increment value from storage engine 항목의 문구를 확인하는 문서입니다.

Message: Failed to remove auxiliary binary log encryption key from

MySQL 공식 원문에 표시된 Message: Failed to remove auxiliary binary log encryption key from 항목의 문구를 확인하는 문서입니다.

Message: Failed to remove unused binary log encryption keys from

MySQL 공식 원문에 표시된 Message: Failed to remove unused binary log encryption keys from 항목의 문구를 확인하는 문서입니다.

Message: Failed to revoke all privileges to dropped routine

MySQL 공식 원문에 표시된 Message: Failed to revoke all privileges to dropped routine 항목의 문구를 확인하는 문서입니다.

Message: Failed to save the set of Global Transaction Identifiers

MySQL 공식 원문에 표시된 Message: Failed to save the set of Global Transaction Identifiers 항목의 문구를 확인하는 문서입니다.

Message: failed to set datadir to %s

MySQL 공식 원문에 표시된 Message: failed to set datadir to %s 항목의 문구를 확인하는 문서입니다.

Message: Failed to set default roles

MySQL 공식 원문에 표시된 Message: Failed to set default roles 항목의 문구를 확인하는 문서입니다.

Message: Failed to set persisted options.

MySQL 공식 원문에 표시된 Message: Failed to set persisted options. 항목의 문구를 확인하는 문서입니다.

Message: Failed to set syslog facility to "%s", setting to "%s"

MySQL 공식 원문에 표시된 Message: Failed to set syslog facility to "%s", setting to "%s" 항목의 문구를 확인하는 문서입니다.

Message: Failed to shutdown components infrastructure.

MySQL 공식 원문에 표시된 Message: Failed to shutdown components infrastructure. 항목의 문구를 확인하는 문서입니다.

Message: Failed to write to %s: %s

MySQL 공식 원문에 표시된 Message: Failed to write to %s: %s 항목의 문구를 확인하는 문서입니다.

Message: Fatal error during log purge

MySQL 공식 원문에 표시된 Message: Fatal error during log purge 항목의 문구를 확인하는 문서입니다.

Message: Fatal error: Please read "Security" section of the manual

MySQL 공식 원문에 표시된 Message: Fatal error: Please read "Security" section of the manual 항목의 문구를 확인하는 문서입니다.

Message: Fatal error: %s

MySQL 공식 원문에 표시된 Message: Fatal error: %s 항목의 문구를 확인하는 문서입니다.

Message: Field in list of fields for partition function not found

MySQL 공식 원문에 표시된 Message: Field in list of fields for partition function not found 항목의 문구를 확인하는 문서입니다.

Message: File name is too long

MySQL 공식 원문에 표시된 Message: File name is too long 항목의 문구를 확인하는 문서입니다.

Message: gethostname failed, using '%s' as hostname

MySQL 공식 원문에 표시된 Message: gethostname failed, using '%s' as hostname 항목의 문구를 확인하는 문서입니다.

Message: @@GLOBAL.GTID_PURGED cannot be changed: %s

MySQL 공식 원문에 표시된 Message: @@GLOBAL.GTID_PURGED cannot be changed: %s 항목의 문구를 확인하는 문서입니다.

Message: Got timeout reading communication packets

MySQL 공식 원문에 표시된 Message: Got timeout reading communication packets 항목의 문구를 확인하는 문서입니다.

Message: Got timeout writing communication packets

MySQL 공식 원문에 표시된 Message: Got timeout writing communication packets 항목의 문구를 확인하는 문서입니다.

Message: Gtid table is not ready to be used. Table '%s.%s' cannot

MySQL 공식 원문에 표시된 Message: Gtid table is not ready to be used. Table '%s.%s' cannot 항목의 문구를 확인하는 문서입니다.

Message: IDENTIFIED BY clause during "%s" not supported for plugin

MySQL 공식 원문에 표시된 Message: IDENTIFIED BY clause during "%s" not supported for plugin 항목의 문구를 확인하는 문서입니다.

Message: Identifier name '%s' is too long

MySQL 공식 원문에 표시된 Message: Identifier name '%s' is too long 항목의 문구를 확인하는 문서입니다.

Message: Index column size too large. The maximum column size is

MySQL 공식 원문에 표시된 Message: Index column size too large. The maximum column size is 항목의 문구를 확인하는 문서입니다.

Message: Initialization binlog relay IO delegates failed. Please

MySQL 공식 원문에 표시된 Message: Initialization binlog relay IO delegates failed. Please 항목의 문구를 확인하는 문서입니다.

Message: Initialization binlog storage delegates failed. Please

MySQL 공식 원문에 표시된 Message: Initialization binlog storage delegates failed. Please 항목의 문구를 확인하는 문서입니다.

Message: Initialization of transaction delegates failed. Please

MySQL 공식 원문에 표시된 Message: Initialization of transaction delegates failed. Please 항목의 문구를 확인하는 문서입니다.

Message: INPLACE ADD or DROP of virtual columns cannot be combined

MySQL 공식 원문에 표시된 Message: INPLACE ADD or DROP of virtual columns cannot be combined 항목의 문구를 확인하는 문서입니다.

Message: Invalid argument for logarithm

MySQL 공식 원문에 표시된 Message: Invalid argument for logarithm 항목의 문구를 확인하는 문서입니다.

Message: Invalid back-reference in regular expression.

MySQL 공식 원문에 표시된 Message: Invalid back-reference in regular expression. 항목의 문구를 확인하는 문서입니다.

Message: Invalid character in attribute %s.

MySQL 공식 원문에 표시된 Message: Invalid character in attribute %s. 항목의 문구를 확인하는 문서입니다.

Message: Invalid compression algorithm '%s'.

MySQL 공식 원문에 표시된 Message: Invalid compression algorithm '%s'. 항목의 문구를 확인하는 문서입니다.

Message: Invalid condition number

MySQL 공식 원문에 표시된 Message: Invalid condition number 항목의 문구를 확인하는 문서입니다.

Message: Invalid connection handle

MySQL 공식 원문에 표시된 Message: Invalid connection handle 항목의 문구를 확인하는 문서입니다.

Message: Invalid cpu id %u

MySQL 공식 원문에 표시된 Message: Invalid cpu id %u 항목의 문구를 확인하는 문서입니다.

Message: Invalid creation context '%s.%s'.

MySQL 공식 원문에 표시된 Message: Invalid creation context '%s.%s'. 항목의 문구를 확인하는 문서입니다.

Message: Invalid data type for JSON data in argument %u to

MySQL 공식 원문에 표시된 Message: Invalid data type for JSON data in argument %u to 항목의 문구를 확인하는 문서입니다.

Message: Invalid default collation %s: utf8mb4_0900_ai_ci or

MySQL 공식 원문에 표시된 Message: Invalid default collation %s: utf8mb4_0900_ai_ci or 항목의 문구를 확인하는 문서입니다.

Message: Invalid default value for '%s'

MySQL 공식 원문에 표시된 Message: Invalid default value for '%s' 항목의 문구를 확인하는 문서입니다.

Message: Invalid encryption option.

MySQL 공식 원문에 표시된 Message: Invalid encryption option. 항목의 문구를 확인하는 문서입니다.

Message: Invalid extension argument type '%s' was specified. Refer

MySQL 공식 원문에 표시된 Message: Invalid extension argument type '%s' was specified. Refer 항목의 문구를 확인하는 문서입니다.

Message: Invalid first argument for MYSQL_OPT_USER_PASSWORD

MySQL 공식 원문에 표시된 Message: Invalid first argument for MYSQL_OPT_USER_PASSWORD 항목의 문구를 확인하는 문서입니다.

Message: Invalid ft-boolean-syntax string: %s

MySQL 공식 원문에 표시된 Message: Invalid ft-boolean-syntax string: %s 항목의 문구를 확인하는 문서입니다.

Message: Invalid GeoJSON data provided to function %s

MySQL 공식 원문에 표시된 Message: Invalid GeoJSON data provided to function %s 항목의 문구를 확인하는 문서입니다.

Message: Invalid GeoJSON data provided to function %s: Member

MySQL 공식 원문에 표시된 Message: Invalid GeoJSON data provided to function %s: Member 항목의 문구를 확인하는 문서입니다.

Message: Invalid GeoJSON data provided to function %s: Member '%s'

MySQL 공식 원문에 표시된 Message: Invalid GeoJSON data provided to function %s: Member '%s' 항목의 문구를 확인하는 문서입니다.

Message: Invalid GeoJSON data provided to function %s: Missing

MySQL 공식 원문에 표시된 Message: Invalid GeoJSON data provided to function %s: Missing 항목의 문구를 확인하는 문서입니다.

Message: Invalid instrument name or value for

MySQL 공식 원문에 표시된 Message: Invalid instrument name or value for 항목의 문구를 확인하는 문서입니다.

Message: Invalid json attribute, error: "%s" at pos %u: '%s'

MySQL 공식 원문에 표시된 Message: Invalid json attribute, error: "%s" at pos %u: '%s' 항목의 문구를 확인하는 문서입니다.

Message: Invalid JSON data provided to function %s: %s

MySQL 공식 원문에 표시된 Message: Invalid JSON data provided to function %s: %s 항목의 문구를 확인하는 문서입니다.

Message: Invalid JSON path expression. The error is around

MySQL 공식 원문에 표시된 Message: Invalid JSON path expression. The error is around 항목의 문구를 확인하는 문서입니다.

Message: Invalid JSON text in argument %u to function %s: "%s" at

MySQL 공식 원문에 표시된 Message: Invalid JSON text in argument %u to function %s: "%s" at 항목의 문구를 확인하는 문서입니다.

Message: Invalid JSON text: "%s" at position %u in value for

MySQL 공식 원문에 표시된 Message: Invalid JSON text: "%s" at position %u in value for 항목의 문구를 확인하는 문서입니다.

Message: Invalid MASTER_COMPRESSION_ALGORITHMS '%s' for channel

MySQL 공식 원문에 표시된 Message: Invalid MASTER_COMPRESSION_ALGORITHMS '%s' for channel 항목의 문구를 확인하는 문서입니다.

Message: Invalid MASTER_ZSTD_COMPRESSION_LEVEL %u for channel

MySQL 공식 원문에 표시된 Message: Invalid MASTER_ZSTD_COMPRESSION_LEVEL %u for channel 항목의 문구를 확인하는 문서입니다.

Message: Invalid "max_array_length" argument value.

MySQL 공식 원문에 표시된 Message: Invalid "max_array_length" argument value. 항목의 문구를 확인하는 문서입니다.

Message: Invalid number of arguments for hint %s

MySQL 공식 원문에 표시된 Message: Invalid number of arguments for hint %s 항목의 문구를 확인하는 문서입니다.

Message: Invalid old_passwords mode: 1. Valid values are 2 and 0

MySQL 공식 원문에 표시된 Message: Invalid old_passwords mode: 1. Valid values are 2 and 0 항목의 문구를 확인하는 문서입니다.

Message: Invalid ON UPDATE clause for '%s' column

MySQL 공식 원문에 표시된 Message: Invalid ON UPDATE clause for '%s' column 항목의 문구를 확인하는 문서입니다.

Message: Invalid parameter number

MySQL 공식 원문에 표시된 Message: Invalid parameter number 항목의 문구를 확인하는 문서입니다.

Message: Invalid performance_schema usage.

MySQL 공식 원문에 표시된 Message: Invalid performance_schema usage. 항목의 문구를 확인하는 문서입니다.

Message: Invalid row in mysql.func table for function '%s'

MySQL 공식 원문에 표시된 Message: Invalid row in mysql.func table for function '%s' 항목의 문구를 확인하는 문서입니다.

Message: Invalid %s character string: '%s'

MySQL 공식 원문에 표시된 Message: Invalid %s character string: '%s' 항목의 문구를 확인하는 문서입니다.

Message: Invalid size for column '%s'.

MySQL 공식 원문에 표시된 Message: Invalid size for column '%s'. 항목의 문구를 확인하는 문서입니다.

Message: Invalid SOURCE_COMPRESSION_ALGORITHMS '%s' for channel

MySQL 공식 원문에 표시된 Message: Invalid SOURCE_COMPRESSION_ALGORITHMS '%s' for channel 항목의 문구를 확인하는 문서입니다.

Message: Invalid SOURCE_ZSTD_COMPRESSION_LEVEL %u for channel

MySQL 공식 원문에 표시된 Message: Invalid SOURCE_ZSTD_COMPRESSION_LEVEL %u for channel 항목의 문구를 확인하는 문서입니다.

Message: Invalid target for assignment in INSERT or UPDATE

MySQL 공식 원문에 표시된 Message: Invalid target for assignment in INSERT or UPDATE 항목의 문구를 확인하는 문서입니다.

Message: Invalid thread id (%llu).

MySQL 공식 원문에 표시된 Message: Invalid thread id (%llu). 항목의 문구를 확인하는 문서입니다.

Message: Invalid thread priority value %d for %s resource group

MySQL 공식 원문에 표시된 Message: Invalid thread priority value %d for %s resource group 항목의 문구를 확인하는 문서입니다.

Message: Invalid time zone interval: '%s'

MySQL 공식 원문에 표시된 Message: Invalid time zone interval: '%s' 항목의 문구를 확인하는 문서입니다.

Message: Invalid timestamp format in %s udf

MySQL 공식 원문에 표시된 Message: Invalid timestamp format in %s udf 항목의 문구를 확인하는 문서입니다.

Message: Invalid TIMESTAMP value in column '%s' at row %ld

MySQL 공식 원문에 표시된 Message: Invalid TIMESTAMP value in column '%s' at row %ld 항목의 문구를 확인하는 문서입니다.

Message: Invalid use of group function

MySQL 공식 원문에 표시된 Message: Invalid use of group function 항목의 문구를 확인하는 문서입니다.

Message: Invalid use of null pointer

MySQL 공식 원문에 표시된 Message: Invalid use of null pointer 항목의 문구를 확인하는 문서입니다.

Message: Invalid use of NULL value

MySQL 공식 원문에 표시된 Message: Invalid use of NULL value 항목의 문구를 확인하는 문서입니다.

Message: Invalid use of parameters in '%s'

MySQL 공식 원문에 표시된 Message: Invalid use of parameters in '%s' 항목의 문구를 확인하는 문서입니다.

Message: Invalid value for %s: %s

MySQL 공식 원문에 표시된 Message: Invalid value for %s: %s 항목의 문구를 확인하는 문서입니다.

Message: Invalid VCPU range %u-%u

MySQL 공식 원문에 표시된 Message: Invalid VCPU range %u-%u 항목의 문구를 확인하는 문서입니다.

Message: KDF option size is invalid, please provide valid size

MySQL 공식 원문에 표시된 Message: KDF option size is invalid, please provide valid size 항목의 문구를 확인하는 문서입니다.

Message: Key part '%s' length cannot be 0

MySQL 공식 원문에 표시된 Message: Key part '%s' length cannot be 0 항목의 문구를 확인하는 문서입니다.

Message: Keyring reload failed. Please check error log for more

MySQL 공식 원문에 표시된 Message: Keyring reload failed. Please check error log for more 항목의 문구를 확인하는 문서입니다.

Message: Label '%s' not found in server variable

MySQL 공식 원문에 표시된 Message: Label '%s' not found in server variable 항목의 문구를 확인하는 문서입니다.

Message: LOAD BULK DATA into table '%s' failed: %s

MySQL 공식 원문에 표시된 Message: LOAD BULK DATA into table '%s' failed: %s 항목의 문구를 확인하는 문서입니다.

Message: Lock wait timeout exceeded; try restarting transaction

MySQL 공식 원문에 표시된 Message: Lock wait timeout exceeded; try restarting transaction 항목의 문구를 확인하는 문서입니다.

Message: Memory capacity of %llu bytes for '%s' exceeded. %s

MySQL 공식 원문에 표시된 Message: Memory capacity of %llu bytes for '%s' exceeded. %s 항목의 문구를 확인하는 문서입니다.

Message: Missing mandatory attribute %s.

MySQL 공식 원문에 표시된 Message: Missing mandatory attribute %s. 항목의 문구를 확인하는 문서입니다.

Message: Missing value for JSON_TABLE column '%s'

MySQL 공식 원문에 표시된 Message: Missing value for JSON_TABLE column '%s' 항목의 문구를 확인하는 문서입니다.

Message: my_init() failed.

MySQL 공식 원문에 표시된 Message: my_init() failed. 항목의 문구를 확인하는 문서입니다.

Message: OK packet too large

MySQL 공식 원문에 표시된 Message: OK packet too large 항목의 문구를 확인하는 문서입니다.

Message: Operation cannot be performed. The table '%s.%s' is

MySQL 공식 원문에 표시된 Message: Operation cannot be performed. The table '%s.%s' is 항목의 문구를 확인하는 문서입니다.

Message: Operation %s failed for %s

MySQL 공식 원문에 표시된 Message: Operation %s failed for %s 항목의 문구를 확인하는 문서입니다.

Message: Operation %s failed for %s as it is referenced as a

MySQL 공식 원문에 표시된 Message: Operation %s failed for %s as it is referenced as a 항목의 문구를 확인하는 문서입니다.

Message: Partition function not supported in this version for this

MySQL 공식 원문에 표시된 Message: Partition function not supported in this version for this 항목의 문구를 확인하는 문서입니다.

Message: Partitioning expression is too long.

MySQL 공식 원문에 표시된 Message: Partitioning expression is too long. 항목의 문구를 확인하는 문서입니다.

Message: Plugin '%s' cannot be uninstalled now. %s

MySQL 공식 원문에 표시된 Message: Plugin '%s' cannot be uninstalled now. %s 항목의 문구를 확인하는 문서입니다.

Message: Prepared statement contains too many placeholders

MySQL 공식 원문에 표시된 Message: Prepared statement contains too many placeholders 항목의 문구를 확인하는 문서입니다.

Message: Query block name %s is not found for %s hint

MySQL 공식 원문에 표시된 Message: Query block name %s is not found for %s hint 항목의 문구를 확인하는 문서입니다.

Message: Query cache failed to set size %lu; new query cache size

MySQL 공식 원문에 표시된 Message: Query cache failed to set size %lu; new query cache size 항목의 문구를 확인하는 문서입니다.

Message: Query cache is disabled; restart the server with

MySQL 공식 원문에 표시된 Message: Query cache is disabled; restart the server with 항목의 문구를 확인하는 문서입니다.

Message: Redo log archiving failed: %s

MySQL 공식 원문에 표시된 Message: Redo log archiving failed: %s 항목의 문구를 확인하는 문서입니다.

Message: Reference '%s' not supported (%s)

MySQL 공식 원문에 표시된 Message: Reference '%s' not supported (%s) 항목의 문구를 확인하는 문서입니다.

Message: Reorganize of range partitions cannot change total ranges

MySQL 공식 원문에 표시된 Message: Reorganize of range partitions cannot change total ranges 항목의 문구를 확인하는 문서입니다.

Message: REPLACE cannot be executed as it requires deleting rows

MySQL 공식 원문에 표시된 Message: REPLACE cannot be executed as it requires deleting rows 항목의 문구를 확인하는 문서입니다.

Message: Replica failed to initialize applier metadata structure

MySQL 공식 원문에 표시된 Message: Replica failed to initialize applier metadata structure 항목의 문구를 확인하는 문서입니다.

Message: Replica failed to initialize connection metadata

MySQL 공식 원문에 표시된 Message: Replica failed to initialize connection metadata 항목의 문구를 확인하는 문서입니다.

Message: Replica is not configured or failed to initialize

MySQL 공식 원문에 표시된 Message: Replica is not configured or failed to initialize 항목의 문구를 확인하는 문서입니다.

Message: replica_preserve_commit_order is not supported %s.

MySQL 공식 원문에 표시된 Message: replica_preserve_commit_order is not supported %s. 항목의 문구를 확인하는 문서입니다.

Message: Replication cannot start%s with

MySQL 공식 원문에 표시된 Message: Replication cannot start%s with 항목의 문구를 확인하는 문서입니다.

Message: Replication cannot start%s with GTID_ONLY = 1 as this

MySQL 공식 원문에 표시된 Message: Replication cannot start%s with GTID_ONLY = 1 as this 항목의 문구를 확인하는 문서입니다.

Message: REQUIRE_ROW_FORMAT cannot be disabled for replication

MySQL 공식 원문에 표시된 Message: REQUIRE_ROW_FORMAT cannot be disabled for replication 항목의 문구를 확인하는 문서입니다.

Message: Resource group %s is disabled.

MySQL 공식 원문에 표시된 Message: Resource group %s is disabled. 항목의 문구를 확인하는 문서입니다.

Message: Restart server failed (%s).

MySQL 공식 원문에 표시된 Message: Restart server failed (%s). 항목의 문구를 확인하는 문서입니다.

Message: Routine body for '%s' is too long

MySQL 공식 원문에 표시된 Message: Routine body for '%s' is too long 항목의 문구를 확인하는 문서입니다.

Message: Run function '...' in plugin '%s' failed

MySQL 공식 원문에 표시된 Message: Run function '...' in plugin '%s' failed 항목의 문구를 확인하는 문서입니다.

Message: %s command denied to user '%s'@'%s' for column '%s' in

MySQL 공식 원문에 표시된 Message: %s command denied to user '%s'@'%s' for column '%s' in 항목의 문구를 확인하는 문서입니다.

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

MySQL 공식 원문에 표시된 Message: %s command denied to user '%s'@'%s' for routine '%s' 항목의 문구를 확인하는 문서입니다.

Message: %s command denied to user '%s'@'%s' for table '%s'

MySQL 공식 원문에 표시된 Message: %s command denied to user '%s'@'%s' for table '%s' 항목의 문구를 확인하는 문서입니다.

Message: %s dictionary object is invalid. (%s)

MySQL 공식 원문에 표시된 Message: %s dictionary object is invalid. (%s) 항목의 문구를 확인하는 문서입니다.

Message: '%s' is a collation of the deprecated character set

MySQL 공식 원문에 표시된 Message: '%s' is a collation of the deprecated character set 항목의 문구를 확인하는 문서입니다.

Message: %s is not supported in multi-threaded replica mode. %s

MySQL 공식 원문에 표시된 Message: %s is not supported in multi-threaded replica mode. %s 항목의 문구를 확인하는 문서입니다.

Message: %s is not supported in multi-threaded slave mode. %s

MySQL 공식 원문에 표시된 Message: %s is not supported in multi-threaded slave mode. %s 항목의 문구를 확인하는 문서입니다.

Message: %s UDF failed; %s

MySQL 공식 원문에 표시된 Message: %s UDF failed; %s 항목의 문구를 확인하는 문서입니다.

Message: Secondary engine operation failed. %s.

MySQL 공식 원문에 표시된 Message: Secondary engine operation failed. %s. 항목의 문구를 확인하는 문서입니다.

Message: server-id configured is too large to represent with

MySQL 공식 원문에 표시된 Message: server-id configured is too large to represent with 항목의 문구를 확인하는 문서입니다.

Message: Service lock wait timeout exceeded.

MySQL 공식 원문에 표시된 Message: Service lock wait timeout exceeded. 항목의 문구를 확인하는 문서입니다.

Message: @@SESSION.GTID_NEXT cannot be changed by a client that

MySQL 공식 원문에 표시된 Message: @@SESSION.GTID_NEXT cannot be changed by a client that 항목의 문구를 확인하는 문서입니다.

Message: Set FIPS mode ON/STRICT failed

MySQL 공식 원문에 표시된 Message: Set FIPS mode ON/STRICT failed 항목의 문구를 확인하는 문서입니다.

Message: Setting persistent options failed.

MySQL 공식 원문에 표시된 Message: Setting persistent options failed. 항목의 문구를 확인하는 문서입니다.

Message: Setting user variables within expressions is deprecated

MySQL 공식 원문에 표시된 Message: Setting user variables within expressions is deprecated 항목의 문구를 확인하는 문서입니다.

Message: Slave failed to initialize relay log info structure from

MySQL 공식 원문에 표시된 Message: Slave failed to initialize relay log info structure from 항목의 문구를 확인하는 문서입니다.

Message: slave_preserve_commit_order is not supported %s.

MySQL 공식 원문에 표시된 Message: slave_preserve_commit_order is not supported %s. 항목의 문구를 확인하는 문서입니다.

Message: SOURCE_AUTO_POSITION cannot be disabled for replication

MySQL 공식 원문에 표시된 Message: SOURCE_AUTO_POSITION cannot be disabled for replication 항목의 문구를 확인하는 문서입니다.

Message: Specified key was too long; max key length is %d bytes

MySQL 공식 원문에 표시된 Message: Specified key was too long; max key length is %d bytes 항목의 문구를 확인하는 문서입니다.

Message: sql_mode=0x%08x is not supported.

MySQL 공식 원문에 표시된 Message: sql_mode=0x%08x is not supported. 항목의 문구를 확인하는 문서입니다.

Message: SSO user not found, Please perform SSO authentication

MySQL 공식 원문에 표시된 Message: SSO user not found, Please perform SSO authentication 항목의 문구를 확인하는 문서입니다.

Message: START TRANSACTION clause cannot be used %s

MySQL 공식 원문에 표시된 Message: START TRANSACTION clause cannot be used %s 항목의 문구를 확인하는 문서입니다.

Message: Storage engine %s is disabled (Table creation is

MySQL 공식 원문에 표시된 Message: Storage engine %s is disabled (Table creation is 항목의 문구를 확인하는 문서입니다.

Message: Subquery value not supported

MySQL 공식 원문에 표시된 Message: Subquery value not supported 항목의 문구를 확인하는 문서입니다.

Message: Target log not found in binlog index

MySQL 공식 원문에 표시된 Message: Target log not found in binlog index 항목의 문구를 확인하는 문서입니다.

Message: Temporary file write failure.

MySQL 공식 원문에 표시된 Message: Temporary file write failure. 항목의 문구를 확인하는 문서입니다.

Message: The client is using a deprecated CLIENT_NO_SCHEMA client

MySQL 공식 원문에 표시된 Message: The client is using a deprecated CLIENT_NO_SCHEMA client 항목의 문구를 확인하는 문서입니다.

Message: The function '%s' failed. %s

MySQL 공식 원문에 표시된 Message: The function '%s' failed. %s 항목의 문구를 확인하는 문서입니다.

Message: The host or user argument to GRANT is too long

MySQL 공식 원문에 표시된 Message: The host or user argument to GRANT is too long 항목의 문구를 확인하는 문서입니다.

Message: The INTO clause is deprecated inside query blocks of

MySQL 공식 원문에 표시된 Message: The INTO clause is deprecated inside query blocks of 항목의 문구를 확인하는 문서입니다.

Message: The mysql.component table is missing or has an incorrect

MySQL 공식 원문에 표시된 Message: The mysql.component table is missing or has an incorrect 항목의 문구를 확인하는 문서입니다.

Message: The operation "%s" cannot be performed for user '%s'@'%s'

MySQL 공식 원문에 표시된 Message: The operation "%s" cannot be performed for user '%s'@'%s' 항목의 문구를 확인하는 문서입니다.

Message: The option expire_logs_days cannot be used together with

MySQL 공식 원문에 표시된 Message: The option expire_logs_days cannot be used together with 항목의 문구를 확인하는 문서입니다.

Message: The option group_replication_consistency cannot be used

MySQL 공식 원문에 표시된 Message: The option group_replication_consistency cannot be used 항목의 문구를 확인하는 문서입니다.

Message: The options argument in function %s contains the invalid

MySQL 공식 원문에 표시된 Message: The options argument in function %s contains the invalid 항목의 문구를 확인하는 문서입니다.

Message: The options argument in function %s ends with the invalid

MySQL 공식 원문에 표시된 Message: The options argument in function %s ends with the invalid 항목의 문구를 확인하는 문서입니다.

Message: The primary key cannot be a functional index

MySQL 공식 원문에 표시된 Message: The primary key cannot be a functional index 항목의 문구를 확인하는 문서입니다.

Message: The replication receiver thread%s cannot start in

MySQL 공식 원문에 표시된 Message: The replication receiver thread%s cannot start in 항목의 문구를 확인하는 문서입니다.

Message: The requested value %s is invalid for REQUIRE_ROW_FORMAT,

MySQL 공식 원문에 표시된 Message: The requested value %s is invalid for REQUIRE_ROW_FORMAT, 항목의 문구를 확인하는 문서입니다.

Message: The %s command encountered a failure. %s

MySQL 공식 원문에 표시된 Message: The %s command encountered a failure. %s 항목의 문구를 확인하는 문서입니다.

Message: The '%s' feature is disabled; see the documentation for

MySQL 공식 원문에 표시된 Message: The '%s' feature is disabled; see the documentation for 항목의 문구를 확인하는 문서입니다.

Message: The '%s' feature is disabled; you need MySQL built with

MySQL 공식 원문에 표시된 Message: The '%s' feature is disabled; you need MySQL built with 항목의 문구를 확인하는 문서입니다.

Message: The START GROUP_REPLICATION command failed as the applier

MySQL 공식 원문에 표시된 Message: The START GROUP_REPLICATION command failed as the applier 항목의 문구를 확인하는 문서입니다.

Message: The START GROUP_REPLICATION command failed as there was

MySQL 공식 원문에 표시된 Message: The START GROUP_REPLICATION command failed as there was 항목의 문구를 확인하는 문서입니다.

Message: The START GROUP_REPLICATION command failed since the

MySQL 공식 원문에 표시된 Message: The START GROUP_REPLICATION command failed since the 항목의 문구를 확인하는 문서입니다.

Message: The START GROUP_REPLICATION command failed since the USER

MySQL 공식 원문에 표시된 Message: The START GROUP_REPLICATION command failed since the USER 항목의 문구를 확인하는 문서입니다.

Message: The START GROUP_REPLICATION command failed to start its

MySQL 공식 원문에 표시된 Message: The START GROUP_REPLICATION command failed to start its 항목의 문구를 확인하는 문서입니다.

Message: The system variable %s cannot be set in stored

MySQL 공식 원문에 표시된 Message: The system variable %s cannot be set in stored 항목의 문구를 확인하는 문서입니다.

Message: The system variable %s cannot be set in stored functions

MySQL 공식 원문에 표시된 Message: The system variable %s cannot be set in stored functions 항목의 문구를 확인하는 문서입니다.

Message: The system variable @@SESSION.GTID_NEXT cannot be

MySQL 공식 원문에 표시된 Message: The system variable @@SESSION.GTID_NEXT cannot be 항목의 문구를 확인하는 문서입니다.

Message: The total length of the partitioning fields is too large

MySQL 공식 원문에 표시된 Message: The total length of the partitioning fields is too large 항목의 문구를 확인하는 문서입니다.

Message: The update log is deprecated and replaced by the binary

MySQL 공식 원문에 표시된 Message: The update log is deprecated and replaced by the binary 항목의 문구를 확인하는 문서입니다.

Message: This operation cannot be performed with a running replica

MySQL 공식 원문에 표시된 Message: This operation cannot be performed with a running replica 항목의 문구를 확인하는 문서입니다.

Message: This operation cannot be performed with a running slave

MySQL 공식 원문에 표시된 Message: This operation cannot be performed with a running slave 항목의 문구를 확인하는 문서입니다.

Message: This operation cannot be performed with running

MySQL 공식 원문에 표시된 Message: This operation cannot be performed with running 항목의 문구를 확인하는 문서입니다.

Message: This storage engine cannot be used for log tables

MySQL 공식 원문에 표시된 Message: This storage engine cannot be used for log tables 항목의 문구를 확인하는 문서입니다.

Message: To have multiple channels, repository cannot be of type

MySQL 공식 원문에 표시된 Message: To have multiple channels, repository cannot be of type 항목의 문구를 확인하는 문서입니다.

Message: Too many active concurrent transactions

MySQL 공식 원문에 표시된 Message: Too many active concurrent transactions 항목의 문구를 확인하는 문서입니다.

Message: Too many arguments for function %s: %lu; maximum allowed

MySQL 공식 원문에 표시된 Message: Too many arguments for function %s: %lu; maximum allowed 항목의 문구를 확인하는 문서입니다.

Message: Too many columns

MySQL 공식 원문에 표시된 Message: Too many columns 항목의 문구를 확인하는 문서입니다.

Message: Too many concurrent clone operations. Maximum allowed -

MySQL 공식 원문에 표시된 Message: Too many concurrent clone operations. Maximum allowed - 항목의 문구를 확인하는 문서입니다.

Message: Too many connections

MySQL 공식 원문에 표시된 Message: Too many connections 항목의 문구를 확인하는 문서입니다.

Message: Too many fields in '%s'

MySQL 공식 원문에 표시된 Message: Too many fields in '%s' 항목의 문구를 확인하는 문서입니다.

Message: Too many files opened, please execute the command again

MySQL 공식 원문에 표시된 Message: Too many files opened, please execute the command again 항목의 문구를 확인하는 문서입니다.

Message: Too many key parts specified; max %d parts allowed

MySQL 공식 원문에 표시된 Message: Too many key parts specified; max %d parts allowed 항목의 문구를 확인하는 문서입니다.

Message: Too many keys specified; max %d keys allowed

MySQL 공식 원문에 표시된 Message: Too many keys specified; max %d keys allowed 항목의 문구를 확인하는 문서입니다.

Message: Too many partitions (including subpartitions) were

MySQL 공식 원문에 표시된 Message: Too many partitions (including subpartitions) were 항목의 문구를 확인하는 문서입니다.

Message: Too many strings for column %s and SET

MySQL 공식 원문에 표시된 Message: Too many strings for column %s and SET 항목의 문구를 확인하는 문서입니다.

Message: Transformation from SRID %u is not supported. The spatial

MySQL 공식 원문에 표시된 Message: Transformation from SRID %u is not supported. The spatial 항목의 문구를 확인하는 문서입니다.

Message: Transformation to SRID %u is not supported. The spatial

MySQL 공식 원문에 표시된 Message: Transformation to SRID %u is not supported. The spatial 항목의 문구를 확인하는 문서입니다.

Message: Trigger creation context of table `%s`.`%s` is invalid

MySQL 공식 원문에 표시된 Message: Trigger creation context of table `%s`.`%s` is invalid 항목의 문구를 확인하는 문서입니다.

Message: Unable to start server. Cannot find the meta data for

MySQL 공식 원문에 표시된 Message: Unable to start server. Cannot find the meta data for 항목의 문구를 확인하는 문서입니다.

Message: Uncompressed data size too large; the maximum size is %d

MySQL 공식 원문에 표시된 Message: Uncompressed data size too large; the maximum size is %d 항목의 문구를 확인하는 문서입니다.

Message: Unhandled user-defined not found condition

MySQL 공식 원문에 표시된 Message: Unhandled user-defined not found condition 항목의 문구를 확인하는 문서입니다.

Message: Update locks cannot be acquired during a READ UNCOMMITTED

MySQL 공식 원문에 표시된 Message: Update locks cannot be acquired during a READ UNCOMMITTED 항목의 문구를 확인하는 문서입니다.

Message: Upgrade index name failed, please use create index(alter

MySQL 공식 원문에 표시된 Message: Upgrade index name failed, please use create index(alter 항목의 문구를 확인하는 문서입니다.

Message: Using %s as unquoted identifier is deprecated, please use

MySQL 공식 원문에 표시된 Message: Using %s as unquoted identifier is deprecated, please use 항목의 문구를 확인하는 문서입니다.

Message: Value too long setting SOURCE_COMPRESSION_ALGORITHMS

MySQL 공식 원문에 표시된 Message: Value too long setting SOURCE_COMPRESSION_ALGORITHMS 항목의 문구를 확인하는 문서입니다.

Message: Variable %s cannot be changed by a client that owns a

MySQL 공식 원문에 표시된 Message: Variable %s cannot be changed by a client that owns a 항목의 문구를 확인하는 문서입니다.

Message: Version token %.*s not found.

MySQL 공식 원문에 표시된 Message: Version token %.*s not found. 항목의 문구를 확인하는 문서입니다.

Message: View '%s.%s' references invalid table(s) or column(s) or

MySQL 공식 원문에 표시된 Message: View '%s.%s' references invalid table(s) or column(s) or 항목의 문구를 확인하는 문서입니다.

Message: View text checksum failed

MySQL 공식 원문에 표시된 Message: View text checksum failed 항목의 문구를 확인하는 문서입니다.

Message: Window '%s' cannot inherit '%s' since both contain an

MySQL 공식 원문에 표시된 Message: Window '%s' cannot inherit '%s' since both contain an 항목의 문구를 확인하는 문서입니다.

Message: Window '%s' has a frame definition, so cannot be

MySQL 공식 원문에 표시된 Message: Window '%s' has a frame definition, so cannot be 항목의 문구를 확인하는 문서입니다.

Message: Write to binlog failed. However, master key rotation has

MySQL 공식 원문에 표시된 Message: Write to binlog failed. However, master key rotation has 항목의 문구를 확인하는 문서입니다.

Message: Write to exceptions table failed. Message: %s

MySQL 공식 원문에 표시된 Message: Write to exceptions table failed. Message: %s 항목의 문구를 확인하는 문서입니다.

Message: XA: Temporary tables cannot be accessed inside XA

MySQL 공식 원문에 표시된 Message: XA: Temporary tables cannot be accessed inside XA 항목의 문구를 확인하는 문서입니다.

Message: XAER_INVAL: Invalid arguments (or unsupported command)

MySQL 공식 원문에 표시된 Message: XAER_INVAL: Invalid arguments (or unsupported command) 항목의 문구를 확인하는 문서입니다.

Message: You cannot '%s' a log table if logging is enabled

MySQL 공식 원문에 표시된 Message: You cannot '%s' a log table if logging is enabled 항목의 문구를 확인하는 문서입니다.

Message: You cannot use the alias '%s' of an expression containing

MySQL 공식 원문에 표시된 Message: You cannot use the alias '%s' of an expression containing 항목의 문구를 확인하는 문서입니다.

Message: You cannot use the window function '%s' in this context.'

MySQL 공식 원문에 표시된 Message: You cannot use the window function '%s' in this context.' 항목의 문구를 확인하는 문서입니다.

missing, corrupt or contains bad data.

MySQL 공식 원문에 표시된 missing, corrupt or contains bad data. 항목의 문구를 확인하는 문서입니다.

missing. Use DROP TABLE IF EXISTS to remove it from

MySQL 공식 원문에 표시된 missing. Use DROP TABLE IF EXISTS to remove it from 항목의 문구를 확인하는 문서입니다.

module failed to start.

MySQL 공식 원문에 표시된 module failed to start. 항목의 문구를 확인하는 문서입니다.

Access denied for user '%s'@'%s' (using password: YES)

MySQL 오류 1045 형식으로 사용자 인증이 거부될 때 계정과 접속 호스트를 비교합니다.

Access denied for user '%s'@'%s' to database '%s'

MySQL 오류 1044(ER_DBACCESS_DENIED_ERROR)를 화면 또는 로그의 오류 코드·SQLSTATE·메시지로 식별합니다.

Authentication plugin '%s' cannot be loaded: %s

MySQL 클라이언트 오류 번호 2059와 인증 플러그인 로드 실패 메시지 형식을 식별합니다.

The binary log file '%s' is logically corrupted: %s

MySQL 바이너리 로그 파일의 논리적 손상을 나타내는 오류 메시지 형식을 확인합니다.

Cannot add foreign key constraint

MySQL 오류 1215(ER_CANNOT_ADD_FOREIGN, SQLSTATE HY000) 메시지를 식별하는 문서입니다.

Cannot add or update a child row: a foreign key constraint fails

MariaDB 또는 MySQL에서 오류 코드 1216과 함께 표시되는 외래 키 제약 조건 오류 메시지를 식별합니다.

Cannot delete or update a parent row: a foreign key constraint fails

MariaDB/MySQL 오류 코드 1217의 오류 문자열을 확인하는 문서입니다.

Cannot drop index '%s': needed in a foreign key constraint

MariaDB 오류 코드 1553의 오류 메시지를 현재 화면 또는 로그와 대조해 식별합니다.

Cannot load from %s.%s. The table is probably corrupted!

MySQL에서 테이블을 불러오지 못하고 손상 가능성을 표시하는 오류 메시지입니다.

Can't connect to MySQL server on '%s:%u' (%d)

MySQL 클라이언트 오류 번호 2003(CR_CONN_HOST_ERROR)의 메시지 문자열을 식별합니다.

Can't create database '%s'; database exists

MariaDB 오류 코드 1007(ER_DB_CREATE_EXISTS)의 오류 메시지와 SQLSTATE를 확인합니다.

Can't create file '%s' (errno: %d - %s)

MySQL에서 작업에 필요한 파일을 생성하거나 복사하지 못할 때 표시되는 오류 메시지입니다.

Can't create table '%s' (errno: %d - %s)

MySQL InnoDB에서 테이블을 생성할 수 없을 때 표시되는 오류 메시지입니다.

Can't create TCP/IP socket (%d)

MySQL 클라이언트 오류 2004(CR_IPSOCK_ERROR)의 메시지 문자열입니다.

Can't create UNIX socket (%d)

MySQL 클라이언트 오류 2001의 메시지 식별 정보입니다.

Can't drop database '%s'; database doesn't exist

MySQL 오류 번호 1008(ER_DB_DROP_EXISTS)을 화면 또는 로그의 메시지와 대조하는 문서입니다.

Can't find file: '%s' (errno: %d - %s)

MySQL 오류 번호 1017(ER_FILE_NOT_FOUND, SQLSTATE HY000)의 메시지 식별 정보입니다.

Can't initialize character set %s (path: %s)

MySQL 클라이언트 오류 번호 2019와 문자 집합 초기화 오류 메시지를 식별합니다.

Can't open file: '%s' (errno: %d - %s)

MySQL 오류 번호 1016의 메시지 형식을 현재 오류와 대조해 InnoDB 데이터 파일에서 테이블을 찾지 못한 오류인지 식별합니다.

Can't write; duplicate key in table '%s'

MySQL ER_DUP_KEY 오류 메시지를 오류 번호와 SQLSTATE로 대조해 식별합니다.

Check constraint '%s' refers to non-existing column '%s'.

MySQL에서 CHECK 제약 조건이 존재하지 않는 열을 참조한다고 표시될 때 오류 메시지를 식별합니다.

MySQL client ran out of memory

MySQL 클라이언트 오류 번호 2008의 메시지 `MySQL client ran out of memory`를 식별합니다.

COLLATION '%s' is not valid for CHARACTER SET '%s'

MySQL 오류 1253에서 collation이 지정한 character set에 유효하지 않음을 나타내는 메시지입니다.

Column '%s' cannot be null

MariaDB/MySQL 오류 코드 1048의 오류 메시지를 식별합니다.

Column '%s' in %s is ambiguous

MySQL 오류 1052에서 열 참조가 모호할 때 표시되는 메시지의 확인 및 쿼리 수정 방법입니다.

Commands out of sync; you can't run this command now

MySQL 클라이언트 라이브러리에서 연결의 현재 상태에 맞지 않는 함수를 호출할 때 발생하는 오류입니다.

Create table/tablespace '%s' failed, as disk is full.

MySQL에서 테이블 또는 테이블스페이스 생성 중 디스크가 가득 찼음을 나타내는 오류 메시지를 식별합니다.

Data too long for column '%s' at row %ld

MySQL 오류 1406(ER_DATA_TOO_LONG)을 오류 메시지 형식과 SQLSTATE로 식별합니다.

Data truncated

MySQL 클라이언트 오류 번호 2032와 심볼 CR_DATA_TRUNCATED에 해당하는 오류 메시지입니다.

Deadlock found when trying to get lock; try restarting transaction

MySQL 오류 1213을 잠금 대기 시간 초과 오류와 구분하고 교착 상태가 발생한 트랜잭션을 확인하는 방법을 설명합니다.

Division by 0

MySQL 오류 메시지 `Division by 0`의 오류 번호와 SQLSTATE를 대조해 식별합니다.

Duplicate column name '%s'

MySQL 오류 번호 1060(ER_DUP_FIELDNAME)의 메시지를 현재 오류 출력과 대조하는 문서입니다.

Can't create database '%s' (errno: %d - %s)

MySQL 공식 원문에 표시된 Can't create database '%s' (errno: %d - %s) 항목의 문구를 확인하는 문서입니다.

Cannot execute statement in a READ ONLY transaction.

MySQL에서 읽기 전용 트랜잭션 관련 오류 메시지를 문자열 대조로 식별합니다.

Invalid default value for '%s'

MySQL 공식 원문에 표시된 Invalid default value for '%s' 항목의 문구를 확인하는 문서입니다.

Table '%s' is read only

MySQL 오류 1036(ER_OPEN_AS_READONLY)의 메시지 형식을 확인하는 문서입니다.

'%s' isn't in GROUP BY

MySQL 오류 번호 1055와 메시지 형식을 대조해 GROUP BY 관련 오류를 식별합니다.

The error (2002) Can't connect to ...

MySQL 오류 2002는 서버가 실행 중이지 않거나 연결에 사용한 Unix socket 파일 이름 또는 TCP/IP 포트 번호가 올바르지 않을 때 일반적으로 표시됩니다.

The error (2003) Can't connect to MySQL server on 'server' (10061)

MySQL 서버에 대한 네트워크 연결이 거부되었을 때 표시되는 오류입니다.

Error in server handshake

MySQL 클라이언트 오류 번호 2012의 오류 메시지 식별 기준입니다.

Every derived table must have its own alias

MySQL 오류 번호 1248의 메시지를 현재 오류 표시와 대조해 파생 테이블 별칭 관련 오류인지 식별합니다.

Failed to remove key, please check if keyring is loaded.

MySQL에서 키 삭제 실패 메시지가 표시될 때 메시지 원문을 대조해 식별합니다.

Fetched an invalid key from keyring.

MySQL 오류 로그 또는 클라이언트 출력에서 키링의 잘못된 키 관련 오류 메시지를 식별합니다.

Got packet bigger than 'max_allowed_packet' bytes

MySQL 클라이언트 라이브러리의 오류 번호 2020, 심볼 CR_NET_PACKET_TOO_LARGE에 해당하는 오류 메시지입니다.

The group_replication_group_name '%s' is not a valid UUID

MySQL에서 group_replication_group_name 값이 유효한 UUID가 아니라는 오류 메시지 식별 방법입니다.

Incorrect table definition; there can be only one auto column and it must be defined as a key

MariaDB 오류 코드 1075의 오류 메시지와 SQLSTATE를 화면 또는 로그에서 대조하는 오류 식별 문서입니다.

Invalid value for command line option admin-address: '%s'

MySQL의 admin-address 명령행 옵션 값이 유효하지 않을 때 표시되는 오류 메시지입니다.

Lock wait timeout exceeded; try restarting transaction

MySQL 오류 1205를 확인하고 잠금을 기다린 트랜잭션과 차단한 트랜잭션을 구분하는 방법을 설명합니다.

Lost connection to MySQL server during query

MySQL 오류 2013을 식별하고 쿼리 응답 중 연결이 끊긴 구간을 확인하는 방법을 설명합니다.

Malformed packet

MySQL 클라이언트 오류 번호 2027의 심볼은 CR_MALFORMED_PACKET이며, 메시지는 `Malformed packet`입니다.

Master key rotation is not supported by storage engine.

MySQL에서 스토리지 엔진이 마스터 키 순환을 지원하지 않을 때 표시되는 오류 메시지를 식별합니다.

Multiple primary key defined

MySQL 오류 1068의 메시지를 대조해 식별합니다.

No data supplied for parameters in prepared statement

MySQL 클라이언트 오류 번호 2031과 심볼 CR_PARAMS_NOT_BOUND에 해당하는 오류 메시지입니다.

No database selected

MySQL 오류 번호 1046(ER_NO_DB_ERROR, SQLSTATE 3D000)의 메시지를 식별합니다.

Not unique table/alias: '%s'

MySQL 오류 번호 1066(ER_NONUNIQ_TABLE)의 메시지를 확인하는 문서입니다.

Out of range value for column '%s' at row %ld

MariaDB 오류 코드 1264와 SQLSTATE 22003의 오류 문자열을 로그 또는 클라이언트 출력에서 식별합니다.

Prepared statement needs to be re-prepared

MySQL 오류 번호 1615(ER_NEED_REPREPARE, SQLSTATE HY000)의 오류 메시지 식별 기준입니다.

Record has changed since last read in table '%s'

MySQL 서버 오류 1020(ER_CHECKREAD)의 메시지 형식을 확인하는 문서입니다.

MySQL server has gone away

MySQL 오류 2006을 식별하고 쿼리를 보내기 전에 연결을 사용할 수 없어진 이유를 확인하는 방법을 설명합니다.

Specified key was too long; max key length is %d bytes

MySQL 오류 번호 1071(ER_TOO_LONG_KEY)의 오류 메시지 식별 기준입니다.

Statement not prepared

MySQL 클라이언트 오류 번호 2030과 메시지 "Statement not prepared"를 식별합니다.

Subquery returns more than 1 row

MySQL 오류 1242(ER_SUBQUERY_NO_1_ROW)를 화면 또는 로그의 오류 문자열로 식별합니다.

Table definition has changed, please retry transaction

MySQL 오류 번호 1412(ER_TABLE_DEF_CHANGED) 식별 문서입니다.

Table '%s' already exists

MySQL 오류 번호 1050(ER_TABLE_EXISTS_ERROR)의 메시지 형식을 확인합니다.

Table '%s.%s' doesn't exist

MariaDB 오류 코드 1146과 SQLSTATE 42S02에 해당하는 테이블 미존재 오류 메시지를 식별합니다.

Too many connections

MySQL 오류 번호 1040(ER_CON_COUNT_ERROR)의 메시지 "Too many connections"를 식별하는 문서입니다.

MySQL 연결 수가 max_connections에 도달함

MySQL 오류 1040으로 연결 수 제한에 도달했을 때 연결 상태와 연결 풀을 확인합니다.

Unknown collation: '%s'

MariaDB 오류 코드 1273의 오류 메시지를 현재 화면 또는 로그와 대조해 식별합니다.

Unknown column '%s' in '%s'

MySQL 오류 1054(ER_BAD_FIELD_ERROR, SQLSTATE 42S22)의 메시지 문자열을 대조해 식별합니다.

Unknown database '%s'

MySQL 오류 번호 1049의 메시지 형식을 현재 화면 또는 로그와 대조하는 오류 식별 문서입니다.

Unknown locale: '%s'

MySQL에서 `Unknown locale: '%s'` 메시지가 표시될 때 오류 번호 1649와 SQLSTATE HY000를 대조해 식별하는 문서입니다.

Unknown MySQL error

MySQL 클라이언트 오류 번호 2000과 메시지 `Unknown MySQL error`를 식별하는 문서입니다.

Unknown MySQL server host '%s' (%d)

MySQL 클라이언트 오류 번호 2005에 해당하는 오류 메시지입니다.

Unknown system variable '%s'

MySQL 오류 번호 1193의 메시지와 현재 오류 문자열을 대조해 식별합니다.

You must SET PASSWORD before executing this statement

MariaDB/MySQL 오류 코드 1820의 오류 메시지를 식별합니다.

Network Namespaces is not supported on this platform

MySQL 공식 원문에 표시된 Network Namespaces is not supported on this platform 항목의 문구를 확인하는 문서입니다.

not be logged if the filter is invalid. Consider changing this

MySQL 공식 원문에 표시된 not be logged if the filter is invalid. Consider changing this 항목의 문구를 확인하는 문서입니다.

not supported.

MySQL 공식 원문에 표시된 not supported. 항목의 문구를 확인하는 문서입니다.

not supported for ACL tables.

MySQL 공식 원문에 표시된 not supported for ACL tables. 항목의 문구를 확인하는 문서입니다.

Occurs for failure to create or copy a file needed for some

MySQL 공식 원문에 표시된 Occurs for failure to create or copy a file needed for some 항목의 문구를 확인하는 문서입니다.

or too long.

MySQL 공식 원문에 표시된 or too long. 항목의 문구를 확인하는 문서입니다.

other transactions to complete, or decrease it if too many

MySQL 공식 원문에 표시된 other transactions to complete, or decrease it if too many 항목의 문구를 확인하는 문서입니다.

Out of sort memory, consider increasing server sort buffer size

MariaDB 또는 MySQL의 오류 코드 1038(ER_OUT_OF_SORTMEMORY) 메시지를 화면이나 로그에서 식별합니다.

Packet Too Large

MySQL 공식 원문에 표시된 Packet Too Large 항목의 문구를 확인하는 문서입니다.

path names too long (path name exceeds %d or file name exceeds

MySQL 공식 원문에 표시된 path names too long (path name exceeds %d or file name exceeds 항목의 문구를 확인하는 문서입니다.

positions are invalid.

MySQL 공식 원문에 표시된 positions are invalid. 항목의 문구를 확인하는 문서입니다.

A primary key index cannot be invisible

MySQL 공식 원문에 표시된 A primary key index cannot be invisible 항목의 문구를 확인하는 문서입니다.

The database server at {database_host}:{database_port} was reached but timed out. Please try again. Please make sure your database server is running at {database_host}:{database_port}.

Prisma P1002 오류 메시지를 확인해 데이터베이스 서버에 도달한 뒤 시간 초과된 상태를 식별합니다.

The provided value for the column is too long for the column's type. Column: {column_name}

Prisma Client Query Engine의 P2000 오류 메시지 식별 문서입니다.

Failed to parse the query {query_parsing_error} at {query_position}

Prisma Client Query Engine의 P2008 오류 메시지를 화면 또는 로그에서 대조해 쿼리 구문 분석 실패를 식별합니다.

The required connected records were not found. {details}

Prisma Client의 P2018 오류는 필수로 연결되어야 하는 레코드를 찾지 못했음을 나타냅니다.

Multiple errors occurred on the database during query execution: {errors}

Prisma P2027 오류 메시지를 대조하여 쿼리 실행 중 데이터베이스에서 복수 오류가 발생했는지 확인합니다.

procedure to improve handling of invalid or corrupted binary log

MySQL 공식 원문에 표시된 procedure to improve handling of invalid or corrupted binary log 항목의 문구를 확인하는 문서입니다.

RENAME USER failed even though

MySQL 공식 원문에 표시된 RENAME USER failed even though 항목의 문구를 확인하는 문서입니다.

renamed the schema failed to rename full-text search common

MySQL 공식 원문에 표시된 renamed the schema failed to rename full-text search common 항목의 문구를 확인하는 문서입니다.

repair-by-sorting algorithm and many (more than 450 million)

MySQL 공식 원문에 표시된 repair-by-sorting algorithm and many (more than 450 million) 항목의 문구를 확인하는 문서입니다.

repair failed

MySQL 공식 원문에 표시된 repair failed 항목의 문구를 확인하는 문서입니다.

Rollback Failure for Nontransactional Tables

MySQL 공식 원문에 표시된 Rollback Failure for Nontransactional Tables 항목의 문구를 확인하는 문서입니다.

Failed to encrypt content to write into binlog file: %s.

MySQL 공식 원문에 표시된 Failed to encrypt content to write into binlog file: %s. 항목의 문구를 확인하는 문서입니다.

Failed to store key, please check if keyring is loaded.

MySQL 공식 원문에 표시된 Failed to store key, please check if keyring is loaded. 항목의 문구를 확인하는 문서입니다.

Error reading a replication log encryption header: %s.

MySQL 공식 원문에 표시된 Error reading a replication log encryption header: %s. 항목의 문구를 확인하는 문서입니다.

Failed to change binlog_encryption value. %s.

MySQL 공식 원문에 표시된 Failed to change binlog_encryption value. %s. 항목의 문구를 확인하는 문서입니다.

SELECT failed in strict mode for

MySQL 공식 원문에 표시된 SELECT failed in strict mode for 항목의 문구를 확인하는 문서입니다.

server with a large number of tables, server startup failed to

MySQL 공식 원문에 표시된 server with a large number of tables, server startup failed to 항목의 문구를 확인하는 문서입니다.

Sort aborted

MariaDB 오류 코드 ER_FILSORT_ABORT의 오류 문자열을 식별합니다.

missing when checking the space ID of an encrypted tablespace

MySQL 공식 원문에 표시된 missing when checking the space ID of an encrypted tablespace 항목의 문구를 확인하는 문서입니다.

options was invalid, and the connection was allowed with a null

MySQL 공식 원문에 표시된 options was invalid, and the connection was allowed with a null 항목의 문구를 확인하는 문서입니다.

“Specified key was too long; max key length is 768

MySQL 공식 원문에 표시된 “Specified key was too long; max key length is 768 항목의 문구를 확인하는 문서입니다.

Failure to skip predicate locks when releasing gaps locks raised

MySQL 공식 원문에 표시된 Failure to skip predicate locks when releasing gaps locks raised 항목의 문구를 확인하는 문서입니다.

debug assertions, as did failure to remove the supremum record

MySQL 공식 원문에 표시된 debug assertions, as did failure to remove the supremum record 항목의 문구를 확인하는 문서입니다.

SSL connection error: %s

MySQL 공식 원문에 표시된 SSL connection error: %s 항목의 문구를 확인하는 문서입니다.

statements were not available with binary logging disabled,

MySQL 공식 원문에 표시된 statements were not available with binary logging disabled, 항목의 문구를 확인하는 문서입니다.

system variable cannot be enabled if the server does not support

MySQL 공식 원문에 표시된 system variable cannot be enabled if the server does not support 항목의 문구를 확인하는 문서입니다.

system variable enabled, it cannot accept TCP/IP connections

MySQL 공식 원문에 표시된 system variable enabled, it cannot accept TCP/IP connections 항목의 문구를 확인하는 문서입니다.

system variable, instead of the deprecated

MySQL 공식 원문에 표시된 system variable, instead of the deprecated 항목의 문구를 확인하는 문서입니다.

This tablespace can't be encrypted.

MySQL 공식 원문에 표시된 This tablespace can't be encrypted. 항목의 문구를 확인하는 문서입니다.

Tablespace is missing for table %s.

MySQL 공식 원문에 표시된 Tablespace is missing for table %s. 항목의 문구를 확인하는 문서입니다.

Cannot determine the type of the tablespace named '%s'.

MySQL 공식 원문에 표시된 Cannot determine the type of the tablespace named '%s'. 항목의 문구를 확인하는 문서입니다.

timeout expires. The statement that waited too long was

MySQL 공식 원문에 표시된 timeout expires. The statement that waited too long was 항목의 문구를 확인하는 문서입니다.

timeout parameter of function

MySQL 공식 원문에 표시된 timeout parameter of function 항목의 문구를 확인하는 문서입니다.

Unexpected EOF found when reading file '%s' (Errno: %d)

MariaDB 오류 코드 1039(ER_UNEXPECTED_EOF) 메시지를 로그 또는 화면의 오류 문자열과 대조해 식별합니다.

Unknown collation: '%s'.

MySQL 공식 원문에 표시된 Unknown collation: '%s'. 항목의 문구를 확인하는 문서입니다.

Unknown locale: '%s'.

MySQL 공식 원문에 표시된 Unknown locale: '%s'. 항목의 문구를 확인하는 문서입니다.

Unknown network namespace '%s'

MySQL 공식 원문에 표시된 Unknown network namespace '%s' 항목의 문구를 확인하는 문서입니다.

Upgrades from MariaDB to MySQL Community Edition failed on

MySQL 공식 원문에 표시된 Upgrades from MariaDB to MySQL Community Edition failed on 항목의 문구를 확인하는 문서입니다.

using has not been blocked by a firewall or port blocking

MySQL 공식 원문에 표시된 using has not been blocked by a firewall or port blocking 항목의 문구를 확인하는 문서입니다.

using temporary files and mmap, an invalid error was reported

MySQL 공식 원문에 표시된 using temporary files and mmap, an invalid error was reported 항목의 문구를 확인하는 문서입니다.

Variable name '%s' not found.

MySQL 공식 원문에 표시된 Variable name '%s' not found. 항목의 문구를 확인하는 문서입니다.

variable) was exceeded for routine %s

MySQL 공식 원문에 표시된 variable) was exceeded for routine %s 항목의 문구를 확인하는 문서입니다.

WAIT_FOR_EXECUTED_GTID_SET cannot wait for this GTID.

MySQL 공식 원문에 표시된 WAIT_FOR_EXECUTED_GTID_SET cannot wait for this GTID. 항목의 문구를 확인하는 문서입니다.

was invalid.

MySQL 공식 원문에 표시된 was invalid. 항목의 문구를 확인하는 문서입니다.

With auto-commit disabled and an XA transaction in PREPARED

MySQL 공식 원문에 표시된 With auto-commit disabled and an XA transaction in PREPARED 항목의 문구를 확인하는 문서입니다.

with expired passwords, who therefore were prevented from

MySQL 공식 원문에 표시된 with expired passwords, who therefore were prevented from 항목의 문구를 확인하는 문서입니다.

Error establishing a database connection

WordPress가 사이트를 표시하는 데 필요한 데이터베이스에 연결하지 못했을 때 화면 전체에 표시되는 오류입니다.

You cannot drop or rename a generated column if another column

MySQL 공식 원문에 표시된 You cannot drop or rename a generated column if another column 항목의 문구를 확인하는 문서입니다.

참고 자료

Oracle (MySQL) · 공식 자료 (새 창에서 열림)

확인 범위: definition, connection-methods · 확인일: 2026-07-23

Oracle (MySQL) · 공식 자료 (새 창에서 열림)

확인 범위: connection-limit · 확인일: 2026-07-23