文章列表
网上有很多按日期自动分区表的,这里说的是按记录数自动分区,比如:100W一个分区。
code:
create table Student
(
PK_ID Integer,
Name VARCHAR(18),
Age Integer
)
partition by range(PK_ID)
interval (1000000)
(
partition INIT_PAR values less than(1000000)
);
说明:
1.interval()间隔函数;
2.按记录数分区时,分区列应该是Number类型。
其它部分同日期分区,大家可以在网上找,有 ...
异常:
Exception in thread "main" java.lang.ClassFormatError: com.ssx.tool.demo.core.BeginClass (unrecognized class file version)
at java.lang.VMClassLoader.defineClass(libgcj.so.7rh)
at java.lang.ClassLoader.defineClass(libgcj.so.7rh)
at java.security.SecureClassLoader.defineCl ...
使用PL/SQL Developer连接远程数据库
步骤一、下载需要的工具: 1.PL/SQL Developer, 2.Instant Client Package - Basic:免安装的Oracle客户端,可到Oracle网站(http://www.oracle.com/technetwork/topics/winsoft-085727.html)上下载,选择“All files required to run OCI, OCCI, and JDBC-OCI applications” 版;步骤二、配置客户端环境: 下载完毕后将Instant Client Pa ...