1、给用户解锁alter user scott account unlock;2、注销、断开、切换当前用户连接quitconn scott/tiger3、用户权限查询A .查看所有用户:select * from dba_users;select * from all_users;select * ...
分类:
数据库 时间:
2015-10-12 23:54:32
阅读次数:
278
oracle创建用户:CREATE USER 用户名 IDENTIFIED BY 口令 [ACCOUNT LOCK|UNLOCK]【注】LOCK|UNLOCK创建用户时是否锁定,默认为锁定状态。锁定的用户无法正常的登陆进行数据库操作。 比如创建一个用户tom,密码是aaa,默认为非锁定,格式是: ....
分类:
数据库 时间:
2015-10-08 12:55:58
阅读次数:
178
importsysimportosuserf=open(‘login.txt‘)userfr=userf.readlines()useradd=[]password=[]unlock=[]forlineinuserfr:u=line.split()[0]p=line.split()[1]un=line.split()[2]useradd.append(u)password.append(p)unlock.append(un)printu,p,unwhileTrue:xz=raw_input(‘\033[32;..
分类:
编程语言 时间:
2015-09-28 19:10:56
阅读次数:
269
1、频繁链接数据库2、密码太简单解决办法:ALTER LOGIN sa ENABLE ;GOALTER LOGIN sa WITH PASSWORD = 'password' unlock, check_policy = off,check_expiration = off ;GO
分类:
其他好文 时间:
2015-09-24 01:58:16
阅读次数:
183
关于条件变量最核心的函数是pthread_cond_wait这个函数不太容易理解的地方在于,它会在使进程陷入休眠之前解锁互斥量,而又在进入休眠之后重新锁定互斥量,相当于在函数内部是这样的:unlock()sleeplock();所以这个函数调用的时候也很奇怪,先是要锁定住互斥量,然后陷入等待,函数返...
分类:
其他好文 时间:
2015-09-19 21:04:10
阅读次数:
232
(一)在一项条款说法auto_ptr和tr1::share_ptr适合heap-based资源。然而,并非所有的资源都heap-based的。换句话说不tr1::shared_ptr 和 auto_ptr 总是适合作为资源管理器。管理类型。如果Mutex类型通过lock和unlock两组函数进行相互...
分类:
编程语言 时间:
2015-09-19 19:31:49
阅读次数:
280
在系统运行中输入:sqlplus /nolog在命令窗口分别执行:conn /as sysdbaalter user scott identified by tiger;alter user scott account unlock;这样就把“scott”用户密码修改为“tiger”了,用户可根据自...
分类:
数据库 时间:
2015-09-14 15:20:59
阅读次数:
172
因为 IIS 7 采用了更安全的 web.config 管理机制,默认情况下会锁住配置项不允许更改。运行命令行 %windir%\system32\inetsrv\appcmd unlock config -section:system.webServer/handlers 。其中的 handler...
分类:
其他好文 时间:
2015-09-04 21:16:41
阅读次数:
141
A few days ago I had an issue with my mac so I took it to the Genius bar at a local Apple store. They said the partitions failed on the hard drive and...
分类:
其他好文 时间:
2015-09-04 07:16:12
阅读次数:
150
今天用scott用户登录Oracle数 据库时,竟然出现了ORA-01017: invalid username/password; logon denied错误,原以为是因为我的scott用户没有解锁,后用system用户登录,然后用alter user scott account unlock语...
分类:
数据库 时间:
2015-09-01 21:19:53
阅读次数:
494