impdp sys/password full=y dumpfile=bg.dmp nologfile=y sqlfile=bg_dmp.sql备注: bg.dmp 是 dmp 文件, bg_dmp.sql 是导出来的 SQL 代码。 导出的文件和代码都存放在:oracle 安装目录: ap...
分类:
数据库 时间:
2014-07-09 00:48:00
阅读次数:
260
原创地址: http://www.cnblogs.com/Alandre/ (泥沙砖瓦浆木匠),需要转载的,保留下!
Thanks
Although the world is full of suffering , it is full also of the overcoming of it. -Hellen Keller
相信自己看得懂就看得懂了,相信自己能写下去,我就...
分类:
编程语言 时间:
2014-07-08 17:57:36
阅读次数:
329
l全文检索(Full-Text
Retrieval)是指以文本作为检索对象,找出含
有指定词汇的文本。全面、准确和快速是衡量全文检索系统的关键指
标。
l关于全文检索,我们要知道:
1,只处理文本。
2...
分类:
其他好文 时间:
2014-07-08 16:31:05
阅读次数:
183
英文原版链接:http://codepen.io/shshaw/full/gEiDt我们都知道margin:0 auto;的样式能让元素水平居中,而margin: auto;却不能做到垂直居中……直到现在。但是,请注意!想让元素绝对居中,只需要声明元素高度,并且附加以下样式,就可以做到:12345....
分类:
Web程序 时间:
2014-07-08 00:35:55
阅读次数:
327
二级索引与索引Join是多数业务系统要求存储引擎提供的基本特性,RDBMS早已支持,NOSQL阵营也在摸索着符合自身特点的最佳解决方案。这篇文章会以HBase做为对象来讨论如何基于Hbase构建二级索引与实现索引join。文末同时会列出目前已知的包括0.19.3版secondary index,IT...
分类:
其他好文 时间:
2014-07-06 21:18:54
阅读次数:
176
1、join方法——把列表的内容通过某个字符连接起来具体使用方法如下:>>> a = ['my', 'name', 'is', 'yaha']>>> ''.join(a)'mynameisyaha'>>> ' '.join(a)'my name is yaha'>>> '-'.join(a)'my-...
分类:
编程语言 时间:
2014-07-06 20:31:36
阅读次数:
204
[seriesposts sid=500] 线程的join合并的含义就是将几个并行线程的线程合并为一个单线程执行,应用场景是当一个线程必须等待另一个线程执行完毕才能执行时可以使用join方法。 package com.javaer.thread;public class Tjoin { /** *....
分类:
编程语言 时间:
2014-07-06 15:57:59
阅读次数:
278
DescriptionConsider an infinite full binary search tree (see the figure below), the numbers in the nodes are 1, 2, 3, .... In a subtree whose root nod...
分类:
其他好文 时间:
2014-07-06 13:23:06
阅读次数:
229
Description
Consider an infinite full binary search tree (see the figure below), the numbers in the nodes are 1, 2, 3, .... In a subtree whose root node is X, we can get the minimum number in this ...
分类:
其他好文 时间:
2014-07-06 11:36:14
阅读次数:
284
陆陆续续几个月下来,终于把题刷完了,过程中遇到的python的题解很少,这里重新用python实现下,所以题解可能都是总结性的,或者是新的心得,不会仅针对题目本身说的太详细。
def reverseWords(self, s):
s = ' '.join(s.split()[::-1])
return s
[ : : -1 ] 是将元素进行翻转...
分类:
编程语言 时间:
2014-07-06 00:37:50
阅读次数:
299