使用Windows的控制台(程序|运行,输入cmd打开)。在命令行下,输入sqlplus/nolog,回车,出现SQL>命令提示符,然后按下面的顺序输入命令: SQL>conn/as sysdba SQL>alter user scott account unlock; SQL>disconnect...
分类:
数据库 时间:
2015-03-18 10:19:29
阅读次数:
534
oracle11g默认密码过期时间为180天,密码过期后,访问数据库会出现如下异常:java.sql.SQLException:ORA-28001:thepasswordhasexpired查询密码过期设定:select*fromdba_profileswhereprofile=‘DEFAULT‘andresource_name=‘PASSWORD_LIFE_TIME‘;修改密码过期为:unlimitedalterpr..
分类:
数据库 时间:
2015-03-18 06:37:02
阅读次数:
172
Disclaimer: Here is a complete answer taking the last version of OS X (10.9 AKA Mavericks) into account. I am aware that everything I compiled in this answer is already present in the page, but having...
分类:
系统相关 时间:
2015-03-17 21:53:23
阅读次数:
278
查询现有数据库: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
今天在部署jira系统的时候报错:java.lang.UnsupportedOperationException:Databaseislocked原因分析:造成这个错误的原因有很多,如果你是在安装一个新的数据库,那么有可能是entityengine.xml配置错误引起的,也有可能是你的数据库需要修复,也就是说你的数据库出了问题。解..
分类:
数据库 时间:
2015-03-17 14:24:01
阅读次数:
205
在这篇文章中,我们将使用Ubuntu SDK所提供的online account API来访问微博的API并显示所需要的内容。这篇文章的重点是展示如何使用online account API的使用。更多关于应用开发的资料可以在地址:hhttps://developer.ubuntu.com/en/apps/html-5/。...
出处:http://qosys.info/485/bitbucket-git-prompt-for-passwordIn some cases after adding public ssh keys for your Bitbucket account, Bitbucket could still...
分类:
其他好文 时间:
2015-03-16 00:54:04
阅读次数:
234
网搜--第一步 查看被锁表select b.owner,b.object_name, b.object_id,l.session_id,l.locked_modefrom v$locked_object l, dba_objects bwhere b.object_id=l.object_id;--...
分类:
数据库 时间:
2015-03-15 22:50:27
阅读次数:
154
原文链接:http://www.zhihu.com/question/27708607/answer/41522618?utm_campaign=official_account&utm_source=weibo&utm_medium=zhihu&utm_content=answer在知乎上发现这个...
分类:
其他好文 时间:
2015-03-15 22:46:40
阅读次数:
137
有个url如下:
http://passport.csdn.net/account/login?from=http%3a%2f%2fwrite.blog.csdn.net%2fpostedit
我们该如何获取from这个参数的值呢?在网上搜了下方法很简单,如下,第一种是通过正则,第二种通过切串放进数组的方式:
方法一:
function getQueryString(name) {
...
分类:
Web程序 时间:
2015-03-15 12:26:38
阅读次数:
128