MySQL 5.0 Reference Manual :: B Errors, Error Codes, and Common Problems :: B.3 Server Error Codes and

Size: px
Start display at page:

Download "MySQL 5.0 Reference Manual :: B Errors, Error Codes, and Common Problems :: B.3 Server Error Codes and"

Transcription

1 1 di 29 07/12/ :35 Skip navigation links Recommended Servers for MySQL The world's most popular open source database Contact a MySQL Representative Search Login Register MySQL.com Downloads Developer Zone Partners & Solutions Customer Login DevZone Documentation Librarian Articles Forums Bugs Forge Planet MySQL Labs MySQL 5.0 Reference Manual :: B Errors, Error Codes, and Common Problems :: B.3 Server Error Codes and Messages B.3. Server Error Codes and Messages MySQL programs have access to several types of error information when the server returns an error. For example, the mysql client program displays errors using the following format: «B.2 Types of Error Values B.4 Client Error Codes and Messages» Section Navigation [Toggle] B Errors, Error Codes, and Common Problems B.1 Sources of Error Information B.2 Types of Error Values B.3 Server Error Codes and shell> SELECT * FROM no_such_table; Messages ERROR 1146 (42S02): Table 'test.no_such_table' doesn't existb.4 Client Error Codes and Messages The message displayed contains three types of information: B.5 Problems and Common Errors A numeric error code (1146). This number is MySQL-specific and is not portable to other database systems. A five-character SQLSTATE value ('42S02'). The values are specified by ANSI SQL and ODBC and are more standardized. Not all MySQL error numbers are mapped to SQLSTATE error codes. The value 'HY000' (general error) is used for unmapped errors. A message string that provides a textual description of the error. Server error information comes from the following source files. For details about the way that error information is defined, see the MySQL Internals manual, available at Error message information is listed in the share/errmsg.txt file. %d and %s represent numbers and strings, respectively, that are substituted into the Message values when they are displayed. The Error values listed in share/errmsg.txt are used to generate the definitions in the include/mysqld_error.h and include/mysqld_ername.h MySQL source files. The SQLSTATE values listed in share/errmsg.txt are used to generate the definitions in the include/sql_state.h MySQL source file. MySQL Enterprise. MySQL Enterprise subscribers will find numerous articles about server error messages at, Error Messages.

2 2 di 29 07/12/ :35 For information about subscribing to MySQL Enterprise see /advisors.html. Because updates are frequent, it is possible that those files will contain additional error information not listed here. Error: 1000 SQLSTATE: HY000 (ER_HASHCHK) Message: hashchk Error: 1001 SQLSTATE: HY000 (ER_NISAMCHK) Message: isamchk Error: 1002 SQLSTATE: HY000 (ER_NO) Message: NO Error: 1003 SQLSTATE: HY000 (ER_YES) Message: YES Error: 1004 SQLSTATE: HY000 (ER_CANT_CREATE_FILE) Message: Can't create file '%s' (errno: %d) Error: 1005 SQLSTATE: HY000 (ER_CANT_CREATE_TABLE) Message: Can't create table '%s' (errno: %d) Error: 1006 SQLSTATE: HY000 (ER_CANT_CREATE_DB) Message: Can't create database '%s' (errno: %d) Error: 1007 SQLSTATE: HY000 (ER_DB_CREATE_EXISTS) Message: Can't create database '%s'; database exists Error: 1008 SQLSTATE: HY000 (ER_DB_DROP_EXISTS) Message: Can't drop database '%s'; database doesn't exist Error: 1009 SQLSTATE: HY000 (ER_DB_DROP_DELETE) Message: Error dropping database (can't delete '%s', errno: %d) Error: 1010 SQLSTATE: HY000 (ER_DB_DROP_RMDIR) Message: Error dropping database (can't rmdir '%s', errno: %d) Error: 1011 SQLSTATE: HY000 (ER_CANT_DELETE_FILE) Message: Error on delete of '%s' (errno: %d) Error: 1012 SQLSTATE: HY000 (ER_CANT_FIND_SYSTEM_REC) Message: Can't read record in system table Error: 1013 SQLSTATE: HY000 (ER_CANT_GET_STAT) Message: Can't get status of '%s' (errno: %d) Error: 1014 SQLSTATE: HY000 (ER_CANT_GET_WD) Message: Can't get working directory (errno: %d) Error: 1015 SQLSTATE: HY000 (ER_CANT_LOCK) Message: Can't lock file (errno: %d) Error: 1016 SQLSTATE: HY000 (ER_CANT_OPEN_FILE)

3 3 di 29 07/12/ :35 Message: Can't open file: '%s' (errno: %d) Error: 1017 SQLSTATE: HY000 (ER_FILE_NOT_FOUND) Message: Can't find file: '%s' (errno: %d) Error: 1018 SQLSTATE: HY000 (ER_CANT_READ_DIR) Message: Can't read dir of '%s' (errno: %d) Error: 1019 SQLSTATE: HY000 (ER_CANT_SET_WD) Message: Can't change dir to '%s' (errno: %d) Error: 1020 SQLSTATE: HY000 (ER_CHECKREAD) Message: Record has changed since last read in table '%s' Error: 1021 SQLSTATE: HY000 (ER_DISK_FULL) Message: Disk full (%s); waiting for someone to free some space... Error: 1022 SQLSTATE: (ER_DUP_KEY) Message: Can't write; duplicate key in table '%s' Error: 1023 SQLSTATE: HY000 (ER_ERROR_ON_CLOSE) Message: Error on close of '%s' (errno: %d) Error: 1024 SQLSTATE: HY000 (ER_ERROR_ON_READ) Message: Error reading file '%s' (errno: %d) Error: 1025 SQLSTATE: HY000 (ER_ERROR_ON_RENAME) Message: Error on rename of '%s' to '%s' (errno: %d) Error: 1026 SQLSTATE: HY000 (ER_ERROR_ON_WRITE) Message: Error writing file '%s' (errno: %d) Error: 1027 SQLSTATE: HY000 (ER_FILE_USED) Message: '%s' is locked against change Error: 1028 SQLSTATE: HY000 (ER_FILSORT_ABORT) Message: Sort aborted Error: 1029 SQLSTATE: HY000 (ER_FORM_NOT_FOUND) Message: View '%s' doesn't exist for '%s' Error: 1030 SQLSTATE: HY000 (ER_GET_ERRNO) Message: Got error %d from storage engine Error: 1031 SQLSTATE: HY000 (ER_ILLEGAL_HA) Message: Table storage engine for '%s' doesn't have this option Error: 1032 SQLSTATE: HY000 (ER_KEY_NOT_FOUND) Message: Can't find record in '%s' Error: 1033 SQLSTATE: HY000 (ER_NOT_FORM_FILE) Message: Incorrect information in file: '%s' Error: 1034 SQLSTATE: HY000 (ER_NOT_KEYFILE)

4 4 di 29 07/12/ :35 Message: Incorrect key file for table '%s'; try to repair it Error: 1035 SQLSTATE: HY000 (ER_OLD_KEYFILE) Message: Old key file for table '%s'; repair it! Error: 1036 SQLSTATE: HY000 (ER_OPEN_AS_READONLY) Message: Table '%s' is read only Error: 1037 SQLSTATE: HY001 (ER_OUTOFMEMORY) Message: Out of memory; restart server and try again (needed %d bytes) Error: 1038 SQLSTATE: HY001 (ER_OUT_OF_SORTMEMORY) Message: Out of sort memory; increase server sort buffer size Error: 1039 SQLSTATE: HY000 (ER_UNEXPECTED_EOF) Message: Unexpected EOF found when reading file '%s' (errno: %d) Error: 1040 SQLSTATE: (ER_CON_COUNT_ERROR) Message: Too many connections Error: 1041 SQLSTATE: HY000 (ER_OUT_OF_RESOURCES) Message: 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 Error: 1042 SQLSTATE: 08S01 (ER_BAD_HOST_ERROR) Message: Can't get hostname for your address Error: 1043 SQLSTATE: 08S01 (ER_HANDSHAKE_ERROR) Message: Bad handshake Error: 1044 SQLSTATE: (ER_DBACCESS_DENIED_ERROR) Message: Access denied for user to database '%s' Error: 1045 SQLSTATE: (ER_ACCESS_DENIED_ERROR) Message: Access denied for user (using password: %s) Error: 1046 SQLSTATE: 3D000 (ER_NO_DB_ERROR) Message: No database selected Error: 1047 SQLSTATE: 08S01 (ER_UNKNOWN_COM_ERROR) Message: Unknown command Error: 1048 SQLSTATE: (ER_BAD_NULL_ERROR) Message: Column '%s' cannot be null Error: 1049 SQLSTATE: (ER_BAD_DB_ERROR) Message: Unknown database '%s' Error: 1050 SQLSTATE: 42S01 (ER_TABLE_EXISTS_ERROR) Message: Table '%s' already exists Error: 1051 SQLSTATE: 42S02 (ER_BAD_TABLE_ERROR) Message: Unknown table '%s' Error: 1052 SQLSTATE: (ER_NON_UNIQ_ERROR)

5 5 di 29 07/12/ :35 Message: Column '%s' in %s is ambiguous Error: 1053 SQLSTATE: 08S01 (ER_SERVER_SHUTDOWN) Message: Server shutdown in progress Error: 1054 SQLSTATE: 42S22 (ER_BAD_FIELD_ERROR) Message: Unknown column '%s' in '%s' Error: 1055 SQLSTATE: (ER_WRONG_FIELD_WITH_GROUP) Message: '%s' isn't in GROUP BY Error: 1056 SQLSTATE: (ER_WRONG_GROUP_FIELD) Message: Can't group on '%s' Error: 1057 SQLSTATE: (ER_WRONG_SUM_SELECT) Message: Statement has sum functions and columns in same statement Error: 1058 SQLSTATE: 21S01 (ER_WRONG_VALUE_COUNT) Message: Column count doesn't match value count Error: 1059 SQLSTATE: (ER_TOO_LONG_IDENT) Message: Identifier name '%s' is too long Error: 1060 SQLSTATE: 42S21 (ER_DUP_FIELDNAME) Message: Duplicate column name '%s' Error: 1061 SQLSTATE: (ER_DUP_KEYNAME) Message: Duplicate key name '%s' Error: 1062 SQLSTATE: (ER_DUP_ENTRY) Message: Duplicate entry '%s' for key %d Error: 1063 SQLSTATE: (ER_WRONG_FIELD_SPEC) Message: Incorrect column specifier for column '%s' Error: 1064 SQLSTATE: (ER_PARSE_ERROR) Message: %s near '%s' at line %d Error: 1065 SQLSTATE: (ER_EMPTY_QUERY) Message: Query was empty Error: 1066 SQLSTATE: (ER_NONUNIQ_TABLE) Message: Not unique table/alias: '%s' Error: 1067 SQLSTATE: (ER_INVALID_DEFAULT) Message: Invalid default value for '%s' Error: 1068 SQLSTATE: (ER_MULTIPLE_PRI_KEY) Message: Multiple primary key defined Error: 1069 SQLSTATE: (ER_TOO_MANY_KEYS) Message: Too many keys specified; max %d keys allowed Error: 1070 SQLSTATE: (ER_TOO_MANY_KEY_PARTS)

