使用scott用户 set utotrace on报错
SCOTT@TEST0422>set autotrace on
SP2-0618: Cannot find the Session Identifier. Check PLUSTRACE role is enabled
SP2-0611: Error enabling STATISTICS report
SCOTT@TEST...
分类:
数据库 时间:
2014-05-10 19:35:23
阅读次数:
389
前一阵子下了最新的JavaEE版本的eclipse,导入maven工程之后,pom文件一直报Missing artifact com.sun:tools:jar:1.5.0。很纳闷,tools.jar是jdk自带的jar包。查了一下pom依赖图,原来是struts-core依赖了这个jar包。
试了网上的各种方法,只有把jdk的tools.jar复制到本地仓库,报错才消失。...
分类:
其他好文 时间:
2014-05-10 09:21:34
阅读次数:
449
因为项目要使用到sqlite
,虽然有现成的jar,但是考虑的项目的易用统一管理,决定还是用maven结果纠结了半天 sqlite-jdbc 在maven默认的仓库根本找不着,于是乎修改
setting 采用开源中国基于neuxs的仓库 com.github.axet.sqli...
分类:
数据库 时间:
2014-05-07 19:00:40
阅读次数:
524
maven拥有三套相互独立的生命周期,它们分别是clean,default和site。clean生命周期的目的是清理项目,default生命周期的目的是构建项目,而site
生命周期的目的是建立项目站点。 命令行与生命周期:从命令行执行maven任务的最主要方式就是调用maven的生命周期阶段。 m...
分类:
其他好文 时间:
2014-05-07 18:59:27
阅读次数:
288
1.0 Maven
执行Javadoc时控制台输出乱码问题问题描述最近项目中使用maven-javadoc-plugin生成javadoc时,myEclipse控制台乱码。插件配置问题分析检查maven输出时采用的编码格式很显然maven默认输出采用GBK编码myEclipse控制台输出编码,默认采...
分类:
编程语言 时间:
2014-05-07 18:26:54
阅读次数:
472
由于find具有强大的功能,所以它的选项也很多,其中大部分选项都值得我们花时间来了解一下。即使系统中含有网络文件系统( N F S
),find命令在该文件系统中同样有效,只你具有相应的权限。在运行一个非常消耗资源的find命令时,很多人都倾向于把它放在后台执行,因为遍历一个大的文件系统可能会花费很...
分类:
系统相关 时间:
2014-05-07 10:24:54
阅读次数:
380
一、find命令详细find命令 --
之查找指定时间内修改过的文件比如我们要查找linux下指定时间内做过改动的文件,我们可以用find命令,其实find命令的功能十分强大,下面我们通过几个简单的例子来学习下find命令的简单用法:find
/opt -iname "*" -atime 1 -ty...
分类:
其他好文 时间:
2014-05-07 10:11:08
阅读次数:
330
Description Given a code (not optimized), and
necessary inputs, you have to find the output of the code for the inputs. The
code is as follows: int a,...
分类:
其他好文 时间:
2014-05-07 09:56:16
阅读次数:
310
Given a binary tree, find the maximum path
sum.The path may start and end at any node in the tree.For example:Given the
below binary tree, 1 ...
分类:
其他好文 时间:
2014-05-07 09:36:09
阅读次数:
300
【Question】
Given an array S of n integers, are there elements a, b, c in S such
that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.
Note:
Elements in ...
分类:
其他好文 时间:
2014-05-06 14:57:29
阅读次数:
318