/* 启动MySQL */net start mysql/* 连接与断开服务器 */mysql -h 地址 -P 端口 -u 用户名 -p 密码/* 跳过权限验证登录MySQL */mysqld --skip-grant-tables-- 修改root密码密码加密函数password()update...
分类:
数据库 时间:
2014-08-02 09:52:33
阅读次数:
386
1、root登录mysql之后,查看端口,确认是3306show variables like 'port';2、添加root@%用户并设置密码为123456GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "123456";如果出现这样的错...
分类:
数据库 时间:
2014-08-02 01:32:02
阅读次数:
255
oralce创建用户:sqlplus /nolog回车 -->conn esun/esun@esuntech; -->create user xlh identified by password -->create user xlh identified by xlh;-->grant dba to...
分类:
其他好文 时间:
2014-08-01 19:26:12
阅读次数:
172
1、给数据库用户授权(对象为用户表)
GRANT privilege[, ...] ON object[, ...] TO { PUBLIC | GROUP group| username}
privilege:
select:查询
insert:插入
update:更新
delete:删除
rule:
all:所有
grant select,insert,update on ta...
分类:
数据库 时间:
2014-08-01 13:36:51
阅读次数:
340
Multi-processor systems are often implemented using a common system bus as the communication mechanism between CPU, memory, and I/O adapters. It is al...
分类:
其他好文 时间:
2014-07-31 02:17:25
阅读次数:
432
CStdioFile file; file.Open(_T("c:\\a.txt"),CFile::modeCreate |CFile::modeReadWrite); file.WriteString(_T("hello world ,第一句话")); file.Flush(); file.Clo...
分类:
其他好文 时间:
2014-07-29 16:54:42
阅读次数:
365
flush的常规用法:flushlogs:刷新二进制日志文件flushPRIVILEGES:刷新权限,修改权限或密码后,需要使用到该命令flushtables:关闭所有表,并清空缓存中的类容。flushtableswithreadlock:关闭所有打开的表,并且对所有DB中的表添加一个读锁,直到显示执行unlocktables。该命令..
分类:
其他好文 时间:
2014-07-29 15:50:04
阅读次数:
190
1.停止mysql2.命令行启动mysqlmysqld --defaults-file="c:\mysql\mysql server 5.1\my.ini" --console --skip-grant-tables3.无密码登录后执行以下sqlupdate mysql.user set passw...
分类:
数据库 时间:
2014-07-29 14:12:18
阅读次数:
325
/* 启动MySQL */net start mysql/* 连接与断开服务器 */mysql -h 地址 -P 端口 -u 用户名 -p 密码/* 跳过权限验证登录MySQL */mysqld --skip-grant-tables-- 修改root密码密码加密函数password()update...
分类:
数据库 时间:
2014-07-29 13:55:08
阅读次数:
583
Thread 1 cannot allocate new log, sequence 466Private strand flush not complete Current log# 7 seq# 465 mem# 0: /home/app/oracle/oradata/orcl/redo07.....
分类:
数据库 时间:
2014-07-28 23:38:54
阅读次数:
400