6 6 di 29 07/12/ :35 Message: Too many key parts specified; max %d parts allowed Error: 1071 SQLSTATE: (ER_TOO_LONG_KEY) Message: Specified key was too long; max key length is %d bytes Error: 1072 SQLSTATE: (ER_KEY_COLUMN_DOES_NOT_EXITS) Message: Key column '%s' doesn't exist in table Error: 1073 SQLSTATE: (ER_BLOB_USED_AS_KEY) Message: BLOB column '%s' can't be used in key specification with the used table type Error: 1074 SQLSTATE: (ER_TOO_BIG_FIELDLENGTH) Message: Column length too big for column '%s' (max = %lu); use BLOB or TEXT instead Error: 1075 SQLSTATE: (ER_WRONG_AUTO_KEY) Message: Incorrect table definition; there can be only one auto column and it must be defined as a key Error: 1076 SQLSTATE: HY000 (ER_READY) Message: %s: ready for connections. Version: '%s' socket: '%s' port: %d Error: 1077 SQLSTATE: HY000 (ER_NORMAL_SHUTDOWN) Message: %s: Normal shutdown Error: 1078 SQLSTATE: HY000 (ER_GOT_SIGNAL) Message: %s: Got signal %d. Aborting! Error: 1079 SQLSTATE: HY000 (ER_SHUTDOWN_COMPLETE) Message: %s: Shutdown complete Error: 1080 SQLSTATE: 08S01 (ER_FORCING_CLOSE) Message: %s: Forcing close of thread %ld user: '%s' Error: 1081 SQLSTATE: 08S01 (ER_IPSOCK_ERROR) Message: Can't create IP socket Error: 1082 SQLSTATE: 42S12 (ER_NO_SUCH_INDEX) Message: Table '%s' has no index like the one used in CREATE INDEX; recreate the table Error: 1083 SQLSTATE: (ER_WRONG_FIELD_TERMINATORS) Message: Field separator argument is not what is expected; check the manual Error: 1084 SQLSTATE: (ER_BLOBS_AND_NO_TERMINATED) Message: You can't use fixed rowlength with BLOBs; please use 'fields terminated by' Error: 1085 SQLSTATE: HY000 (ER_TEXTFILE_NOT_READABLE) Message: The file '%s' must be in the database directory or be readable by all Error: 1086 SQLSTATE: HY000 (ER_FILE_EXISTS_ERROR) Message: File '%s' already exists Error: 1087 SQLSTATE: HY000 (ER_LOAD_INFO) Message: Records: %ld Deleted: %ld Skipped: %ld Warnings: %ld Error: 1088 SQLSTATE: HY000 (ER_ALTER_INFO)

7 7 di 29 07/12/ :35 Message: Records: %ld Duplicates: %ld Error: 1089 SQLSTATE: HY000 (ER_WRONG_SUB_KEY) Message: 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 Error: 1090 SQLSTATE: (ER_CANT_REMOVE_ALL_FIELDS) Message: You can't delete all columns with ALTER TABLE; use DROP TABLE instead Error: 1091 SQLSTATE: (ER_CANT_DROP_FIELD_OR_KEY) Message: Can't DROP '%s'; check that column/key exists Error: 1092 SQLSTATE: HY000 (ER_INSERT_INFO) Message: Records: %ld Duplicates: %ld Warnings: %ld Error: 1093 SQLSTATE: HY000 (ER_UPDATE_TABLE_USED) Message: You can't specify target table '%s' for update in FROM clause Error: 1094 SQLSTATE: HY000 (ER_NO_SUCH_THREAD) Message: Unknown thread id: %lu Error: 1095 SQLSTATE: HY000 (ER_KILL_DENIED_ERROR) Message: You are not owner of thread %lu Error: 1096 SQLSTATE: HY000 (ER_NO_TABLES_USED) Message: No tables used Error: 1097 SQLSTATE: HY000 (ER_TOO_BIG_SET) Message: Too many strings for column %s and SET Error: 1098 SQLSTATE: HY000 (ER_NO_UNIQUE_LOGFILE) Message: Can't generate a unique log-filename %s.(1-999) Error: 1099 SQLSTATE: HY000 (ER_TABLE_NOT_LOCKED_FOR_WRITE) Message: Table '%s' was locked with a READ lock and can't be updated Error: 1100 SQLSTATE: HY000 (ER_TABLE_NOT_LOCKED) Message: Table '%s' was not locked with LOCK TABLES Error: 1101 SQLSTATE: (ER_BLOB_CANT_HAVE_DEFAULT) Message: BLOB/TEXT column '%s' can't have a default value Error: 1102 SQLSTATE: (ER_WRONG_DB_NAME) Message: Incorrect database name '%s' Error: 1103 SQLSTATE: (ER_WRONG_TABLE_NAME) Message: Incorrect table name '%s' Error: 1104 SQLSTATE: (ER_TOO_BIG_SELECT) Message: The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is okay Error: 1105 SQLSTATE: HY000 (ER_UNKNOWN_ERROR) Message: Unknown error

8 8 di 29 07/12/ :35 Error: 1106 SQLSTATE: (ER_UNKNOWN_PROCEDURE) Message: Unknown procedure '%s' Error: 1107 SQLSTATE: (ER_WRONG_PARAMCOUNT_TO_PROCEDURE) Message: Incorrect parameter count to procedure '%s' Error: 1108 SQLSTATE: HY000 (ER_WRONG_PARAMETERS_TO_PROCEDURE) Message: Incorrect parameters to procedure '%s' Error: 1109 SQLSTATE: 42S02 (ER_UNKNOWN_TABLE) Message: Unknown table '%s' in %s Error: 1110 SQLSTATE: (ER_FIELD_SPECIFIED_TWICE) Message: Column '%s' specified twice Error: 1111 SQLSTATE: HY000 (ER_INVALID_GROUP_FUNC_USE) Message: Invalid use of group function Error: 1112 SQLSTATE: (ER_UNSUPPORTED_EXTENSION) Message: Table '%s' uses an extension that doesn't exist in this MySQL version Error: 1113 SQLSTATE: (ER_TABLE_MUST_HAVE_COLUMNS) Message: A table must have at least 1 column Error: 1114 SQLSTATE: HY000 (ER_RECORD_FILE_FULL) Message: The table '%s' is full Error: 1115 SQLSTATE: (ER_UNKNOWN_CHARACTER_SET) Message: Unknown character set: '%s' Error: 1116 SQLSTATE: HY000 (ER_TOO_MANY_TABLES) Message: Too many tables; MySQL can only use %d tables in a join Error: 1117 SQLSTATE: HY000 (ER_TOO_MANY_FIELDS) Message: Too many columns Error: 1118 SQLSTATE: (ER_TOO_BIG_ROWSIZE) Message: Row size too large. The maximum row size for the used table type, not counting BLOBs, is %ld. You have to change some columns to TEXT or BLOBs Error: 1119 SQLSTATE: HY000 (ER_STACK_OVERRUN) Message: Thread stack overrun: Used: %ld of a %ld stack. Use 'mysqld -O thread_stack=#' to specify a bigger stack if needed Error: 1120 SQLSTATE: (ER_WRONG_OUTER_JOIN) Message: Cross dependency found in OUTER JOIN; examine your ON conditions Error: 1121 SQLSTATE: (ER_NULL_COLUMN_IN_INDEX) Message: Column '%s' is used with UNIQUE or INDEX but is not defined as NOT NULL Error: 1122 SQLSTATE: HY000 (ER_CANT_FIND_UDF) Message: Can't load function '%s' Error: 1123 SQLSTATE: HY000 (ER_CANT_INITIALIZE_UDF)

9 9 di 29 07/12/ :35 Message: Can't initialize function '%s'; %s Error: 1124 SQLSTATE: HY000 (ER_UDF_NO_PATHS) Message: No paths allowed for shared library Error: 1125 SQLSTATE: HY000 (ER_UDF_EXISTS) Message: Function '%s' already exists Error: 1126 SQLSTATE: HY000 (ER_CANT_OPEN_LIBRARY) Message: Can't open shared library '%s' (errno: %d %s) Error: 1127 SQLSTATE: HY000 (ER_CANT_FIND_DL_ENTRY) Message: Can't find function '%s' in library Error: 1128 SQLSTATE: HY000 (ER_FUNCTION_NOT_DEFINED) Message: Function '%s' is not defined Error: 1129 SQLSTATE: HY000 (ER_HOST_IS_BLOCKED) Message: Host '%s' is blocked because of many connection errors; unblock with 'mysqladmin flushhosts' Error: 1130 SQLSTATE: HY000 (ER_HOST_NOT_PRIVILEGED) Message: Host '%s' is not allowed to connect to this MySQL server Error: 1131 SQLSTATE: (ER_PASSWORD_ANONYMOUS_USER) Message: You are using MySQL as an anonymous user and anonymous users are not allowed to change passwords Error: 1132 SQLSTATE: (ER_PASSWORD_NOT_ALLOWED) Message: You must have privileges to update tables in the mysql database to be able to change passwords for others Error: 1133 SQLSTATE: (ER_PASSWORD_NO_MATCH) Message: Can't find any matching row in the user table Error: 1134 SQLSTATE: HY000 (ER_UPDATE_INFO) Message: Rows matched: %ld Changed: %ld Warnings: %ld Error: 1135 SQLSTATE: HY000 (ER_CANT_CREATE_THREAD) Message: 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 Error: 1136 SQLSTATE: 21S01 (ER_WRONG_VALUE_COUNT_ON_ROW) Message: Column count doesn't match value count at row %ld Error: 1137 SQLSTATE: HY000 (ER_CANT_REOPEN_TABLE) Message: Can't reopen table: '%s' Error: 1138 SQLSTATE: (ER_INVALID_USE_OF_NULL) Message: Invalid use of NULL value Error: 1139 SQLSTATE: (ER_REGEXP_ERROR) Message: Got error '%s' from regexp Error: 1140 SQLSTATE: (ER_MIX_OF_GROUP_FUNC_AND_FIELDS)

10 10 di 29 07/12/ :35 Message: Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause Error: 1141 SQLSTATE: (ER_NONEXISTING_GRANT) Message: There is no such grant defined for user '%s' on host '%s' Error: 1142 SQLSTATE: (ER_TABLEACCESS_DENIED_ERROR) Message: %s command denied to user for table '%s' Error: 1143 SQLSTATE: (ER_COLUMNACCESS_DENIED_ERROR) Message: %s command denied to user for column '%s' in table '%s' Error: 1144 SQLSTATE: (ER_ILLEGAL_GRANT_FOR_TABLE) Message: Illegal GRANT/REVOKE command; please consult the manual to see which privileges can be used Error: 1145 SQLSTATE: (ER_GRANT_WRONG_HOST_OR_USER) Message: The host or user argument to GRANT is too long Error: 1146 SQLSTATE: 42S02 (ER_NO_SUCH_TABLE) Message: Table '%s.%s' doesn't exist Error: 1147 SQLSTATE: (ER_NONEXISTING_TABLE_GRANT) Message: There is no such grant defined for user '%s' on host '%s' on table '%s' Error: 1148 SQLSTATE: (ER_NOT_ALLOWED_COMMAND) Message: The used command is not allowed with this MySQL version Error: 1149 SQLSTATE: (ER_SYNTAX_ERROR) Message: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use Error: 1150 SQLSTATE: HY000 (ER_DELAYED_CANT_CHANGE_LOCK) Message: Delayed insert thread couldn't get requested lock for table %s Error: 1151 SQLSTATE: HY000 (ER_TOO_MANY_DELAYED_THREADS) Message: Too many delayed threads in use Error: 1152 SQLSTATE: 08S01 (ER_ABORTING_CONNECTION) Message: Aborted connection %ld to db: '%s' user: '%s' (%s) Error: 1153 SQLSTATE: 08S01 (ER_NET_PACKET_TOO_LARGE) Message: Got a packet bigger than 'max_allowed_packet' bytes Error: 1154 SQLSTATE: 08S01 (ER_NET_READ_ERROR_FROM_PIPE) Message: Got a read error from the connection pipe Error: 1155 SQLSTATE: 08S01 (ER_NET_FCNTL_ERROR) Message: Got an error from fcntl() Error: 1156 SQLSTATE: 08S01 (ER_NET_PACKETS_OUT_OF_ORDER) Message: Got packets out of order Error: 1157 SQLSTATE: 08S01 (ER_NET_UNCOMPRESS_ERROR) Message: Couldn't uncompress communication packet

