故障现象:SQL> connect scott/scottERROR:ORA-01017: invalid username/password; logon deniedSQL> connect scott/scottERROR:ORA-28000: the account is locked表明:...
分类:
数据库 时间:
2014-11-18 14:41:58
阅读次数:
203
OK, here is the solution I found after searching lots of things:http://www.oschina.net/question/12_21632https://www.digitalocean.com/community/tutoria...
分类:
系统相关 时间:
2014-11-18 01:32:43
阅读次数:
282
画原理图的时候为了使布线方便,使用了jlink的引脚。而STM32默认是设置为Jlink功能的,所以烧写代码的时候必须先关闭Jlink功能才能当做普通IO口使用,关闭代码如下:1 RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);2 ...
分类:
其他好文 时间:
2014-11-17 22:34:01
阅读次数:
3559
VBA的 Round采用的是银行家算法(rounds to the nearest even number) Round(1.5) = 2
Round(0.5) = 0 在Oracle中实现银行家算法
SQL> create or replace function bankers_round (va...
分类:
数据库 时间:
2014-11-17 19:24:34
阅读次数:
233
使用adt开发新建一个Android app,选择支持的SDK版本如果小于11(Android3.0)就会报如下错误。
error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light'.
官网给出的答案是:
https://develop...
分类:
移动开发 时间:
2014-11-17 17:55:50
阅读次数:
195
今天在做项目的时候碰到一个问题,用weblogic发布的项目,使用myeclipse能正常启动,但点击startWeblogic.cmd就会报错,提示我的一个class not found。刚开始不清楚是什么问题,后来想了想,应该是jdk版本不一致的问题。后来试了一下,还真是的。我项目中使用的jdk是本机安装的1.7的版本,而使用的weblogic10自带的jdk是1.5的版本。这样的话,使用st...
分类:
Web程序 时间:
2014-11-17 15:57:47
阅读次数:
172
参见博客http://blog.csdn.net/lzflydream/article/details/20570813这上面这么说的,但是大神们说的太高端了我不知道怎么解决 911 : 42000 :java.sql.SQLException: ORA-00911: invalid charac....
分类:
数据库 时间:
2014-11-17 15:44:19
阅读次数:
457
表格隔行换色,有多种写法,可以通过jquery来写,也可以用css3实现。1.jquery方法odd,奇数;even,偶数方法很简单$("tr:odd").css({background:"#c66",color:"#fff"}); $('tr:even').css({background:"...
分类:
其他好文 时间:
2014-11-17 15:29:27
阅读次数:
314
继承关系中的第三种方式:利用代码:映射文件(其他的代码和其他继承关系相同)Person.hbm.xml 执行结果:进行Save操作的结果:log4j:WARN No appenders could be found for logger (org.hibern...
分类:
其他好文 时间:
2014-11-17 15:27:27
阅读次数:
235
今天在eclipse中编写pom.xml文件时,注释中的中文被eclipse识别到错误:Invalid byte 1 of 1-byte UTF-8 sequence,曾多次遇到该问题,问题的根源是: The cause of this is a file that is not UTF-8 is ...
分类:
其他好文 时间:
2014-11-17 13:59:48
阅读次数:
191