上一页 1 2 3 4 5 6 7 ··· 14 下一页
摘要: 一、Stored Objects https://dev.mysql.com/doc/refman/5.7/en/stored-objects.html https://zhuanlan.zhihu.com/p/53401942 This chapter discusses stored datab 阅读全文
posted @ 2024-01-25 14:30 中仕 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 一、创建函数的时候报错信息 [Err] 1418 - This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *m 阅读全文
posted @ 2024-01-25 08:57 中仕 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 一、分区表 1.1、分区的类型 1.2、分区表的原数据 (root@localhost) [dbt3]> use information_schema; Reading table information for completion of table and column names You ca 阅读全文
posted @ 2024-01-23 11:34 中仕 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1、MySQL数据库启动报错 IntroductionMySQL is a popular open-source relational database management system that is widely used for web development and other appl 阅读全文
posted @ 2024-01-19 09:34 中仕 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 一、下载 https://dev.mysql.com/doc/index-other.html 登陆MySQL数据库官网,下载测试库 下载地址:https://github.com/datacharmer/test_db 二、上传解压 [root@mysql soft]# unzip test_db 阅读全文
posted @ 2024-01-17 11:25 中仕 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 一、导入实验数据 创建数据库 root@localhost) [mysql]> create database dbt3; Query OK, 1 row affected (0.10 sec) 到时sql文件 [root@mysql init.d]# mysql -uroot -p dbt3 </ 阅读全文
posted @ 2024-01-17 08:46 中仕 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1、MySQL数据库启动报错 [root@mysql ~]# service mysqld start Starting MySQL. ERROR! The server quit without updating PID file (/mysql3306/data/mysql.pid). 2、排查 阅读全文
posted @ 2024-01-16 09:03 中仕 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 一、查看存储引擎 (root@localhost) [(none)]> show engines; + + + + + + + | Engine | Support | Comment | Transactions | XA | Savepoints | + + + + + + + | CSV | 阅读全文
posted @ 2024-01-15 16:56 中仕 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 一、慢查询日志——记录时间是Querytime-Locktime(查询时间-锁等待时间) 1.1、修改my.cnf中slow log的配置 slow_query_log=1 slow_query_log_file=slow.log long_query_time=10 查看 (root@localh 阅读全文
posted @ 2024-01-14 22:07 中仕 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 一、MySQL权限管理 二、用户管理 创建用户 (root@localhost) [(none)]> create user 'david'@'%' identified by '1234'; Query OK, 0 rows affected (0.01 sec) 删除用户 (root@local 阅读全文
posted @ 2024-01-13 22:01 中仕 阅读(3) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 14 下一页