11 11 di 29 07/12/ :35 Error: 1158 SQLSTATE: 08S01 (ER_NET_READ_ERROR) Message: Got an error reading communication packets Error: 1159 SQLSTATE: 08S01 (ER_NET_READ_INTERRUPTED) Message: Got timeout reading communication packets Error: 1160 SQLSTATE: 08S01 (ER_NET_ERROR_ON_WRITE) Message: Got an error writing communication packets Error: 1161 SQLSTATE: 08S01 (ER_NET_WRITE_INTERRUPTED) Message: Got timeout writing communication packets Error: 1162 SQLSTATE: (ER_TOO_LONG_STRING) Message: Result string is longer than 'max_allowed_packet' bytes Error: 1163 SQLSTATE: (ER_TABLE_CANT_HANDLE_BLOB) Message: The used table type doesn't support BLOB/TEXT columns Error: 1164 SQLSTATE: (ER_TABLE_CANT_HANDLE_AUTO_INCREMENT) Message: The used table type doesn't support AUTO_INCREMENT columns Error: 1165 SQLSTATE: HY000 (ER_DELAYED_INSERT_TABLE_LOCKED) Message: INSERT DELAYED can't be used with table '%s' because it is locked with LOCK TABLES Error: 1166 SQLSTATE: (ER_WRONG_COLUMN_NAME) Message: Incorrect column name '%s' Error: 1167 SQLSTATE: (ER_WRONG_KEY_COLUMN) Message: The used storage engine can't index column '%s' Error: 1168 SQLSTATE: HY000 (ER_WRONG_MRG_TABLE) Message: Unable to open underlying table which is differently defined or of non-myisam type or doesn't exist Error: 1169 SQLSTATE: (ER_DUP_UNIQUE) Message: Can't write, because of unique constraint, to table '%s' Error: 1170 SQLSTATE: (ER_BLOB_KEY_WITHOUT_LENGTH) Message: BLOB/TEXT column '%s' used in key specification without a key length Error: 1171 SQLSTATE: (ER_PRIMARY_CANT_HAVE_NULL) Message: All parts of a PRIMARY KEY must be NOT NULL; if you need NULL in a key, use UNIQUE instead Error: 1172 SQLSTATE: (ER_TOO_MANY_ROWS) Message: Result consisted of more than one row Error: 1173 SQLSTATE: (ER_REQUIRES_PRIMARY_KEY) Message: This table type requires a primary key Error: 1174 SQLSTATE: HY000 (ER_NO_RAID_COMPILED) Message: This version of MySQL is not compiled with RAID support Error: 1175 SQLSTATE: HY000 (ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE)

12 12 di 29 07/12/ :35 Message: You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column Error: 1176 SQLSTATE: HY000 (ER_KEY_DOES_NOT_EXITS) Message: Key '%s' doesn't exist in table '%s' Error: 1177 SQLSTATE: (ER_CHECK_NO_SUCH_TABLE) Message: Can't open table Error: 1178 SQLSTATE: (ER_CHECK_NOT_IMPLEMENTED) Message: The storage engine for the table doesn't support %s Error: 1179 SQLSTATE: (ER_CANT_DO_THIS_DURING_AN_TRANSACTION) Message: You are not allowed to execute this command in a transaction Error: 1180 SQLSTATE: HY000 (ER_ERROR_DURING_COMMIT) Message: Got error %d during COMMIT Error: 1181 SQLSTATE: HY000 (ER_ERROR_DURING_ROLLBACK) Message: Got error %d during ROLLBACK Error: 1182 SQLSTATE: HY000 (ER_ERROR_DURING_FLUSH_LOGS) Message: Got error %d during FLUSH_LOGS Error: 1183 SQLSTATE: HY000 (ER_ERROR_DURING_CHECKPOINT) Message: Got error %d during CHECKPOINT Error: 1184 SQLSTATE: 08S01 (ER_NEW_ABORTING_CONNECTION) Message: Aborted connection %ld to db: '%s' user: '%s' host: '%s' (%s) Error: 1185 SQLSTATE: HY000 (ER_DUMP_NOT_IMPLEMENTED) Message: The storage engine for the table does not support binary table dump Error: 1186 SQLSTATE: HY000 (ER_FLUSH_MASTER_BINLOG_CLOSED) Message: Binlog closed, cannot RESET MASTER Error: 1187 SQLSTATE: HY000 (ER_INDEX_REBUILD) Message: Failed rebuilding the index of dumped table '%s' Error: 1188 SQLSTATE: HY000 (ER_MASTER) Message: Error from master: '%s' Error: 1189 SQLSTATE: 08S01 (ER_MASTER_NET_READ) Message: Net error reading from master Error: 1190 SQLSTATE: 08S01 (ER_MASTER_NET_WRITE) Message: Net error writing to master Error: 1191 SQLSTATE: HY000 (ER_FT_MATCHING_KEY_NOT_FOUND) Message: Can't find FULLTEXT index matching the column list Error: 1192 SQLSTATE: HY000 (ER_LOCK_OR_ACTIVE_TRANSACTION) Message: Can't execute the given command because you have active locked tables or an active transaction

13 13 di 29 07/12/ :35 Error: 1193 SQLSTATE: HY000 (ER_UNKNOWN_SYSTEM_VARIABLE) Message: Unknown system variable '%s' Error: 1194 SQLSTATE: HY000 (ER_CRASHED_ON_USAGE) Message: Table '%s' is marked as crashed and should be repaired Error: 1195 SQLSTATE: HY000 (ER_CRASHED_ON_REPAIR) Message: Table '%s' is marked as crashed and last (automatic?) repair failed Error: 1196 SQLSTATE: HY000 (ER_WARNING_NOT_COMPLETE_ROLLBACK) Message: Some non-transactional changed tables couldn't be rolled back Error: 1197 SQLSTATE: HY000 (ER_TRANS_CACHE_FULL) Message: Multi-statement transaction required more than 'max_binlog_cache_size' bytes of storage; increase this mysqld variable and try again Error: 1198 SQLSTATE: HY000 (ER_SLAVE_MUST_STOP) Message: This operation cannot be performed with a running slave; run STOP SLAVE first Error: 1199 SQLSTATE: HY000 (ER_SLAVE_NOT_RUNNING) Message: This operation requires a running slave; configure slave and do START SLAVE Error: 1200 SQLSTATE: HY000 (ER_BAD_SLAVE) Message: The server is not configured as slave; fix in config file or with CHANGE MASTER TO Error: 1201 SQLSTATE: HY000 (ER_MASTER_INFO) Message: Could not initialize master info structure; more error messages can be found in the MySQL error log Error: 1202 SQLSTATE: HY000 (ER_SLAVE_THREAD) Message: Could not create slave thread; check system resources Error: 1203 SQLSTATE: (ER_TOO_MANY_USER_CONNECTIONS) Message: User %s already has more than 'max_user_connections' active connections Error: 1204 SQLSTATE: HY000 (ER_SET_CONSTANTS_ONLY) Message: You may only use constant expressions with SET Error: 1205 SQLSTATE: HY000 (ER_LOCK_WAIT_TIMEOUT) Message: Lock wait timeout exceeded; try restarting transaction Error: 1206 SQLSTATE: HY000 (ER_LOCK_TABLE_FULL) Message: The total number of locks exceeds the lock table size Error: 1207 SQLSTATE: (ER_READ_ONLY_TRANSACTION) Message: Update locks cannot be acquired during a READ UNCOMMITTED transaction Error: 1208 SQLSTATE: HY000 (ER_DROP_DB_WITH_READ_LOCK) Message: DROP DATABASE not allowed while thread is holding global read lock Error: 1209 SQLSTATE: HY000 (ER_CREATE_DB_WITH_READ_LOCK) Message: CREATE DATABASE not allowed while thread is holding global read lock Error: 1210 SQLSTATE: HY000 (ER_WRONG_ARGUMENTS)

14 14 di 29 07/12/ :35 Message: Incorrect arguments to %s Error: 1211 SQLSTATE: (ER_NO_PERMISSION_TO_CREATE_USER) Message: is not allowed to create new users Error: 1212 SQLSTATE: HY000 (ER_UNION_TABLES_IN_DIFFERENT_DIR) Message: Incorrect table definition; all MERGE tables must be in the same database Error: 1213 SQLSTATE: (ER_LOCK_DEADLOCK) Message: Deadlock found when trying to get lock; try restarting transaction Error: 1214 SQLSTATE: HY000 (ER_TABLE_CANT_HANDLE_FT) Message: The used table type doesn't support FULLTEXT indexes Error: 1215 SQLSTATE: HY000 (ER_CANNOT_ADD_FOREIGN) Message: Cannot add foreign key constraint Error: 1216 SQLSTATE: (ER_NO_REFERENCED_ROW) Message: Cannot add or update a child row: a foreign key constraint fails Error: 1217 SQLSTATE: (ER_ROW_IS_REFERENCED) Message: Cannot delete or update a parent row: a foreign key constraint fails Error: 1218 SQLSTATE: 08S01 (ER_CONNECT_TO_MASTER) Message: Error connecting to master: %s Error: 1219 SQLSTATE: HY000 (ER_QUERY_ON_MASTER) Message: Error running query on master: %s Error: 1220 SQLSTATE: HY000 (ER_ERROR_WHEN_EXECUTING_COMMAND) Message: Error when executing command %s: %s Error: 1221 SQLSTATE: HY000 (ER_WRONG_USAGE) Message: Incorrect usage of %s and %s Error: 1222 SQLSTATE: (ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT) Message: The used SELECT statements have a different number of columns Error: 1223 SQLSTATE: HY000 (ER_CANT_UPDATE_WITH_READLOCK) Message: Can't execute the query because you have a conflicting read lock Error: 1224 SQLSTATE: HY000 (ER_MIXING_NOT_ALLOWED) Message: Mixing of transactional and non-transactional tables is disabled Error: 1225 SQLSTATE: HY000 (ER_DUP_ARGUMENT) Message: Option '%s' used twice in statement Error: 1226 SQLSTATE: (ER_USER_LIMIT_REACHED) Message: User '%s' has exceeded the '%s' resource (current value: %ld) Error: 1227 SQLSTATE: (ER_SPECIFIC_ACCESS_DENIED_ERROR) Message: Access denied; you need the %s privilege for this operation Error: 1228 SQLSTATE: HY000 (ER_LOCAL_VARIABLE)

15 15 di 29 07/12/ :35 Message: Variable '%s' is a SESSION variable and can't be used with SET GLOBAL Error: 1229 SQLSTATE: HY000 (ER_GLOBAL_VARIABLE) Message: Variable '%s' is a GLOBAL variable and should be set with SET GLOBAL Error: 1230 SQLSTATE: (ER_NO_DEFAULT) Message: Variable '%s' doesn't have a default value Error: 1231 SQLSTATE: (ER_WRONG_VALUE_FOR_VAR) Message: Variable '%s' can't be set to the value of '%s' Error: 1232 SQLSTATE: (ER_WRONG_TYPE_FOR_VAR) Message: Incorrect argument type to variable '%s' Error: 1233 SQLSTATE: HY000 (ER_VAR_CANT_BE_READ) Message: Variable '%s' can only be set, not read Error: 1234 SQLSTATE: (ER_CANT_USE_OPTION_HERE) Message: Incorrect usage/placement of '%s' Error: 1235 SQLSTATE: (ER_NOT_SUPPORTED_YET) Message: This version of MySQL doesn't yet support '%s' Error: 1236 SQLSTATE: HY000 (ER_MASTER_FATAL_ERROR_READING_BINLOG) Message: Got fatal error %d: '%s' from master when reading data from binary log Error: 1237 SQLSTATE: HY000 (ER_SLAVE_IGNORED_TABLE) Message: Slave SQL thread ignored the query because of replicate-*-table rules Error: 1238 SQLSTATE: HY000 (ER_INCORRECT_GLOBAL_LOCAL_VAR) Message: Variable '%s' is a %s variable Error: 1239 SQLSTATE: (ER_WRONG_FK_DEF) Message: Incorrect foreign key definition for '%s': %s Error: 1240 SQLSTATE: HY000 (ER_KEY_REF_DO_NOT_MATCH_TABLE_REF) Message: Key reference and table reference don't match Error: 1241 SQLSTATE: (ER_OPERAND_COLUMNS) Message: Operand should contain %d column(s) Error: 1242 SQLSTATE: (ER_SUBQUERY_NO_1_ROW) Message: Subquery returns more than 1 row Error: 1243 SQLSTATE: HY000 (ER_UNKNOWN_STMT_HANDLER) Message: Unknown prepared statement handler (%.*s) given to %s Error: 1244 SQLSTATE: HY000 (ER_CORRUPT_HELP_DB) Message: Help database is corrupt or does not exist Error: 1245 SQLSTATE: HY000 (ER_CYCLIC_REFERENCE) Message: Cyclic reference on subqueries Error: 1246 SQLSTATE: HY000 (ER_AUTO_CONVERT)

