数据库是在linux服务器上,需要用impdp方式导入一个dmp,用root用户登录该数据库服务器后,直接采用impdp命令执行导入操作,提示:KSH:impdp:not found。经查原来是操作的用户不对,linux服务器下,执行expdp,impdp命令,必须以oracle用户登录,即 su....
分类:
系统相关 时间:
2014-07-03 21:06:32
阅读次数:
514
不戚戚于贫贱,不汲汲于富贵 ---五柳先生Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dict.....
分类:
其他好文 时间:
2014-07-03 20:21:27
阅读次数:
225
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given[100, 4, 200, 1, 3, 2],The longest ...
分类:
其他好文 时间:
2014-07-03 19:24:36
阅读次数:
142
Problem E: Jolly Jumpers
A sequence of n > 0 integers is called a jolly
jumper if the absolute values of the difference between successive elements take on all the values 1 through n-1.
For ins...
分类:
其他好文 时间:
2014-07-03 17:40:42
阅读次数:
257
题目很简单,但是一开始却得到了TimeLimit的结果,让人感到很诧异。仔细阅读发现,题目中有一个说明:Neitherofthese,AorL,islargerthan2,147,483,647(thelargestvaluethatcanbestoredina32-bitsignedinteger...
分类:
其他好文 时间:
2014-07-03 13:06:40
阅读次数:
129
ArgusTime limit: 3.000 secondsA data stream is a real-time, continuous, ordered sequence of items. Some examples include sensor data, Internet traffic...
分类:
其他好文 时间:
2014-07-03 13:04:51
阅读次数:
183
The figure below shows the flow of request in the Spring MVC Framework.When a request is sent to the Spring MVC Framework the following sequence of ev...
分类:
编程语言 时间:
2014-07-03 10:08:35
阅读次数:
232
1. rman的完全备份,和不完全备份 Oracle 数据库可以实现数据库不完全恢复与完全恢复。完全恢复是将数据库恢复到最新时刻,也就是无损恢复,保证数据库无丢失的恢复。而不完全恢复则是根据需要特意将数据库恢复到某个过去的特定时间点或特定的SCN以及特定的Sequence。我们可以通过基于用户管理的...
分类:
其他好文 时间:
2014-07-02 23:37:28
阅读次数:
246
//螺旋输出1-25
public class Sequence {
public static void main(String[] args) {
int n = 5;
// 0:向右,1:向下,2:向左,3:向上
int direction = 0;
// 行,列
int row = 0, col = 0;
int num = 0;
int[] array = new ...
分类:
其他好文 时间:
2014-07-02 09:46:28
阅读次数:
166
【题目】
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue is sky the".
click to show clarification.
Clarification:
What constitutes a word?
A sequence of non-space characters constitutes a word....
分类:
其他好文 时间:
2014-07-02 08:34:34
阅读次数:
170