首先启动sqlplus输入用户名:sqlplus / as sysdba密码空缺如果用户被锁定,记得加上SQL> alter user dbsnmp account unlock;User altered.然后修改密码SQL> alter user dbsnmp identified by dbs....
分类:
数据库 时间:
2015-03-19 21:43:29
阅读次数:
166
使用Windows的控制台(程序|运行,输入cmd打开)。在命令行下,输入sqlplus/nolog,回车,出现SQL>命令提示符,然后按下面的顺序输入命令: SQL>conn/as sysdba SQL>alter user scott account unlock; SQL>disconnect...
分类:
数据库 时间:
2015-03-18 10:19:29
阅读次数:
534
查询现有数据库:select name from V$database;解锁用户scott:alter user scott account unlock;普通用户连接:conn scott默认密码:tiger普通管理员:system/system超级管理员:Sys/sys断开连接:disconne...
分类:
数据库 时间:
2015-03-17 20:02:42
阅读次数:
318
问题处理借鉴至网上的内容
重新做主从,完全同步
在主库新建一张表后,在slave 段发现数据没有同步过去。
mysql version:5.6.10
os :rhel 5.6
解决步骤如下:
1.主库进行锁表,防止数据写入
mysql> flush tables with read lock;
解锁命令:
Mysql> unlock tables;
2.进行数...
分类:
数据库 时间:
2015-03-17 12:31:28
阅读次数:
178
At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door...
分类:
其他好文 时间:
2015-03-16 16:06:29
阅读次数:
153
想把论坛和博客上所有关于mysql的都看一遍,死磕到底看到关于数据库快照的东西。。。。。。。不懂,百度。。。。。。然后就跑题了,看到了表锁这种东西unlock tables;用来锁定表。。。。。mysql> insert into new values('haha'); ERROR 1136 (21...
分类:
数据库 时间:
2015-03-13 20:41:17
阅读次数:
282
该问题,我百度了下,根本没发现什么有价值的文章;还是看源代码(详见最后附录)中的注释,最有效了!insert,返回值是:新插入行的主键(primarykey);需要包含 insert into desktop_unlock_tag(id,name,description,...
分类:
数据库 时间:
2015-03-11 19:32:57
阅读次数:
682
摘要:同一个CMutex对象不允许在两个线程中分别调用Lock和Unlock,否则Unlock会失败并返回0。
一、问题描述
笔者最近在开发过程中遇到了CMutex::Unlock返回0的情况,通过MSDN得知这表示Unlock失败。但MSDN并没有告诉我为什么会失败以及如何处理,查百度谷歌亦无果,于是决定动手探索。
这是MSDN上Unlock对返回值的解释
Ret...
分类:
其他好文 时间:
2015-03-09 17:40:47
阅读次数:
402
At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door. Given the records of signing in's and out's, you...
分类:
其他好文 时间:
2015-02-27 21:41:22
阅读次数:
243
At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door. Given the records of signing in's and out's, you...
分类:
其他好文 时间:
2015-02-24 12:38:14
阅读次数:
136