16 16 di 29 07/12/ :35 Message: Converting column '%s' from %s to %s Error: 1247 SQLSTATE: 42S22 (ER_ILLEGAL_REFERENCE) Message: Reference '%s' not supported (%s) Error: 1248 SQLSTATE: (ER_DERIVED_MUST_HAVE_ALIAS) Message: Every derived table must have its own alias Error: 1249 SQLSTATE: (ER_SELECT_REDUCED) Message: Select %u was reduced during optimization Error: 1250 SQLSTATE: (ER_TABLENAME_NOT_ALLOWED_HERE) Message: Table '%s' from one of the SELECTs cannot be used in %s Error: 1251 SQLSTATE: (ER_NOT_SUPPORTED_AUTH_MODE) Message: Client does not support authentication protocol requested by server; consider upgrading MySQL client Error: 1252 SQLSTATE: (ER_SPATIAL_CANT_HAVE_NULL) Message: All parts of a SPATIAL index must be NOT NULL Error: 1253 SQLSTATE: (ER_COLLATION_CHARSET_MISMATCH) Message: COLLATION '%s' is not valid for CHARACTER SET '%s' Error: 1254 SQLSTATE: HY000 (ER_SLAVE_WAS_RUNNING) Message: Slave is already running Error: 1255 SQLSTATE: HY000 (ER_SLAVE_WAS_NOT_RUNNING) Message: Slave already has been stopped Error: 1256 SQLSTATE: HY000 (ER_TOO_BIG_FOR_UNCOMPRESS) Message: Uncompressed data size too large; the maximum size is %d (probably, length of uncompressed data was corrupted) Error: 1257 SQLSTATE: HY000 (ER_ZLIB_Z_MEM_ERROR) Message: ZLIB: Not enough memory Error: 1258 SQLSTATE: HY000 (ER_ZLIB_Z_BUF_ERROR) Message: ZLIB: Not enough room in the output buffer (probably, length of uncompressed data was corrupted) Error: 1259 SQLSTATE: HY000 (ER_ZLIB_Z_DATA_ERROR) Message: ZLIB: Input data corrupted Error: 1260 SQLSTATE: HY000 (ER_CUT_VALUE_GROUP_CONCAT) Message: %d line(s) were cut by GROUP_CONCAT() Error: 1261 SQLSTATE: (ER_WARN_TOO_FEW_RECORDS) Message: Row %ld doesn't contain data for all columns Error: 1262 SQLSTATE: (ER_WARN_TOO_MANY_RECORDS) Message: Row %ld was truncated; it contained more data than there were input columns Error: 1263 SQLSTATE: (ER_WARN_NULL_TO_NOTNULL) Message: Column was set to data type implicit default; NULL supplied for NOT NULL column '%s' at

17 17 di 29 07/12/ :35 row %ld Error: 1264 SQLSTATE: (ER_WARN_DATA_OUT_OF_RANGE) Message: Out of range value adjusted for column '%s' at row %ld Error: 1265 SQLSTATE: (WARN_DATA_TRUNCATED) Message: Data truncated for column '%s' at row %ld Error: 1266 SQLSTATE: HY000 (ER_WARN_USING_OTHER_HANDLER) Message: Using storage engine %s for table '%s' Error: 1267 SQLSTATE: HY000 (ER_CANT_AGGREGATE_2COLLATIONS) Message: Illegal mix of collations (%s,%s) and (%s,%s) for operation '%s' Error: 1268 SQLSTATE: HY000 (ER_DROP_USER) Message: Cannot drop one or more of the requested users Error: 1269 SQLSTATE: HY000 (ER_REVOKE_GRANTS) Message: Can't revoke all privileges for one or more of the requested users Error: 1270 SQLSTATE: HY000 (ER_CANT_AGGREGATE_3COLLATIONS) Message: Illegal mix of collations (%s,%s), (%s,%s), (%s,%s) for operation '%s' Error: 1271 SQLSTATE: HY000 (ER_CANT_AGGREGATE_NCOLLATIONS) Message: Illegal mix of collations for operation '%s' Error: 1272 SQLSTATE: HY000 (ER_VARIABLE_IS_NOT_STRUCT) Message: Variable '%s' is not a variable component (can't be used as XXXX.variable_name) Error: 1273 SQLSTATE: HY000 (ER_UNKNOWN_COLLATION) Message: Unknown collation: '%s' Error: 1274 SQLSTATE: HY000 (ER_SLAVE_IGNORED_SSL_PARAMS) Message: SSL parameters in CHANGE MASTER are ignored because this MySQL slave was compiled without SSL support; they can be used later if MySQL slave with SSL is started Error: 1275 SQLSTATE: HY000 (ER_SERVER_IS_IN_SECURE_AUTH_MODE) Message: 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 Error: 1276 SQLSTATE: HY000 (ER_WARN_FIELD_RESOLVED) Message: Field or reference '%s%s%s%s%s' of SELECT #%d was resolved in SELECT #%d Error: 1277 SQLSTATE: HY000 (ER_BAD_SLAVE_UNTIL_COND) Message: Incorrect parameter or combination of parameters for START SLAVE UNTIL Error: 1278 SQLSTATE: HY000 (ER_MISSING_SKIP_SLAVE) Message: 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 Error: 1279 SQLSTATE: HY000 (ER_UNTIL_COND_IGNORED) Message: SQL thread is not to be started so UNTIL options are ignored Error: 1280 SQLSTATE: (ER_WRONG_NAME_FOR_INDEX) Message: Incorrect index name '%s'

18 18 di 29 07/12/ :35 Error: 1281 SQLSTATE: (ER_WRONG_NAME_FOR_CATALOG) Message: Incorrect catalog name '%s' Error: 1282 SQLSTATE: HY000 (ER_WARN_QC_RESIZE) Message: Query cache failed to set size %lu; new query cache size is %lu Error: 1283 SQLSTATE: HY000 (ER_BAD_FT_COLUMN) Message: Column '%s' cannot be part of FULLTEXT index Error: 1284 SQLSTATE: HY000 (ER_UNKNOWN_KEY_CACHE) Message: Unknown key cache '%s' Error: 1285 SQLSTATE: HY000 (ER_WARN_HOSTNAME_WONT_WORK) Message: MySQL is started in --skip-name-resolve mode; you must restart it without this switch for this grant to work Error: 1286 SQLSTATE: (ER_UNKNOWN_STORAGE_ENGINE) Message: Unknown table engine '%s' Error: 1287 SQLSTATE: HY000 (ER_WARN_DEPRECATED_SYNTAX) Message: '%s' is deprecated; use '%s' instead Error: 1288 SQLSTATE: HY000 (ER_NON_UPDATABLE_TABLE) Message: The target table %s of the %s is not updatable Error: 1289 SQLSTATE: HY000 (ER_FEATURE_DISABLED) Message: The '%s' feature is disabled; you need MySQL built with '%s' to have it working Error: 1290 SQLSTATE: HY000 (ER_OPTION_PREVENTS_STATEMENT) Message: The MySQL server is running with the %s option so it cannot execute this statement Error: 1291 SQLSTATE: HY000 (ER_DUPLICATED_VALUE_IN_TYPE) Message: Column '%s' has duplicated value '%s' in %s Error: 1292 SQLSTATE: (ER_TRUNCATED_WRONG_VALUE) Message: Truncated incorrect %s value: '%s' Error: 1293 SQLSTATE: HY000 (ER_TOO_MUCH_AUTO_TIMESTAMP_COLS) Message: Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause Error: 1294 SQLSTATE: HY000 (ER_INVALID_ON_UPDATE) Message: Invalid ON UPDATE clause for '%s' column Error: 1295 SQLSTATE: HY000 (ER_UNSUPPORTED_PS) Message: This command is not supported in the prepared statement protocol yet Error: 1296 SQLSTATE: HY000 (ER_GET_ERRMSG) Message: Got error %d '%s' from %s Error: 1297 SQLSTATE: HY000 (ER_GET_TEMPORARY_ERRMSG) Message: Got temporary error %d '%s' from %s Error: 1298 SQLSTATE: HY000 (ER_UNKNOWN_TIME_ZONE)

19 19 di 29 07/12/ :35 Message: Unknown or incorrect time zone: '%s' Error: 1299 SQLSTATE: HY000 (ER_WARN_INVALID_TIMESTAMP) Message: Invalid TIMESTAMP value in column '%s' at row %ld Error: 1300 SQLSTATE: HY000 (ER_INVALID_CHARACTER_STRING) Message: Invalid %s character string: '%s' Error: 1301 SQLSTATE: HY000 (ER_WARN_ALLOWED_PACKET_OVERFLOWED) Message: Result of %s() was larger than max_allowed_packet (%ld) - truncated Error: 1302 SQLSTATE: HY000 (ER_CONFLICTING_DECLARATIONS) Message: Conflicting declarations: '%s%s' and '%s%s' Error: 1303 SQLSTATE: 2F003 (ER_SP_NO_RECURSIVE_CREATE) Message: Can't create a %s from within another stored routine Error: 1304 SQLSTATE: (ER_SP_ALREADY_EXISTS) Message: %s %s already exists Error: 1305 SQLSTATE: (ER_SP_DOES_NOT_EXIST) Message: %s %s does not exist Error: 1306 SQLSTATE: HY000 (ER_SP_DROP_FAILED) Message: Failed to DROP %s %s Error: 1307 SQLSTATE: HY000 (ER_SP_STORE_FAILED) Message: Failed to CREATE %s %s Error: 1308 SQLSTATE: (ER_SP_LILABEL_MISMATCH) Message: %s with no matching label: %s Error: 1309 SQLSTATE: (ER_SP_LABEL_REDEFINE) Message: Redefining label %s Error: 1310 SQLSTATE: (ER_SP_LABEL_MISMATCH) Message: End-label %s without match Error: 1311 SQLSTATE: (ER_SP_UNINIT_VAR) Message: Referring to uninitialized variable %s Error: 1312 SQLSTATE: 0A000 (ER_SP_BADSELECT) Message: PROCEDURE %s can't return a result set in the given context Error: 1313 SQLSTATE: (ER_SP_BADRETURN) Message: RETURN is only allowed in a FUNCTION Error: 1314 SQLSTATE: 0A000 (ER_SP_BADSTATEMENT) Message: %s is not allowed in stored procedures Error: 1315 SQLSTATE: (ER_UPDATE_LOG_DEPRECATED_IGNORED) Message: The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been ignored Error: 1316 SQLSTATE: (ER_UPDATE_LOG_DEPRECATED_TRANSLATED)

