mysql错误码问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql错误码问题相关的知识,希望对你有一定的参考价值。

Error Code: 1175. To disable safe mode, toggle the option in Preferences -> SQL Editor -> Query Editor and reconnect.
You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column

这里列出部分,详情可参考:http://www.cnblogs.com/skillCoding/archive/2011/09/07/2169932.html
消息:无法创建文件'%s' (errno: %d)
· 错误:1005 SQLSTATE: HY000 (ER_CANT_CREATE_TABLE)
消息:无法创建表'%s' (errno: %d)
· 错误:1006 SQLSTATE: HY000 (ER_CANT_CREATE_DB)
消息:无法创建数据库'%s' (errno: %d)
· 错误:1007 SQLSTATE: HY000 (ER_DB_CREATE_EXISTS)
消息:无法创建数据库'%s',数据库已存在。
· 错误:1008 SQLSTATE: HY000 (ER_DB_DROP_EXISTS)
消息:无法撤销数据库'%s',数据库不存在。
· 错误:1009 SQLSTATE: HY000 (ER_DB_DROP_DELETE)
消息:撤销数据库时出错(无法删除'%s',errno: %d)
· 错误:1010 SQLSTATE: HY000 (ER_DB_DROP_RMDIR)
消息:撤销数据库时出错(can't rmdir '%s', errno: %d)
· 错误:1011 SQLSTATE: HY000 (ER_CANT_DELETE_FILE)
消息:删除'%s'时出错 (errno: %d)
· 错误:1012 SQLSTATE: HY000 (ER_CANT_FIND_SYSTEM_REC)
消息:无法读取系统表中的记录。
· 错误:1013 SQLSTATE: HY000 (ER_CANT_GET_STAT)
消息:无法获取'%s'的状态(errno: %d)
· 错误:1014 SQLSTATE: HY000 (ER_CANT_GET_WD)
消息:无法获得工作目录(errno: %d)
· 错误:1015 SQLSTATE: HY000 (ER_CANT_LOCK)
消息:无法锁定文件(errno: %d)
· 错误:1016 SQLSTATE: HY000 (ER_CANT_OPEN_FILE)
消息:无法打开文件:'%s' (errno: %d)
· 错误:1017 SQLSTATE: HY000 (ER_FILE_NOT_FOUND)
消息:无法找到文件: '%s' (errno: %d)
· 错误:1018 SQLSTATE: HY000 (ER_CANT_READ_DIR)
消息:无法读取'%s'的目录 (errno: %d)
· 错误:1019 SQLSTATE: HY000 (ER_CANT_SET_WD)
消息:无法为'%s'更改目录 (errno: %d)
· 错误:1020 SQLSTATE: HY000 (ER_CHECKREAD)
消息:自上次读取以来表'%s'中的记录已改变。
· 错误:1021 SQLSTATE: HY000 (ER_DISK_FULL)
消息:磁盘满(%s);等待某人释放一些空间...
· 错误:1022 SQLSTATE: 23000 (ER_DUP_KEY)
消息:无法写入;复制表'%s'的 键。
· 错误:1023 SQLSTATE: HY000 (ER_ERROR_ON_CLOSE)
消息:关闭'%s'时出错 (errno: %d)
· 错误:1024 SQLSTATE: HY000 (ER_ERROR_ON_READ)
消息:读取文件'%s'时出错 (errno: %d)
· 错误:1025 SQLSTATE: HY000 (ER_ERROR_ON_RENAME)
消息:将'%s'重命名为'%s'时出错 (errno: %d)
· 错误:1026 SQLSTATE: HY000 (ER_ERROR_ON_WRITE)
消息:写入文件'%s'时出错 (errno: %d)
· 错误:1027 SQLSTATE: HY000 (ER_FILE_USED)
消息:'%s'已锁定,拒绝更改。
· 错误:1028 SQLSTATE: HY000 (ER_FILSORT_ABORT)
参考技术A 你设置了safe mode,两个办法:1.SET SQL_SAFE_UPDATES=0;关闭safe mode
2.加一个欺骗性的where条件,必须用主键,假设主键是id
where id > 0;本回答被提问者采纳

MYSQL连接时错误码2059解决办法

一、问题原因:

如上图的报错提示可知,报错原因是caching_sha2_password不能加载。

这是因为8.0之后mysql更改了密码的加密规则,而目前已有的客户端连接软件还不支持Mysql8新增加的加密方式caching_sha2_password,所以我们需要修改用户的加密方式,将其改为老的加密验证方式。

二、解决步骤:

1、在win的左下角,输入cmd,打开cmd窗口;

  2、在命令行终端中进入到mysql的安装目录bin目录下;

回车就行了。 

3、登录mysql,

mysql -u root -p

复制上面命令,进入命令行终端,右击鼠标会自动粘贴(我的Windows10系统是这样的),回车执行,会输出如下结果:

 然后分别执行下面3个命令:

4、修改加密规则

alter user root@localhost identified by 'password' password expire never;

5、更新密码(如果你需要更改密码,将后面的单引号中的password替换为你的密码如‘123456’)

alter user root@localhost identified with mysql_native_password by 'password';

6、刷新

flush privileges;

我的所有执行过程:如下

Microsoft Windows [版本 10.0.19044.1706]
(c) Microsoft Corporation。保留所有权利。

C:\\Users\\123>d:

D:\\>cd D:\\Program Files (x86)\\mysql8.0.28\\bin

D:\\Program Files (x86)\\mysql8.0.28\\bin>mysql -u root -p
Enter password: ******
Welcome to the MySQL monitor.  Commands end with ; or \\g.
Your MySQL connection id is 67
Server version: 8.0.28 MySQL Community Server - GPL

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\\h' for help. Type '\\c' to clear the current input statement.

mysql> alter user root@localhost identified by 'password' password expire never;
Query OK, 0 rows affected (0.09 sec)

mysql> alter user root@localhost identified with mysql_native_password by '123456';
Query OK, 0 rows affected, 1 warning (0.01 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.02 sec)

mysql>

 7、在客户端测试连接,连接成功。

以上是关于mysql错误码问题的主要内容,如果未能解决你的问题,请参考以下文章

启动mysql服务失败,错误码:1067.

mysql常见的错误码

错误码:2003 不能连接到 MySQL 服务器在 (10061)

MYSQL连接时错误码2059解决办法

mysql错误代码1045 是为啥

杂七杂八-sqlyog连接mysql错误码2058