自己电脑上安装的Oracle11g有一个用户root很久没用,密码竟然给忘记了。下面是重新修改密码的方法:1. 进入sqlplus控制台
2. 输入: sys / as sysdba ——>按enter键进入
3. 设置root用户不锁 alter user root account unlock;4. 修改用户密码alter user root identified by root;...
分类:
数据库 时间:
2015-05-04 15:38:09
阅读次数:
118
【Real and Effective IDs】 At the lowest level of the operating system, thekernel, users and groups aren't identified by names, but numbers. The kernel....
分类:
其他好文 时间:
2015-05-01 14:44:03
阅读次数:
145
mysql权限的误操作的恢复原因:由于误操作,我把repl用户授予了所有权限,但删除了数据库中的其他用户及权限,因此repl用户虽然具有操作所有数据库的权限,但没有grant权限,所以若想授予其他用户权限,来管理数据库,出现这种状况就酷毙了,没有授予权限怎麽办?误操作过程:m..
分类:
数据库 时间:
2015-04-29 20:00:33
阅读次数:
146
1 def select_all_from_list(self, locator): 2 """Selects all values from multi-select list identified by `id`. 3 4 Key attributes...
分类:
其他好文 时间:
2015-04-29 00:33:38
阅读次数:
166
1 def select_from_list_by_label(self, locator, *labels): 2 """Selects `*labels` from list identified by `locator` 3 4 Select lis...
分类:
其他好文 时间:
2015-04-29 00:33:24
阅读次数:
128
1 def unselect_from_list_by_index(self, locator, *indexes): 2 """Unselects `*indexes` from list identified by `locator` 3 4 Sele...
分类:
其他好文 时间:
2015-04-29 00:29:15
阅读次数:
138
1 def page_should_not_contain_list(self, locator, message='', loglevel='INFO'): 2 """Verifies select list identified by `locator` is not ...
分类:
其他好文 时间:
2015-04-29 00:26:54
阅读次数:
134
1 def select_from_list_by_value(self, locator, *values): 2 """Selects `*values` from list identified by `locator` 3 4 Select lis...
分类:
其他好文 时间:
2015-04-29 00:26:34
阅读次数:
303
1 def select_from_list(self, locator, *items): 2 """Selects `*items` from list identified by `locator` 3 4 If more than one valu...
分类:
其他好文 时间:
2015-04-29 00:25:43
阅读次数:
153
1 def list_should_have_no_selections(self, locator): 2 """Verifies select list identified by `locator` has no selections. 3 4 Se...
分类:
其他好文 时间:
2015-04-29 00:25:09
阅读次数:
176