20 20 di 29 07/12/ :35 Message: The update log is deprecated and replaced by the binary log; SET SQL_LOG_UPDATE has been translated to SET SQL_LOG_BIN Error: 1317 SQLSTATE: (ER_QUERY_INTERRUPTED) Message: Query execution was interrupted Error: 1318 SQLSTATE: (ER_SP_WRONG_NO_OF_ARGS) Message: Incorrect number of arguments for %s %s; expected %u, got %u Error: 1319 SQLSTATE: (ER_SP_COND_MISMATCH) Message: Undefined CONDITION: %s Error: 1320 SQLSTATE: (ER_SP_NORETURN) Message: No RETURN found in FUNCTION %s Error: 1321 SQLSTATE: 2F005 (ER_SP_NORETURNEND) Message: FUNCTION %s ended without RETURN Error: 1322 SQLSTATE: (ER_SP_BAD_CURSOR_QUERY) Message: Cursor statement must be a SELECT Error: 1323 SQLSTATE: (ER_SP_BAD_CURSOR_SELECT) Message: Cursor SELECT must not have INTO Error: 1324 SQLSTATE: (ER_SP_CURSOR_MISMATCH) Message: Undefined CURSOR: %s Error: 1325 SQLSTATE: (ER_SP_CURSOR_ALREADY_OPEN) Message: Cursor is already open Error: 1326 SQLSTATE: (ER_SP_CURSOR_NOT_OPEN) Message: Cursor is not open Error: 1327 SQLSTATE: (ER_SP_UNDECLARED_VAR) Message: Undeclared variable: %s Error: 1328 SQLSTATE: HY000 (ER_SP_WRONG_NO_OF_FETCH_ARGS) Message: Incorrect number of FETCH variables Error: 1329 SQLSTATE: (ER_SP_FETCH_NO_DATA) Message: No data - zero rows fetched, selected, or processed Error: 1330 SQLSTATE: (ER_SP_DUP_PARAM) Message: Duplicate parameter: %s Error: 1331 SQLSTATE: (ER_SP_DUP_VAR) Message: Duplicate variable: %s Error: 1332 SQLSTATE: (ER_SP_DUP_COND) Message: Duplicate condition: %s Error: 1333 SQLSTATE: (ER_SP_DUP_CURS) Message: Duplicate cursor: %s Error: 1334 SQLSTATE: HY000 (ER_SP_CANT_ALTER)

21 21 di 29 07/12/ :35 Message: Failed to ALTER %s %s Error: 1335 SQLSTATE: 0A000 (ER_SP_SUBSELECT_NYI) Message: Subselect value not supported Error: 1336 SQLSTATE: 0A000 (ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG) Message: %s is not allowed in stored function or trigger Error: 1337 SQLSTATE: (ER_SP_VARCOND_AFTER_CURSHNDLR) Message: Variable or condition declaration after cursor or handler declaration Error: 1338 SQLSTATE: (ER_SP_CURSOR_AFTER_HANDLER) Message: Cursor declaration after handler declaration Error: 1339 SQLSTATE: (ER_SP_CASE_NOT_FOUND) Message: Case not found for CASE statement Error: 1340 SQLSTATE: HY000 (ER_FPARSER_TOO_BIG_FILE) Message: Configuration file '%s' is too big Error: 1341 SQLSTATE: HY000 (ER_FPARSER_BAD_HEADER) Message: Malformed file type header in file '%s' Error: 1342 SQLSTATE: HY000 (ER_FPARSER_EOF_IN_COMMENT) Message: Unexpected end of file while parsing comment '%s' Error: 1343 SQLSTATE: HY000 (ER_FPARSER_ERROR_IN_PARAMETER) Message: Error while parsing parameter '%s' (line: '%s') Error: 1344 SQLSTATE: HY000 (ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER) Message: Unexpected end of file while skipping unknown parameter '%s' Error: 1345 SQLSTATE: HY000 (ER_VIEW_NO_EXPLAIN) Message: EXPLAIN/SHOW can not be issued; lacking privileges for underlying table Error: 1346 SQLSTATE: HY000 (ER_FRM_UNKNOWN_TYPE) Message: File '%s' has unknown type '%s' in its header Error: 1347 SQLSTATE: HY000 (ER_WRONG_OBJECT) Message: '%s.%s' is not %s Error: 1348 SQLSTATE: HY000 (ER_NONUPDATEABLE_COLUMN) Message: Column '%s' is not updatable Error: 1349 SQLSTATE: HY000 (ER_VIEW_SELECT_DERIVED) Message: View's SELECT contains a subquery in the FROM clause Error: 1350 SQLSTATE: HY000 (ER_VIEW_SELECT_CLAUSE) Message: View's SELECT contains a '%s' clause Error: 1351 SQLSTATE: HY000 (ER_VIEW_SELECT_VARIABLE) Message: View's SELECT contains a variable or parameter Error: 1352 SQLSTATE: HY000 (ER_VIEW_SELECT_TMPTABLE)

22 22 di 29 07/12/ :35 Message: View's SELECT refers to a temporary table '%s' Error: 1353 SQLSTATE: HY000 (ER_VIEW_WRONG_LIST) Message: View's SELECT and view's field list have different column counts Error: 1354 SQLSTATE: HY000 (ER_WARN_VIEW_MERGE) Message: View merge algorithm can't be used here for now (assumed undefined algorithm) Error: 1355 SQLSTATE: HY000 (ER_WARN_VIEW_WITHOUT_KEY) Message: View being updated does not have complete key of underlying table in it Error: 1356 SQLSTATE: HY000 (ER_VIEW_INVALID) Message: View '%s.%s' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them Error: 1357 SQLSTATE: HY000 (ER_SP_NO_DROP_SP) Message: Can't drop or alter a %s from within another stored routine Error: 1358 SQLSTATE: HY000 (ER_SP_GOTO_IN_HNDLR) Message: GOTO is not allowed in a stored procedure handler Error: 1359 SQLSTATE: HY000 (ER_TRG_ALREADY_EXISTS) Message: Trigger already exists Error: 1360 SQLSTATE: HY000 (ER_TRG_DOES_NOT_EXIST) Message: Trigger does not exist Error: 1361 SQLSTATE: HY000 (ER_TRG_ON_VIEW_OR_TEMP_TABLE) Message: Trigger's '%s' is view or temporary table Error: 1362 SQLSTATE: HY000 (ER_TRG_CANT_CHANGE_ROW) Message: Updating of %s row is not allowed in %strigger Error: 1363 SQLSTATE: HY000 (ER_TRG_NO_SUCH_ROW_IN_TRG) Message: There is no %s row in %s trigger Error: 1364 SQLSTATE: HY000 (ER_NO_DEFAULT_FOR_FIELD) Message: Field '%s' doesn't have a default value Error: 1365 SQLSTATE: (ER_DIVISION_BY_ZERO) Message: Division by 0 Error: 1366 SQLSTATE: HY000 (ER_TRUNCATED_WRONG_VALUE_FOR_FIELD) Message: Incorrect %s value: '%s' for column '%s' at row %ld Error: 1367 SQLSTATE: (ER_ILLEGAL_VALUE_FOR_TYPE) Message: Illegal %s '%s' value found during parsing Error: 1368 SQLSTATE: HY000 (ER_VIEW_NONUPD_CHECK) Message: CHECK OPTION on non-updatable view '%s.%s' Error: 1369 SQLSTATE: HY000 (ER_VIEW_CHECK_FAILED) Message: CHECK OPTION failed '%s.%s' Error: 1370 SQLSTATE: (ER_PROCACCESS_DENIED_ERROR)

23 23 di 29 07/12/ :35 Message: %s command denied to user for routine '%s' Error: 1371 SQLSTATE: HY000 (ER_RELAY_LOG_FAIL) Message: Failed purging old relay logs: %s Error: 1372 SQLSTATE: HY000 (ER_PASSWD_LENGTH) Message: Password hash should be a %d-digit hexadecimal number Error: 1373 SQLSTATE: HY000 (ER_UNKNOWN_TARGET_BINLOG) Message: Target log not found in binlog index Error: 1374 SQLSTATE: HY000 (ER_IO_ERR_LOG_INDEX_READ) Message: I/O error reading log index file Error: 1375 SQLSTATE: HY000 (ER_BINLOG_PURGE_PROHIBITED) Message: Server configuration does not permit binlog purge Error: 1376 SQLSTATE: HY000 (ER_FSEEK_FAIL) Message: Failed on fseek() Error: 1377 SQLSTATE: HY000 (ER_BINLOG_PURGE_FATAL_ERR) Message: Fatal error during log purge Error: 1378 SQLSTATE: HY000 (ER_LOG_IN_USE) Message: A purgeable log is in use, will not purge Error: 1379 SQLSTATE: HY000 (ER_LOG_PURGE_UNKNOWN_ERR) Message: Unknown error during log purge Error: 1380 SQLSTATE: HY000 (ER_RELAY_LOG_INIT) Message: Failed initializing relay log position: %s Error: 1381 SQLSTATE: HY000 (ER_NO_BINARY_LOGGING) Message: You are not using binary logging Error: 1382 SQLSTATE: HY000 (ER_RESERVED_SYNTAX) Message: The '%s' syntax is reserved for purposes internal to the MySQL server Error: 1383 SQLSTATE: HY000 (ER_WSAS_FAILED) Message: WSAStartup Failed Error: 1384 SQLSTATE: HY000 (ER_DIFF_GROUPS_PROC) Message: Can't handle procedures with different groups yet Error: 1385 SQLSTATE: HY000 (ER_NO_GROUP_FOR_PROC) Message: Select must have a group with this procedure Error: 1386 SQLSTATE: HY000 (ER_ORDER_WITH_PROC) Message: Can't use ORDER clause with this procedure Error: 1387 SQLSTATE: HY000 (ER_LOGGING_PROHIBIT_CHANGING_OF) Message: Binary logging and replication forbid changing the global server %s Error: 1388 SQLSTATE: HY000 (ER_NO_FILE_MAPPING)

24 24 di 29 07/12/ :35 Message: Can't map file: %s, errno: %d Error: 1389 SQLSTATE: HY000 (ER_WRONG_MAGIC) Message: Wrong magic in %s Error: 1390 SQLSTATE: HY000 (ER_PS_MANY_PARAM) Message: Prepared statement contains too many placeholders Error: 1391 SQLSTATE: HY000 (ER_KEY_PART_0) Message: Key part '%s' length cannot be 0 Error: 1392 SQLSTATE: HY000 (ER_VIEW_CHECKSUM) Message: View text checksum failed Error: 1393 SQLSTATE: HY000 (ER_VIEW_MULTIUPDATE) Message: Can not modify more than one base table through a join view '%s.%s' Error: 1394 SQLSTATE: HY000 (ER_VIEW_NO_INSERT_FIELD_LIST) Message: Can not insert into join view '%s.%s' without fields list Error: 1395 SQLSTATE: HY000 (ER_VIEW_DELETE_MERGE_VIEW) Message: Can not delete from join view '%s.%s' Error: 1396 SQLSTATE: HY000 (ER_CANNOT_USER) Message: Operation %s failed for %s Error: 1397 SQLSTATE: XAE04 (ER_XAER_NOTA) Message: XAER_NOTA: Unknown XID Error: 1398 SQLSTATE: XAE05 (ER_XAER_INVAL) Message: XAER_INVAL: Invalid arguments (or unsupported command) Error: 1399 SQLSTATE: XAE07 (ER_XAER_RMFAIL) Message: XAER_RMFAIL: The command cannot be executed when global transaction is in the %s state Error: 1400 SQLSTATE: XAE09 (ER_XAER_OUTSIDE) Message: XAER_OUTSIDE: Some work is done outside global transaction Error: 1401 SQLSTATE: XAE03 (ER_XAER_RMERR) Message: XAER_RMERR: Fatal error occurred in the transaction branch - check your data for consistency Error: 1402 SQLSTATE: XA100 (ER_XA_RBROLLBACK) Message: XA_RBROLLBACK: Transaction branch was rolled back Error: 1403 SQLSTATE: (ER_NONEXISTING_PROC_GRANT) Message: There is no such grant defined for user '%s' on host '%s' on routine '%s' Error: 1404 SQLSTATE: HY000 (ER_PROC_AUTO_GRANT_FAIL) Message: Failed to grant EXECUTE and ALTER ROUTINE privileges Error: 1405 SQLSTATE: HY000 (ER_PROC_AUTO_REVOKE_FAIL) Message: Failed to revoke all privileges to dropped routine

