errmsg.txt 15.9 KB
Newer Older
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1 2 3
/* Copyright Abandoned 1997 TCX DataKonsult AB & Monty Program KB & Detron HB
   This file is public domain and comes with NO WARRANTY of any kind */

4 5
character-set=latin1

bk@work.mysql.com's avatar
bk@work.mysql.com committed
6 7 8 9 10 11
"hashchk",
"isamchk",
"NO",
"YES",
"Can't create file '%-.64s' (errno: %d)",
"Can't create table '%-.64s' (errno: %d)",
12
"Can't create database '%-.64s' (errno: %d)",
13 14
"Can't create database '%-.64s'; database exists",
"Can't drop database '%-.64s'; database doesn't exist",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
15 16 17 18 19 20 21
"Error dropping database (can't delete '%-.64s', errno: %d)",
"Error dropping database (can't rmdir '%-.64s', errno: %d)",
"Error on delete of '%-.64s' (errno: %d)",
"Can't read record in system table",
"Can't get status of '%-.64s' (errno: %d)",
"Can't get working directory (errno: %d)",
"Can't lock file (errno: %d)",
22
"Can't open file: '%-.64s' (errno: %d)",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
23 24 25 26
"Can't find file: '%-.64s' (errno: %d)",
"Can't read dir of '%-.64s' (errno: %d)",
"Can't change dir to '%-.64s' (errno: %d)",
"Record has changed since last read in table '%-.64s'",
27
"Disk full (%s). Waiting for someone to free some space...",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
28 29 30 31 32 33 34 35
"Can't write, duplicate key in table '%-.64s'",
"Error on close of '%-.64s' (errno: %d)",
"Error reading file '%-.64s' (errno: %d)",
"Error on rename of '%-.64s' to '%-.64s' (errno: %d)",
"Error writing file '%-.64s' (errno: %d)",
"'%-.64s' is locked against change",
"Sort aborted",
"View '%-.64s' doesn't exist for '%-.64s'",
36 37
"Got error %d from storage engine",
"Table storage engine for '%-.64s' doesn't have this option",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
38 39
"Can't find record in '%-.64s'",
"Incorrect information in file: '%-.64s'",
40 41
"Incorrect key file for table: '%-.64s'; try to repair it",
"Old key file for table '%-.64s'; repair it!",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
42 43 44 45 46 47 48 49
"Table '%-.64s' is read only",
"Out of memory. Restart daemon and try again (needed %d bytes)",
"Out of sort memory. Increase daemon sort buffer size",
"Unexpected eof found when reading file '%-.64s' (errno: %d)",
"Too many connections",
"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",
"Can't get hostname for your address",
"Bad handshake",
50 51
"Access denied for user: '%-.32s'@'%-.64s' to database '%-.64s'",
"Access denied for user: '%-.32s'@'%-.64s' (Using password: %s)",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
"No Database Selected",
"Unknown command",
"Column '%-.64s' cannot be null",
"Unknown database '%-.64s'",
"Table '%-.64s' already exists",
"Unknown table '%-.64s'",
"Column: '%-.64s' in %-.64s is ambiguous",
"Server shutdown in progress",
"Unknown column '%-.64s' in '%-.64s'",
"'%-.64s' isn't in GROUP BY",
"Can't group on '%-.64s'",
"Statement has sum functions and columns in same statement",
"Column count doesn't match value count",
"Identifier name '%-.100s' is too long",
"Duplicate column name '%-.64s'",
"Duplicate key name '%-.64s'",
"Duplicate entry '%-.64s' for key %d",
"Incorrect column specifier for column '%-.64s'",
"%s near '%-.80s' at line %d",
"Query was empty",
"Not unique table/alias: '%-.64s'",
"Invalid default value for '%-.64s'",
"Multiple primary key defined",
75
"Too many keys specified; max %d keys allowed",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
76
"Too many key parts specified. Max %d parts allowed",
77
"Specified key was too long; max key length is %d bytes",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
78 79 80 81
"Key column '%-.64s' doesn't exist in table",
"BLOB column '%-.64s' can't be used in key specification with the used table type",
"Too big column length for column '%-.64s' (max = %d). Use BLOB instead",
"Incorrect table definition; There can only be one auto column and it must be defined as a key",
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
82
"%s: ready for connections.\nVersion: '%s'  socket: '%s'  port: %d\n",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
83 84 85 86 87 88
"%s: Normal shutdown\n",
"%s: Got signal %d. Aborting!\n",
"%s: Shutdown Complete\n",
"%s: Forcing close of thread %ld  user: '%-.32s'\n",
"Can't create IP socket",
"Table '%-.64s' has no index like the one used in CREATE INDEX. Recreate the table",
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
89
"Field separator argument is not what is expected. Check the manual",
90
"You can't use fixed rowlength with BLOBs. Please use 'fields terminated by'",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
91 92 93 94
"The file '%-.64s' must be in the database directory or be readable by all",
"File '%-.80s' already exists",
"Records: %ld  Deleted: %ld  Skipped: %ld  Warnings: %ld",
"Records: %ld  Duplicates: %ld",
95
"Incorrect sub part key. The used key part isn't a string, the used length is longer than the key part or the storage engine doesn't support unique sub keys",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
96 97 98
"You can't delete all columns with ALTER TABLE. Use DROP TABLE instead",
"Can't DROP '%-.64s'. Check that column/key exists",
"Records: %ld  Duplicates: %ld  Warnings: %ld",
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
99
"You can't specify target table '%-.64s' for update in FROM clause",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
100 101 102 103 104 105 106
"Unknown thread id: %lu",
"You are not owner of thread %lu",
"No tables used",
"Too many strings for column %-.64s and SET",
"Can't generate a unique log-filename %-.64s.(1-999)\n",
"Table '%-.64s' was locked with a READ lock and can't be updated",
"Table '%-.64s' was not locked with LOCK TABLES",
107
"BLOB/TEXT column '%-.64s' can't have a default value",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
108 109
"Incorrect database name '%-.100s'",
"Incorrect table name '%-.100s'",
110
"The SELECT would examine more rows than MAX_JOIN_SIZE. Check your WHERE and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is ok",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
111 112 113 114 115 116 117 118 119 120 121 122 123
"Unknown error",
"Unknown procedure '%-.64s'",
"Incorrect parameter count to procedure '%-.64s'",
"Incorrect parameters to procedure '%-.64s'",
"Unknown table '%-.64s' in %-.32s",
"Column '%-.64s' specified twice",
"Invalid use of group function",
"Table '%-.64s' uses an extension that doesn't exist in this MySQL version",
"A table must have at least 1 column",
"The table '%-.64s' is full",
"Unknown character set: '%-.64s'",
"Too many tables. MySQL can only use %d tables in a join",
"Too many columns",
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
124
"Too big row size. The maximum row size for the used table type, not counting BLOBs, is %ld. You have to change some fields to TEXT or BLOBs",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
"Thread stack overrun:  Used: %ld of a %ld stack.  Use 'mysqld -O thread_stack=#' to specify a bigger stack if needed",
"Cross dependency found in OUTER JOIN.  Examine your ON conditions",
"Column '%-.64s' is used with UNIQUE or INDEX but is not defined as NOT NULL",
"Can't load function '%-.64s'",
"Can't initialize function '%-.64s'; %-.80s",
"No paths allowed for shared library",
"Function '%-.64s' already exist",
"Can't open shared library '%-.64s' (errno: %d %-.64s)",
"Can't find function '%-.64s' in library'",
"Function '%-.64s' is not defined",
"Host '%-.64s' is blocked because of many connection errors.  Unblock with 'mysqladmin flush-hosts'",
"Host '%-.64s' is not allowed to connect to this MySQL server",
"You are using MySQL as an anonymous users and anonymous users are not allowed to change passwords",
"You must have privileges to update tables in the mysql database to be able to change passwords for others",
"Can't find any matching row in the user table",
"Rows matched: %ld  Changed: %ld  Warnings: %ld",
"Can't create a new thread (errno %d). If you are not out of available memory, you can consult the manual for a possible OS-dependent bug",
"Column count doesn't match value count at row %ld",
"Can't reopen table: '%-.64s'",
"Invalid use of NULL value",
"Got error '%-.64s' from regexp",
"Mixing of GROUP columns (MIN(),MAX(),COUNT()...) with no GROUP columns is illegal if there is no GROUP BY clause",
"There is no such grant defined for user '%-.32s' on host '%-.64s'",
148 149
"%-.16s command denied to user: '%-.32s'@'%-.64s' for table '%-.64s'",
"%-.16s command denied to user: '%-.32s'@'%-.64s' for column '%-.64s' in table '%-.64s'",
150
"Illegal GRANT/REVOKE command. Please consult the manual which privileges can be used",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
151 152 153 154
"The host or user argument to GRANT is too long",
"Table '%-.64s.%-.64s' doesn't exist",
"There is no such grant defined for user '%-.32s' on host '%-.64s' on table '%-.64s'",
"The used command is not allowed with this MySQL version",
155
"You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
156 157
"Delayed insert thread couldn't get requested lock for table %-.64s",
"Too many delayed threads in use",
158
"Aborted connection %ld to db: '%-.64s' user: '%-.32s' (%-.64s)",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
159 160 161 162 163 164 165 166 167 168 169 170
"Got a packet bigger than 'max_allowed_packet'",
"Got a read error from the connection pipe",
"Got an error from fcntl()",
"Got packets out of order",
"Couldn't uncompress communication packet",
"Got an error reading communication packets",
"Got timeout reading communication packets",
"Got an error writing communication packets",
"Got timeout writing communication packets",
"Result string is longer than max_allowed_packet",
"The used table type doesn't support BLOB/TEXT columns",
"The used table type doesn't support AUTO_INCREMENT columns",
171
"INSERT DELAYED can't be used with table '%-.64s' because it is locked with LOCK TABLES",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
172
"Incorrect column name '%-.100s'",
173
"The used storage engine can't index column '%-.64s'",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
174 175
"All tables in the MERGE table are not identically defined",
"Can't write, because of unique constraint, to table '%-.64s'",
176
"BLOB/TEXT column '%-.64s' used in key specification without a key length",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
177 178 179 180 181 182 183
"All parts of a PRIMARY KEY must be NOT NULL;  If you need NULL in a key, use UNIQUE instead",
"Result consisted of more than one row",
"This table type requires a primary key",
"This version of MySQL is not compiled with RAID support",
"You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column",
"Key '%-.64s' doesn't exist in table '%-.64s'",
"Can't open table",
paul@ice.snake.net's avatar
paul@ice.snake.net committed
184
"The storage engine for the table doesn't support %s",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
185 186 187 188 189
"You are not allowed to execute this command in a transaction",
"Got error %d during COMMIT",
"Got error %d during ROLLBACK",
"Got error %d during FLUSH_LOGS",
"Got error %d during CHECKPOINT",
190
"Aborted connection %ld to db: '%-.64s' user: '%-.32s' host: `%-.64s' (%-.64s)",
191
"The storage engine for the table does not support binary table dump",
192
"Binlog closed, cannot RESET MASTER",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
193 194 195 196 197
"Failed rebuilding the index of  dumped table '%-.64s'",
"Error from master: '%-.64s'",
"Net error reading from master",
"Net error writing to master",
"Can't find FULLTEXT index matching the column list",
198
"Can't execute the given command because you have active locked tables or an active transaction",
199
"Unknown system variable '%-.64s'",
200 201
"Table '%-.64s' is marked as crashed and should be repaired",
"Table '%-.64s' is marked as crashed and last (automatic?) repair failed",
202
"Some non-transactional changed tables couldn't be rolled back",
203
"Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage. Increase this mysqld variable and try again",
204 205
"This operation cannot be performed with a running slave, run STOP SLAVE first",
"This operation requires a running slave, configure slave and do START SLAVE",
206
"The server is not configured as slave, fix in config file or with CHANGE MASTER TO",
207
"Could not initialize master info structure, more error messages can be found in the MySQL error log",
208
"Could not create slave thread, check system resources",
209
"User %-.64s has already more than 'max_user_connections' active connections",
210
"You may only use constant expressions with SET",
211
"Lock wait timeout exceeded; Try restarting transaction",
212 213
"The total number of locks exceeds the lock table size",
"Update locks cannot be acquired during a READ UNCOMMITTED transaction",
214 215
"DROP DATABASE not allowed while thread is holding global read lock",
"CREATE DATABASE not allowed while thread is holding global read lock",
216
"Wrong arguments to %s",
217
"'%-.32s'@'%-.64s' is not allowed to create new users",
218
"Incorrect table definition; all MERGE tables must be in the same database",
219
"Deadlock found when trying to get lock; Try restarting transaction",
220 221
"The used table type doesn't support FULLTEXT indexes",
"Cannot add foreign key constraint",
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
222 223
"Cannot add or update a child row: a foreign key constraint fails",
"Cannot delete or update a parent row: a foreign key constraint fails",
224 225
"Error connecting to master: %-.128s",
"Error running query on master: %-.128s",
226
"Error when executing command %s: %-.128s",
monty@tik.mysql.fi's avatar
monty@tik.mysql.fi committed
227 228
"Wrong usage of %s and %s",
"The used SELECT statements have a different number of columns",
229
"Can't execute the query because you have a conflicting read lock",
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
230
"Mixing of transactional and non-transactional tables is disabled",
231
"Option '%s' used twice in statement",
232 233
"User '%-.64s' has exceeded the '%s' resource (current value: %ld)",
"Access denied. You need the %-.128s privilege for this operation",
234 235 236 237 238 239
"Variable '%-.64s' is a LOCAL variable and can't be used with SET GLOBAL",
"Variable '%-.64s' is a GLOBAL variable and should be set with SET GLOBAL",
"Variable '%-.64s' doesn't have a default value",
"Variable '%-.64s' can't be set to the value of '%-.64s'",
"Wrong argument type to variable '%-.64s'",
"Variable '%-.64s' can only be set, not read",
240
"Wrong usage/placement of '%s'",
241
"This version of MySQL doesn't yet support '%s'",
242
"Got fatal error %d: '%-.128s' from master when reading data from binary log",
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
243
"Slave SQL thread ignored the query because of replicate-*-table rules",
monty@mysql.com's avatar
monty@mysql.com committed
244
"Variable '%-.64s' is a %s variable",
245 246
"Wrong foreign key definition for '%-.64s': %s",
"Key reference and table reference doesn't match",
247
"Operand should contain %d column(s)",
248
"Subquery returns more than 1 row",
249
"Unknown prepared statement handler (%ld) given to %s",
250 251
"Help database is corrupt or does not exist",
"Cyclic reference on subqueries",
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
252
"Converting column '%s' from %s to %s",
253
"Reference '%-.64s' not supported (%s)",
254
"Every derived table must have it's own alias",
255
"Select %u was reduced during optimisation",
monty@narttu.mysql.fi's avatar
Merge  
monty@narttu.mysql.fi committed
256 257 258 259 260 261 262
"Table '%-.64s' from one of SELECT's can not be used  in %-.32s",
"Client does not support authentication protocol requested by server; consider upgrading MySQL client",
"All parts of a SPATIAL KEY must be NOT NULL",
"COLLATION '%s' is not valid for CHARACTER SET '%s'",
"Slave is already running",
"Slave has already been stopped",
"Too big size of uncompressed data. The maximum size is %d. (probably, length of uncompressed data was corrupted)",
serg@serg.mylan's avatar
serg@serg.mylan committed
263 264 265
"ZLIB: Not enough memory",
"ZLIB: Not enough room in the output buffer (probably, length of uncompressed data was corrupted)",
"ZLIB: Input data corrupted",
monty@narttu.mysql.fi's avatar
Merge  
monty@narttu.mysql.fi committed
266
"%d line(s) was(were) cut by group_concat()",
monty@mysql.com's avatar
monty@mysql.com committed
267 268
"Row %ld doesn't contain data for all columns",
"Row %ld was truncated; It contained more data than there where input columns",
269 270
"Data truncated, NULL supplied to NOT NULL column '%s' at row %ld",
"Data truncated, out of range for column '%s' at row %ld",
monty@narttu.mysql.fi's avatar
Merge  
monty@narttu.mysql.fi committed
271
"Data truncated for column '%s' at row %ld",
272
"Using storage engine %s for table '%s'",
273
"Illegal mix of collations (%s,%s) and (%s,%s) for operation '%s'",
monty@narttu.mysql.fi's avatar
Merge  
monty@narttu.mysql.fi committed
274 275
"Can't drop one or more of the requested users",
"Can't revoke all privileges, grant for one or more of the requested users",
276 277
"Illegal mix of collations (%s,%s), (%s,%s), (%s,%s) for operation '%s'",
"Illegal mix of collations for operation '%s'",
278
"Variable '%-.64s' is not a variable component (Can't be used as XXXX.variable_name)",
279
"Unknown collation: '%-.64s'",
280
"SSL parameters in CHANGE MASTER are ignored because this MySQL slave was compiled without SSL support; they can be used later when MySQL slave with SSL will be started",
bell@sanja.is.com.ua's avatar
merge  
bell@sanja.is.com.ua committed
281
"Server is running in --secure-auth mode, but '%s@%s' has a password in the old format; please change the password to the new format",
282
"Field or reference '%-.64s%s%-.64s%s%-.64s' of SELECT #%d was resolved in SELECT #%d",
283 284 285
"Wrong parameter or combination of parameters for START SLAVE UNTIL",
"It is recommended to use --skip-slave-start when doing step-by-step replication with START SLAVE UNTIL. Otherwise you will get problems if you get an unexpected slave's mysqld restart",
"SQL thread is not to be started so UNTIL options are ignored",
286 287
"Incorrect index name '%-.100s'",
"Incorrect catalog name '%-.100s'",
288
"Query cache failed to set size %lu, new query cache size is %lu",
monty@narttu.mysql.fi's avatar
Merge  
monty@narttu.mysql.fi committed
289
"Column '%-.64s' cannot be part of FULLTEXT index",
290
"Unknown key cache '%-.100s'",
hf@deer.(none)'s avatar
SCRUM  
hf@deer.(none) committed
291
"MySQL is started in --skip-name-resolve mode. You need to restart it without this switch for this grant to work",
292
"Unknown table engine '%s'",
293 294 295
"'%s' is deprecated, use '%s' instead",
"The target table %-.100s of the %s is not updatable",
"The '%s' feature was disabled; you need MySQL built with '%s' define to have it working",
monty@mysql.com's avatar
monty@mysql.com committed
296
"MySQL is started in --skip-grant-tables mode. You can't use this command",