发布时间:2015-04-23 17:18:39
数据库状态查询:show procedure status;查询数据库用户、密码、主机名:select user,password,host from mysql.user;查询用户root权限:show grants for root@localhost;给用户song所有数据库全部权限,并设置密码;刷新MySQL的系统权限相关表:grant all privileges on *.* to song@localhost identified by '12345.........【阅读全文】
发布时间:2015-01-15 18:04:39
1、备份/恢复策略:2、逻辑备份和恢复: 对于各种存储引擎,都可以用同样的方法来备份; 2.1、备份: 将.........【阅读全文】
发布时间:2014-12-26 17:26:22
现在我的数据库(minmin)里面有好多好多以t_开头的表,我现在想删掉所有这样的表。但是,一个个的删出又很麻烦,经过查找资料掌握了一个批量删除的方法:drop_tab.sh#!/bin/bashdroptab=`mysql -e "select concat('drop table ',group_concat(table_name),';') as tables from information_schema.tables where table_sch.........【阅读全文】
发布时间:2014-12-23 18:31:42
1、错误日志: 记录当前mysqld启动和停止时,以及服务器在运行过程中发生任何严重错误时的相关信息; --log-error=file_name 指定mysql服务器保存错误日志文件(默认错.........【阅读全文】