25 25 di 29 07/12/ :35 Error: 1406 SQLSTATE: (ER_DATA_TOO_LONG) Message: Data too long for column '%s' at row %ld Error: 1407 SQLSTATE: (ER_SP_BAD_SQLSTATE) Message: Bad SQLSTATE: '%s' Error: 1408 SQLSTATE: HY000 (ER_STARTUP) Message: %s: ready for connections. Version: '%s' socket: '%s' port: %d %s Error: 1409 SQLSTATE: HY000 (ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR) Message: Can't load value from file with fixed size rows to variable Error: 1410 SQLSTATE: (ER_CANT_CREATE_USER_WITH_GRANT) Message: You are not allowed to create a user with GRANT Error: 1411 SQLSTATE: HY000 (ER_WRONG_VALUE_FOR_TYPE) Message: Incorrect %s value: '%s' for function %s Error: 1412 SQLSTATE: HY000 (ER_TABLE_DEF_CHANGED) Message: Table definition has changed, please retry transaction Error: 1413 SQLSTATE: (ER_SP_DUP_HANDLER) Message: Duplicate handler declared in the same block Error: 1414 SQLSTATE: (ER_SP_NOT_VAR_ARG) Message: OUT or INOUT argument %d for routine %s is not a variable or NEW pseudo-variable in BEFORE trigger Error: 1415 SQLSTATE: 0A000 (ER_SP_NO_RETSET) Message: Not allowed to return a result set from a %s Error: 1416 SQLSTATE: (ER_CANT_CREATE_GEOMETRY_OBJECT) Message: Cannot get geometry object from data you send to the GEOMETRY field Error: 1417 SQLSTATE: HY000 (ER_FAILED_ROUTINE_BREAK_BINLOG) Message: A routine failed and has neither NO SQL nor READS SQL DATA in its declaration and binary logging is enabled; if non-transactional tables were updated, the binary log will miss their changes Error: 1418 SQLSTATE: HY000 (ER_BINLOG_UNSAFE_ROUTINE) Message: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable) Error: 1419 SQLSTATE: HY000 (ER_BINLOG_CREATE_ROUTINE_NEED_SUPER) Message: You do not have the SUPER privilege and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable) Error: 1420 SQLSTATE: HY000 (ER_EXEC_STMT_WITH_OPEN_CURSOR) Message: You can't execute a prepared statement which has an open cursor associated with it. Reset the statement to re-execute it. Error: 1421 SQLSTATE: HY000 (ER_STMT_HAS_NO_OPEN_CURSOR) Message: The statement (%lu) has no open cursor. Error: 1422 SQLSTATE: HY000 (ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG)

26 26 di 29 07/12/ :35 Message: Explicit or implicit commit is not allowed in stored function or trigger. Error: 1423 SQLSTATE: HY000 (ER_NO_DEFAULT_FOR_VIEW_FIELD) Message: Field of view '%s.%s' underlying table doesn't have a default value Error: 1424 SQLSTATE: HY000 (ER_SP_NO_RECURSION) Message: Recursive stored functions and triggers are not allowed. Error: 1425 SQLSTATE: (ER_TOO_BIG_SCALE) Message: Too big scale %lu specified for column '%s'. Maximum is %d. Error: 1426 SQLSTATE: (ER_TOO_BIG_PRECISION) Message: Too big precision %lu specified for column '%s'. Maximum is %lu. Error: 1427 SQLSTATE: (ER_M_BIGGER_THAN_D) Message: For float(m,d), double(m,d) or decimal(m,d), M must be >= D (column '%s'). Error: 1428 SQLSTATE: HY000 (ER_WRONG_LOCK_OF_SYSTEM_TABLE) Message: You can't combine write-locking of system '%s.%s' table with other tables Error: 1429 SQLSTATE: HY000 (ER_CONNECT_TO_FOREIGN_DATA_SOURCE) Message: Unable to connect to foreign data source: %s Error: 1430 SQLSTATE: HY000 (ER_QUERY_ON_FOREIGN_DATA_SOURCE) Message: There was a problem processing the query on the foreign data source. Data source error: %s Error: 1431 SQLSTATE: HY000 (ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST) Message: The foreign data source you are trying to reference does not exist. Data source error: %s Error: 1432 SQLSTATE: HY000 (ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE) Message: Can't create federated table. The data source connection string '%s' is not in the correct format Error: 1433 SQLSTATE: HY000 (ER_FOREIGN_DATA_STRING_INVALID) Message: The data source connection string '%s' is not in the correct format Error: 1434 SQLSTATE: HY000 (ER_CANT_CREATE_FEDERATED_TABLE) Message: Can't create federated table. Foreign data src error: %s Error: 1435 SQLSTATE: HY000 (ER_TRG_IN_WRONG_SCHEMA) Message: Trigger in wrong schema Error: 1436 SQLSTATE: HY000 (ER_STACK_OVERRUN_NEED_MORE) Message: Thread stack overrun: %ld bytes used of a %ld byte stack, and %ld bytes needed. Use 'mysqld -O thread_stack=#' to specify a bigger stack. Error: 1437 SQLSTATE: (ER_TOO_LONG_BODY) Message: Routine body for '%s' is too long Error: 1438 SQLSTATE: HY000 (ER_WARN_CANT_DROP_DEFAULT_KEYCACHE) Message: Cannot drop default keycache Error: 1439 SQLSTATE: (ER_TOO_BIG_DISPLAYWIDTH) Message: Display width out of range for column '%s' (max = %lu)

Listing of SQLSTATE values

Listing of SQLSTATE values Listing of values 1 of 28 5/15/2008 11:28 AM Listing of values The tables in this topic provide descriptions of codes that can be returned to applications by DB2 UDB for iseries. The tables include values,

More information

Model Question Paper. Credits: 4 Marks: 140

Model Question Paper. Credits: 4 Marks: 140 Model Question Paper Subject Code: BT0075 Subject Name: RDBMS and MySQL Credits: 4 Marks: 140 Part A (One mark questions) 1. MySQL Server works in A. client/server B. specification gap embedded systems

More information

Contents. Error Message Descriptions... 7

Contents. Error Message Descriptions... 7 2 Contents Error Message Descriptions.................................. 7 3 4 About This Manual This Unify DataServer: Error Messages manual lists the errors that can be produced by the Unify DataServer

More information

Oracle Exam 1z0-883 MySQL 5.6 Database Administrator Version: 8.0 [ Total Questions: 100 ]

Oracle Exam 1z0-883 MySQL 5.6 Database Administrator Version: 8.0 [ Total Questions: 100 ] s@lm@n Oracle Exam 1z0-883 MySQL 5.6 Database Administrator Version: 8.0 [ Total Questions: 100 ] Oracle 1z0-883 : Practice Test Question No : 1 Consider the Mysql Enterprise Audit plugin. You are checking

More information

MySQL 5.0 Certification Study Guide

MySQL 5.0 Certification Study Guide MySQL 5.0 Certification Study Guide Paul DuBois, Stefan Hinz, and Carsten Pedersen MySQC Press 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 About This Book 1 Sample

More information

Memory may be insufficient. Memory may be insufficient.

Memory may be insufficient. Memory may be insufficient. Error code Less than 200 Error code Error type Description of the circumstances under which the problem occurred Linux system call error. Explanation of possible causes Countermeasures 1001 CM_NO_MEMORY

More information

Oracle 1Z MySQL 5.6 Database Administrator. Download Full Version :

Oracle 1Z MySQL 5.6 Database Administrator. Download Full Version : Oracle 1Z0-883 MySQL 5.6 Database Administrator Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-883 D. The mysqld binary was not compiled with SSL support. E. The server s SSL certificate

More information

Error code. Description of the circumstances under which the problem occurred. Less than 200. Linux system call error.

Error code. Description of the circumstances under which the problem occurred. Less than 200. Linux system call error. Error code Less than 200 Error code Error type Description of the circumstances under which the problem occurred Linux system call error. Explanation of possible causes Countermeasures 1001 CM_NO_MEMORY

More information

520 Cant empty Clipboard 521 Cant open Clipboard Expression not valid:.

520 Cant empty Clipboard 521 Cant open Clipboard Expression not valid:. The Following is a Programmers list of VB errors. Although this will not necessarily resolve your issues, it will give support an understanding as to where the potential problem is in the code. Use a Google

More information

MySQL Database Administrator Training NIIT, Gurgaon India 31 August-10 September 2015

MySQL Database Administrator Training NIIT, Gurgaon India 31 August-10 September 2015 MySQL Database Administrator Training Day 1: AGENDA Introduction to MySQL MySQL Overview MySQL Database Server Editions MySQL Products MySQL Services and Support MySQL Resources Example Databases MySQL

More information

Mastering phpmyadmiri 3.4 for

Mastering phpmyadmiri 3.4 for Mastering phpmyadmiri 3.4 for Effective MySQL Management A complete guide to getting started with phpmyadmin 3.4 and mastering its features Marc Delisle [ t]open so 1 I community experience c PUBLISHING

More information

Database Management Systems Design. Week 6 MySQL Project

Database Management Systems Design. Week 6 MySQL Project Database Management Systems Design Week 6 MySQL Project This week we will be looking at how we can control access to users and groups of users on databases, tables. I have attempted to limit coverage of

More information

Db2 9.7 Create Table If Not Exists >>>CLICK HERE<<<

Db2 9.7 Create Table If Not Exists >>>CLICK HERE<<< Db2 9.7 Create Table If Not Exists The Explain tables capture access plans when the Explain facility is activated. You can create them using one of the following methods: for static SQL, The SYSTOOLS schema

More information

Chapter 8: Working With Databases & Tables

Chapter 8: Working With Databases & Tables Chapter 8: Working With Databases & Tables o Working with Databases & Tables DDL Component of SQL Databases CREATE DATABASE class; o Represented as directories in MySQL s data storage area o Can t have

More information

1Z Oracle. MySQL 5 Database Administrator Certified Professional Part I

1Z Oracle. MySQL 5 Database Administrator Certified Professional Part I Oracle 1Z0-873 MySQL 5 Database Administrator Certified Professional Part I Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-873 A. Use the --log-queries-indexes option. B. Use the

More information

1 Writing Basic SQL SELECT Statements 2 Restricting and Sorting Data

1 Writing Basic SQL SELECT Statements 2 Restricting and Sorting Data 1 Writing Basic SQL SELECT Statements Objectives 1-2 Capabilities of SQL SELECT Statements 1-3 Basic SELECT Statement 1-4 Selecting All Columns 1-5 Selecting Specific Columns 1-6 Writing SQL Statements

More information

Oracle Syllabus Course code-r10605 SQL

Oracle Syllabus Course code-r10605 SQL Oracle Syllabus Course code-r10605 SQL Writing Basic SQL SELECT Statements Basic SELECT Statement Selecting All Columns Selecting Specific Columns Writing SQL Statements Column Heading Defaults Arithmetic

More information

Error num: 1 Meaning: Not owner Error num: 2 Meaning: No such file or directory Error num: 3 Meaning: No such process Error num: 4 Meaning:

Error num: 1 Meaning: Not owner Error num: 2 Meaning: No such file or directory Error num: 3 Meaning: No such process Error num: 4 Meaning: Error num: 1 Meaning: Not owner Error num: 2 Meaning: No such file or directory Error num: 3 Meaning: No such process Error num: 4 Meaning: Interrupted system call Error num: 5 Meaning: I/O error Error

More information

Backing up or Exporting Databases Using mysqldump

Backing up or Exporting Databases Using mysqldump Despite the steps you take to secure and protect your databases, events such as power failures, natural disasters, and equipment failure can lead to the corruption and loss of data. As a result, one of

More information

