一. 暂时表 暂时表放在暂时表空间,不生成redo,仅仅有undo。 在暂时表中能够创建索引、视图及触发器,还能够使用“Export and Import(导出和导入)”或“Data Pump(数据泵)”导出和导入暂时表的定义。可是。即使使用了ROWS 选项,也不会导出数据。 有基于事务(默认)和基 ...
分类:
数据库 时间:
2017-07-08 17:00:59
阅读次数:
179
1.安装Subversion ServerSubversion server binaries maintained by the Ubuntu Project. Packages include the Subversion client, and tools to create a Subver ...
分类:
系统相关 时间:
2017-07-08 16:13:58
阅读次数:
217
1.打开idea 2.点击file . 3.首先我们创建仓库 4.第一次上传文件 5.在左下角位置会出现一条信息 6.然后Add >Commit >Push的顺序上传文件到远程仓库,在项目中右键选中git 然后选择add 7.然后右键选中git,然后选择commit file 8.然后进入下面的页面 ...
分类:
其他好文 时间:
2017-07-07 13:27:36
阅读次数:
180
一.转换构造函数 将其它类型转换为当前类类型需要借助转换构造函数(Conversion constructor)。转换构造函数也是一种构造函数,它遵循构造函数的一般规则。转换构造函数只有一个参数。 ...
分类:
编程语言 时间:
2017-07-05 21:16:11
阅读次数:
168
目的 官方的Drools范例大都是基于纯Java项目或Maven项目,而基于Spring Boot项目的很少。 本文介绍如何在Spring Boot项目上加上Drools规则引擎。 POM依赖 POM文件如下: <project xmlns="http://maven.apache.org/POM/ ...
分类:
编程语言 时间:
2017-07-05 11:45:22
阅读次数:
348
ODbgScript original pluginhttp://github.com/odbgscript 1. About OllyScript and ODbgScript2. Status 2.1 What's new?3. Documentation 3.1 Language 3.1.1 ...
分类:
数据库 时间:
2017-07-04 18:17:54
阅读次数:
159
Python代码的编译 Python代码在解释执行之前,是会被编译成.pyc或者.pyo文件的,它们是中间字节码表示的文件,之后Python虚拟机才会去解释执行它们。 1、pyc文件 pyc是一种二进制文件,是由py文件经过编译后,生成的文件,是一种byte code,py文件变成pyc文件后,加载 ...
分类:
编程语言 时间:
2017-07-04 14:59:49
阅读次数:
140
Have you ever known the theory of chocie? There are a bunch of axiems, but there are only two thing we really need to concern with. One, the only pers ...
分类:
其他好文 时间:
2017-07-04 11:19:51
阅读次数:
118
- (NSString *)getDealNumwithstring:(NSString *)string withNumCount:(NSInteger)integer{ NSDecimalNumber *numberA = [NSDecimalNumber decimalNumberWithSt... ...
分类:
移动开发 时间:
2017-07-03 18:11:06
阅读次数:
190
null 和 ""操作: 1、判断是否Null 或者 "":StringUtils.isEmpty(null) 、StringUtils.isNotEmpty(null) 2、判断是否null 或者 "" 去空格:StringUtils.isBlank(" ")、StringUtils.isNotB ...
分类:
其他好文 时间:
2017-07-03 16:14:46
阅读次数:
233