Pagina 1 di 5 13.1.4. INSERT Syntax 13.1.4.1. INSERT... SELECT Syntax 13.1.4.2. INSERT DELAYED Syntax INSERT [LOW_PRIORITY DELAYED HIGH_PRIORITY] [IGNORE] [INTO] tbl_name [(col_name,...)] VALUES ({expr

More information

KB_SQL Release Notes Version 4.3.Q2. Knowledge Based Systems, Inc.

KB_SQL Release Notes Version 4.3.Q2. Knowledge Based Systems, Inc. KB_SQL Release Notes Version 4.3.Q2 Copyright 2003 by All rights reserved., Ashburn, Virginia, USA. Printed in the United States of America. No part of this manual may be reproduced in any form or by any

More information

Could Not Fetch Schema Routine Status Mysql

Could Not Fetch Schema Routine Status Mysql Could Not Fetch Schema Routine Status Mysql BEGIN and END are keywords but not reserved, so their use as identifiers does not require quoting. INTERVAL is a reserved keyword and must be quoted to be. Modyllic

More information

Oral Questions and Answers (DBMS LAB) Questions & Answers- DBMS

Oral Questions and Answers (DBMS LAB) Questions & Answers- DBMS Questions & Answers- DBMS https://career.guru99.com/top-50-database-interview-questions/ 1) Define Database. A prearranged collection of figures known as data is called database. 2) What is DBMS? Database

More information

IBM i Version 7.3. Database SQL messages and codes IBM

IBM i Version 7.3. Database SQL messages and codes IBM IBM i Version 7.3 Database SQL messages and codes IBM IBM i Version 7.3 Database SQL messages and codes IBM Note Before using this information and the product it supports, read the information in Notices

More information

System Messages - Numerical List

System Messages - Numerical List Page 1 of 13 Open topic with navigation V+ Language Reference Guide, v17.x Page 2 of 13 System Messages - Numerical List This section lists all the V+ messages that have a numeric code. Most message codes

More information

SQL Interview Questions

SQL Interview Questions SQL Interview Questions SQL stands for Structured Query Language. It is used as a programming language for querying Relational Database Management Systems. In this tutorial, we shall go through the basic

More information

5. Single-row function

5. Single-row function 1. 2. Introduction Oracle 11g Oracle 11g Application Server Oracle database Relational and Object Relational Database Management system Oracle internet platform System Development Life cycle 3. Writing

More information

CA Harvest Software Change Manager

CA Harvest Software Change Manager CA Harvest Software Change Manager Messages Guide Release 12.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

IBM InfoSphere Data Replication for IMS for z/os Version 11 Release 3. System Messages

IBM InfoSphere Data Replication for IMS for z/os Version 11 Release 3. System Messages IBM InfoSphere Data Replication for IMS for z/os Version 11 Release 3 System Messages IBM InfoSphere Data Replication for IMS for z/os Version 11 Release 3 System Messages Note Before using this information

More information

IBM InfoSphere Classic Federation Server for z/os Version 11 Release 3. System Messages

IBM InfoSphere Classic Federation Server for z/os Version 11 Release 3. System Messages IBM InfoSphere Classic Federation Server for z/os Version 11 Release 3 System Messages IBM InfoSphere Classic Federation Server for z/os Version 11 Release 3 System Messages Note Before using this information

More information

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com Exam : 005-002 Title : Certified MySQL 5.0 DBA Part I Version : Demo 1 / 10 1. Will the following SELECT query

More information

Drop Table If Exists Sql Command Not Properly Ended

Drop Table If Exists Sql Command Not Properly Ended Drop Table If Exists Sql Command Not Properly Ended Wait, this does not work! SQL_ drop table if exists t, drop table if exists t * ERROR at line 1: ORA-00933: SQL command not properly ended. Okay. It

More information

mysql Certified MySQL 5.0 DBA Part I

mysql Certified MySQL 5.0 DBA Part I mysql 005-002 Certified MySQL 5.0 DBA Part I http://killexams.com/exam-detail/005-002 QUESTION: 116 Which of the following correctly defines the general difference between a read lock and a write lock?

More information

System Characteristics

System Characteristics System Characteristics Performance is influenced by characteristics of the system hosting the database server, for example: - Disk input/output (I/O) speed. - Amount of memory available. - Processor speed.

More information

Course Details Duration: 3 days Starting time: 9.00 am Finishing time: 4.30 pm Lunch and refreshments are provided.

Course Details Duration: 3 days Starting time: 9.00 am Finishing time: 4.30 pm Lunch and refreshments are provided. Database Administration with PostgreSQL Introduction This is a 3 day intensive course in skills and methods for PostgreSQL. Course Details Duration: 3 days Starting time: 9.00 am Finishing time: 4.30 pm

More information

TINYINT[(M)] [UNSIGNED] [ZEROFILL] A very small integer. The signed range is -128 to 127. The unsigned range is 0 to 255.

TINYINT[(M)] [UNSIGNED] [ZEROFILL] A very small integer. The signed range is -128 to 127. The unsigned range is 0 to 255. MySQL: Data Types 1. Numeric Data Types ZEROFILL automatically adds the UNSIGNED attribute to the column. UNSIGNED disallows negative values. SIGNED (default) allows negative values. BIT[(M)] A bit-field

More information

Upgrading to MySQL 8.0+: a More Automated Upgrade Experience. Dmitry Lenev, Software Developer Oracle/MySQL, November 2018

Upgrading to MySQL 8.0+: a More Automated Upgrade Experience. Dmitry Lenev, Software Developer Oracle/MySQL, November 2018 Upgrading to MySQL 8.0+: a More Automated Upgrade Experience Dmitry Lenev, Software Developer Oracle/MySQL, November 2018 Safe Harbor Statement The following is intended to outline our general product

More information

System Error Code 1241 Operand Should Contain 1 Column(s)

System Error Code 1241 Operand Should Contain 1 Column(s) System Error Code 1241 Operand Should Contain 1 Column(s) first i ll show you my code i got the error #1241 - Operand should contain 1 column(s), and if i use it work perfectly so where's the problem i

More information

Vertica Error Messages

Vertica Error Messages HPE Vertica Analytic Database Software Version: 7.2.x Document Release Date: 10/10/2017 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise products and services are set forth in

More information

Introduction to troubleshooting Basic techniques. Sveta Smirnova Principal Support Engineer March, 10, 2016

Introduction to troubleshooting Basic techniques. Sveta Smirnova Principal Support Engineer March, 10, 2016 Introduction to troubleshooting Basic techniques Sveta Smirnova Principal Support Engineer March, 10, 2016 Table of Contents Introduction How to find problematic query Solving issues Syntax errors Logic

More information

Appendix. Web Command Error Codes. Web Command Error Codes

Appendix. Web Command Error Codes. Web Command Error Codes Appendix Web Command s Error codes marked with * are received in responses from the FTP server, and then returned as the result of FTP command execution. -501 Incorrect parameter type -502 Error getting

More information

MySQL Architecture and Components Guide

MySQL Architecture and Components Guide Guide This book contains the following, MySQL Physical Architecture MySQL Logical Architecture Storage Engines overview SQL Query execution InnoDB Storage Engine MySQL 5.7 References: MySQL 5.7 Reference

More information

Customer Coffee Corner for SAP IQ Using sp_iqrebuildindex()

Customer Coffee Corner for SAP IQ Using sp_iqrebuildindex() Customer Coffee Corner for SAP IQ Using sp_iqrebuildindex() Customer SAP Product Support February, 2017 Agenda Objectives sp_iqrebuildindex() usage FAQs Useful scripts Closing remarks Open discussion 2016

More information

Error Message Code 1064 Mysql Insert Into Select

Error Message Code 1064 Mysql Insert Into Select Error Message Code 1064 Mysql Insert Into Select I got this error message from my MySQL code. (SELECT TGL_LAHIR FROM pegawai WHERE INDEXING = numiteration)), IF umur _ 56 THEN INSERT INTO. shell_ SELECT

More information

Careerarm.com. 1. What is MySQL? MySQL is an open source DBMS which is built, supported and distributed by MySQL AB (now acquired by Oracle)

Careerarm.com. 1. What is MySQL? MySQL is an open source DBMS which is built, supported and distributed by MySQL AB (now acquired by Oracle) 1. What is MySQL? MySQL is an open source DBMS which is built, supported and distributed by MySQL AB (now acquired by Oracle) 2. What are the technical features of MySQL? MySQL database software is a client

More information

VMware vrealize operations Management Pack FOR. PostgreSQL. User Guide

VMware vrealize operations Management Pack FOR. PostgreSQL. User Guide VMware vrealize operations Management Pack FOR PostgreSQL User Guide TABLE OF CONTENTS 1. Purpose... 3 2. Introduction to the Management Pack... 3 2.1 How the Management Pack Collects Data... 3 2.2 Data

More information

MySQL for Developers Ed 3

MySQL for Developers Ed 3 Oracle University Contact Us: 1.800.529.0165 MySQL for Developers Ed 3 Duration: 5 Days What you will learn This MySQL for Developers training teaches developers how to plan, design and implement applications

More information

Database Security: Transactions, Access Control, and SQL Injection

Database Security: Transactions, Access Control, and SQL Injection .. Cal Poly Spring 2013 CPE/CSC 365 Introduction to Database Systems Eriq Augustine.. Transactions Database Security: Transactions, Access Control, and SQL Injection A transaction is a sequence of SQL

More information

Chapter 7. Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel

Chapter 7. Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel Chapter 7 Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel 1 In this chapter, you will learn: The basic commands

More information

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

IBM EXAM QUESTIONS & ANSWERS

IBM EXAM QUESTIONS & ANSWERS IBM 000-730 EXAM QUESTIONS & ANSWERS Number: 000-730 Passing Score: 800 Time Limit: 120 min File Version: 69.9 http://www.gratisexam.com/ IBM 000-730 EXAM QUESTIONS & ANSWERS Exam Name: DB2 9 Fundamentals

More information

What happens when SQL. packages get. full? Are there other times when an SQL package can become unusable? When should I delete SQL. packages?

What happens when SQL. packages get. full? Are there other times when an SQL package can become unusable? When should I delete SQL. packages? 1 of 6 3/19/2018, 8:16 AM IT infrastructure Power Systems Software IBM i DB2 Frequently asked questions: Improving performance with SQL packages What are SQL What applications use the QSQPRCED and QxdaProcessExt-

More information

Bitnami MySQL for Huawei Enterprise Cloud

Bitnami MySQL for Huawei Enterprise Cloud Bitnami MySQL for Huawei Enterprise Cloud Description MySQL is a fast, reliable, scalable, and easy to use open-source relational database system. MySQL Server is intended for mission-critical, heavy-load

More information

Sql Server Check If Global Temporary Table Exists

Sql Server Check If Global Temporary Table Exists Sql Server Check If Global Temporary Table Exists I am trying to create a temp table from the a select statement so that I can get the schema information from the temp I have yet to see a valid justification

More information

User's Guide c-treeace SQL Explorer

User's Guide c-treeace SQL Explorer User's Guide c-treeace SQL Explorer Contents 1. c-treeace SQL Explorer... 4 1.1 Database Operations... 5 Add Existing Database... 6 Change Database... 7 Create User... 7 New Database... 8 Refresh... 8

More information

T-sql Grant View Definition Example

T-sql Grant View Definition Example T-sql Grant View Definition Example View the Definition of a Stored Procedure View the For more information, see GRANT Object Permissions (Transact-SQL). Arrow icon used with Back This example grants EXECUTE

More information

The SQL Guide to Pervasive PSQL. Rick F. van der Lans

The SQL Guide to Pervasive PSQL. Rick F. van der Lans The SQL Guide to Pervasive PSQL Rick F. van der Lans Copyright 2009 by R20/Consultancy All rights reserved; no part of this publication may be reproduced, stored in a retrieval system, or transmitted in

More information

About these Release Notes. This document contains important information about Pro*COBOL 12c Release 2 (12.2).

About these Release Notes. This document contains important information about Pro*COBOL 12c Release 2 (12.2). Pro*COBOL Release Notes 12c Release 2 (12.2) E85817-01 May 2017 Release Notes About these Release Notes This document contains important information about Pro*COBOL 12c Release 2 (12.2). It contains the

More information

Bitnami MariaDB for Huawei Enterprise Cloud

Bitnami MariaDB for Huawei Enterprise Cloud Bitnami MariaDB for Huawei Enterprise Cloud First steps with the Bitnami MariaDB Stack Welcome to your new Bitnami application running on Huawei Enterprise Cloud! Here are a few questions (and answers!)

More information

Manual Trigger Sql Server 2008 Update Inserted Rows

Manual Trigger Sql Server 2008 Update Inserted Rows Manual Trigger Sql Server 2008 Update Inserted Rows Am new to SQL scripting and SQL triggers, any help will be appreciated Does it need to have some understanding of what row(s) were affected, sql-serverperformance.com/2010/transactional-replication-2008-r2/

More information

ORACLE TRAINING. ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL. Oracle SQL Training Syllabus

ORACLE TRAINING. ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL. Oracle SQL Training Syllabus ORACLE TRAINING ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL Oracle SQL Training Syllabus Introduction to Oracle Database List the features of Oracle Database 11g Discuss the basic design, theoretical,

More information

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E39882-02 December 2013 Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide, Release 4.0

More information

Pagina 1 di 7 13.1.7. SELECT Syntax 13.1.7.1. JOIN Syntax 13.1.7.2. UNION Syntax SELECT [ALL DISTINCT DISTINCTROW ] [HIGH_PRIORITY] [STRAIGHT_JOIN] [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]

More information

Course Contents of ORACLE 9i

Course Contents of ORACLE 9i Overview of Oracle9i Server Architecture Course Contents of ORACLE 9i Responsibilities of a DBA Changing DBA Environments What is an Oracle Server? Oracle Versioning Server Architectural Overview Operating

More information

Course Outline. MySQL Database Administration & Design. Course Description: Pre-requisites: Course Content:

Course Outline. MySQL Database Administration & Design. Course Description: Pre-requisites: Course Content: MySQL Database Administration & Design Course Description: MySQL is the open source community's most popular Relational Database Management System (RDBMS) offering, and is a key part of LAMP - Linux, Apache,

More information

Drop Users Syntax In Sql Server 2000 Orphaned

Drop Users Syntax In Sql Server 2000 Orphaned Drop Users Syntax In Sql Server 2000 Orphaned Applies To: SQL Server 2014, SQL Server 2016 Preview Syntax Before dropping a database user that owns securables, you must first drop or transfer. To access

More information

BoKS Reporting Manager 7.1 Release Notes

BoKS Reporting Manager 7.1 Release Notes BoKS Reporting Manager 7.1 Release Notes This document contains information about the BoKS Reporting Manager 7.1 product release from Fox Technologies. It includes the following sections: Revision History

More information

ITS. MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA)

ITS. MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA) MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA) Prerequisites Have some experience with relational databases and SQL What will you learn? The MySQL for Database Administrators

More information

Interview Questions on DBMS and SQL [Compiled by M V Kamal, Associate Professor, CSE Dept]

Interview Questions on DBMS and SQL [Compiled by M V Kamal, Associate Professor, CSE Dept] Interview Questions on DBMS and SQL [Compiled by M V Kamal, Associate Professor, CSE Dept] 1. What is DBMS? A Database Management System (DBMS) is a program that controls creation, maintenance and use

More information

Optional SQL Feature Summary

Optional SQL Feature Summary Optional SQL Feature Summary The following table lists all optional features included in the SQL standard, from SQL- 2003 to SQL-2016. It also indicates which features that are currently supported by Mimer

More information

MySQL for Developers with Developer Techniques Accelerated

MySQL for Developers with Developer Techniques Accelerated Oracle University Contact Us: 02 696 8000 MySQL for Developers with Developer Techniques Accelerated Duration: 5 Days What you will learn This MySQL for Developers with Developer Techniques Accelerated

More information

MySQL for Developers Ed 3

MySQL for Developers Ed 3 Oracle University Contact Us: 0845 777 7711 MySQL for Developers Ed 3 Duration: 5 Days What you will learn This MySQL for Developers training teaches developers how to plan, design and implement applications

More information

Symptom. Environment. Resolution What words are reserved and cannot be used in BPC? Version 3 Validity:

Symptom. Environment. Resolution What words are reserved and cannot be used in BPC? Version 3 Validity: SAP Knowledge Base Article 1632682 - What words are reserved and cannot be used in BPC? Version 3 Validity: 16.09.2011 - active Language English Symptom What words are reserved and cannot be used in Business

More information

Manual Mysql Query Cache Hit Rate 0

Manual Mysql Query Cache Hit Rate 0 Manual Mysql Query Cache Hit Rate 0 B) why the Table cache hit rate is only 56% How can i achieve better cache hit rate? (OK) Currently running supported MySQL version 5.5.43-0+deb7u1-log or complex to

More information

How to get MySQL to fail

How to get MySQL to fail Snow B.V. Feb 3, 2013 Introduction We all know we shouldn t press the button... Introduction We all know we shouldn t press the button... but we all want to try. Do you know? Do you know what happens if

More information

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant Oracle Developer Track Course Contents Sandeep M Shinde Oracle Application Techno-Functional Consultant 16 Years MNC Experience in India and USA Trainer Experience Summary:- Sandeep M Shinde is having

More information

Mysql Error Code 1366 Incorrect Decimal Value

Mysql Error Code 1366 Incorrect Decimal Value Mysql Error Code 1366 Incorrect Decimal Value Error Code: 1366. I changed IsActive to a bit(1) but I am still receiving an error in MySQL. Error 1366 - Incorrect decimal value: '' for column '' at row

More information

MySQL Command Syntax

MySQL Command Syntax Get It Done With MySQL 5&Up, Chapter 6. Copyright Peter Brawley and Arthur Fuller 2017. All rights reserved. TOC Previous Next MySQL Command Syntax Structured Query Language MySQL and SQL MySQL Identifiers

More information

GridDB Advanced Edition SQL reference

GridDB Advanced Edition SQL reference GMA022C1 GridDB Advanced Edition SQL reference Toshiba Solutions Corporation 2016 All Rights Reserved. Introduction This manual describes how to write a SQL command in the GridDB Advanced Edition. Please

More information

TPS / 3270 TCP /IP. TPS /TN3270 Client Troubleshooting Quickstart Guide. Application Level. Protocol Level. Device Driver Level

TPS / 3270 TCP /IP. TPS /TN3270 Client Troubleshooting Quickstart Guide. Application Level. Protocol Level. Device Driver Level TPS /TN3270 Client Troubleshooting Quickstart Guide About this Guide Thank you for your interest in TPS /TN3270 Client. To help you configure and/or troubleshoot any problems you might encounter, we have

More information

IBM DB2 Query Patroller. Administration Guide. Version 7 SC

IBM DB2 Query Patroller. Administration Guide. Version 7 SC IBM DB2 Query Patroller Administration Guide Version 7 SC09-2958-00 IBM DB2 Query Patroller Administration Guide Version 7 SC09-2958-00 Before using this information and the product it supports, be sure

More information

Xpert BI General

Xpert BI General Xpert BI 2.5.0.2 - Added the SAP RFC Collection Module (licensed). - Added the SOAP Web Service Collection Module (licensed). - Added the REST Web Service Collection Module (licensed). - Added the Publication

More information

Mysql Manual Error 1064 Insert Into Select >>>CLICK HERE<<<

Mysql Manual Error 1064 Insert Into Select >>>CLICK HERE<<< Mysql Manual Error 1064 Insert Into Select Getting a 1064 syntax error message while working with your MySQL You can also go into the database (typically within phpmyadmin) where you can select the You

More information

Module 9: Managing Schema Objects

Module 9: Managing Schema Objects Module 9: Managing Schema Objects Overview Naming guidelines for identifiers in schema object definitions Storage and structure of schema objects Implementing data integrity using constraints Implementing

More information

Tips, Tricks & Recipes

Tips, Tricks & Recipes Tips, Tricks & Recipes for Sybase ASE Rob Verschoor Sypron Publications ISBN 90-806117-2-7 More information about this book is available at www.sypron.nl/ttr 2003 Sypron B.V. TABLE OF CONTENTS INTRODUCTION...

More information

Release Notes for Dovecot Pro Minor release

Release Notes for Dovecot Pro Minor release Release Notes for Dovecot Pro Minor release 2.2.30.1 1. Shipped Products and Versions Dovecot Pro 2.2.30.1 Including Object Storage Plug-In, Full Text Search Plug-in and Unified Quota Plug-in. Important

More information

'information_schema' When Using Lock Tables

'information_schema' When Using Lock Tables Access Denied For User To Database 'information_schema' When Using Lock Tables In this tutorial, we will show you how to import a MySQL Database using phpmyadmin. to database 'information_schema' when

More information

6232B: Implementing a Microsoft SQL Server 2008 R2 Database

6232B: Implementing a Microsoft SQL Server 2008 R2 Database 6232B: Implementing a Microsoft SQL Server 2008 R2 Database Course Overview This instructor-led course is intended for Microsoft SQL Server database developers who are responsible for implementing a database

More information

IBM Tivoli Storage Manager HSM for Windows Version 7.1. Messages

IBM Tivoli Storage Manager HSM for Windows Version 7.1. Messages IBM Tivoli Storage Manager HSM for Windows Version 7.1 Messages IBM Tivoli Storage Manager HSM for Windows Version 7.1 Messages Note: Before using this information and the product it supports, read the

More information

Creating and Managing Tables Schedule: Timing Topic

Creating and Managing Tables Schedule: Timing Topic 9 Creating and Managing Tables Schedule: Timing Topic 30 minutes Lecture 20 minutes Practice 50 minutes Total Objectives After completing this lesson, you should be able to do the following: Describe the

More information

SQL+PL/SQL. Introduction to SQL

SQL+PL/SQL. Introduction to SQL SQL+PL/SQL CURRICULUM Introduction to SQL Introduction to Oracle Database List the features of Oracle Database 12c Discuss the basic design, theoretical, and physical aspects of a relational database Categorize

More information

Effective Testing for Live Applications. March, 29, 2018 Sveta Smirnova

Effective Testing for Live Applications. March, 29, 2018 Sveta Smirnova Effective Testing for Live Applications March, 29, 2018 Sveta Smirnova Table of Contents Sometimes You Have to Test on Production Wrong Data SELECT Returns Nonsense Wrong Data in the Database Performance

More information

Oracle Enterprise Manager for MySQL Database

Oracle Enterprise Manager for MySQL Database Oracle Enterprise Manager for MySQL Database 12.1.0.4.0 Abstract This manual documents Oracle Enterprise Manager for MySQL Database 12.1.0.4.0. For legal information, see the Legal Notice. For help with

More information

Error Code. GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 ABN: ACN:

Error Code. GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 ABN: ACN: GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 Phn: 0403-063-991 Fax: none ABN: 54-008-044-906 ACN: 008-044-906 Eml: support@gosoftware.com.au Web: www.gosoftware.com.au Error Code GW-Basic

More information

Course Outline and Objectives: Database Programming with SQL

Course Outline and Objectives: Database Programming with SQL Introduction to Computer Science and Business Course Outline and Objectives: Database Programming with SQL This is the second portion of the Database Design and Programming with SQL course. In this portion,

More information

Introduction to MySQL Cluster: Architecture and Use

Introduction to MySQL Cluster: Architecture and Use Introduction to MySQL Cluster: Architecture and Use Arjen Lentz, MySQL AB (arjen@mysql.com) (Based on an original paper by Stewart Smith, MySQL AB) An overview of the MySQL Cluster architecture, what's

More information

Sql Server Syllabus. Overview

Sql Server Syllabus. Overview Sql Server Syllabus Overview This SQL Server training teaches developers all the Transact-SQL skills they need to create database objects like Tables, Views, Stored procedures & Functions and triggers

More information

Table of Contents. PDF created with FinePrint pdffactory Pro trial version

Table of Contents. PDF created with FinePrint pdffactory Pro trial version Table of Contents Course Description The SQL Course covers relational database principles and Oracle concepts, writing basic SQL statements, restricting and sorting data, and using single-row functions.

More information

Kea Messages Manual. Kea Messages Manual

Kea Messages Manual. Kea Messages Manual Kea Messages Manual i Kea Messages Manual Kea Messages Manual ii Copyright 2011-2015 Internet Systems Consortium, Inc. Kea Messages Manual iii Contents 1 Introduction 1 2 Kea Log Messages 2 2.1 ALLOC Module....................................................

More information

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version :

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version : Oracle 1Z0-030 Oracle 9i: New Features for Administrators Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-030 QUESTION: 204 Which two statements regarding an external table are

More information