oracle表空间文件
2014-10-28linux64位和oracle64bit默认oracle表空间数据文件用的BLOCKSIZE是8k,表空间数据文件最大是32G。32位linux和32位oracle,默认oracle表空间datafile用的BLOCKSIZE也是8k,表空间数据文件最大也是32G,试了一下设置db_16k_cache_size,创建64G的datafile文件也没有问题。
1、SQL> show parameter k_cache_size
db_2k_cache_size big integer 0
db_4k_cache_size big integer 0
db_8k_cache_size big integer 0
db_16k_cache_size big integer 16M
db_32k_cache_size big integer 16M
2、默认64位oracle创建表空间时用的BLOCKSIZE 是8k,表空间文件最大是32G。
比如:CREATE TABLESPACE TEST DATAFILE '/data1/test_ts1.dbf' SIZE 512M AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED BLOCKSIZE 8k;
/data1/test_ts1.dbf这个文件最大就能存32G,如果超过32G,可以增加表空间文件
alter TABLESPACE TEST add DATAFILE '/data1/test_ts2.dbf' SIZE 512M AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED;
3、为了让一个表空间数据文件存64G,你需要告诉oracle用BLOCKSIZE 是16k
比如:CREATE TABLESPACE TEST DATAFILE '/data1/test_ts1.dbf' SIZE 512M AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED BLOCKSIZE 16k;
提前需要设置db_16k_cache_size
alter system set db_16k_cache_size=16M scope=both;
否则会报错ORA-29339: tablespace block size 16384 does not match configured block sizes
4、为了让一个表空间数据文件存128G,你需要告诉oracle用BLOCKSIZE 是32k比如:CREATE TABLESPACE TEST DATAFILE '/data1/test_ts1.dbf' SIZE 512M AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED BLOCKSIZE 32k;
提前需要设置db_32k_cache_sizealter system set db_32k_cache_size=16M scope=both;
5、32位linux 和32位oracle,默认oracle表空间datafile用的BLOCKSIZE也是8k,表空间数据文件最大也是32G。
试了一下alter system set db_16k_cache_size=16M scope=both;
CREATE TABLESPACE TEST DATAFILE '/data1/test_ts1.dbf' SIZE 512M AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED BLOCKSIZE 16k; 文件最大64G,也没有问题。
6、设置db_2k_cache_size或db_4k_cache_size
alter system set db_2k_cache_size=1M scope=both;
alter system set db_4k_cache_size=1M scope=both;
CREATE TABLESPACE TEST2 DATAFILE '/data1/test_ts2.dbf' SIZE 512M AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED BLOCKSIZE 2k; 最大8G
CREATE TABLESPACE TEST4 DATAFILE '/data1/test_ts4.dbf' SIZE 512M AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED BLOCKSIZE 4k; 最大16G
7、设置1M自动分配16M
SQL>alter system set db_2k_cache_size=1M;
SQL>show parameter cache_size
db_2k_cache_size big integer 16M
db_4k_cache_size big integer 16M
db_16k_cache_size big integer 16M
相关日志
- oracle中drop一个表,让数据文件释放空间
- oracle批量杀掉死锁进程
- ORA-00257: archiver error. Connect internal only, until freed. (DBD ERROR: OCISessionBegin)
- oracle同义词SYNONYM
- substr()函数
- oracle create dblink
- oracle 启动归档模式
- linux删除oracle表空间文件后空间不释放
- nagios check_oracle_health install shell
- oracle最大连接数processes
- nagios check_oracle_health
- cx_Oracle for python
- 数据库查询重复行shell脚本
- oracle导入txt数据文件实例
- mysql导入txt数据文件实例
- 修改NLS_CHARACTERSET和NLS_NCHAR_CHARACTERSET字符集
- NLS_NCHAR_CHARACTERSET和NLS_CHARACTERSET的区别
- 如何安装mysql-5.6.12
- 设置NLS_LANG环境变量
- Oracle Golden Gate数据库同步技术
- mysql或oracle合并行函数
- Oracle InstantClient安装步骤
- shell sqlplus run sql
- oracle误删datafile
- mysqld_safe — MySQL Server Startup Script
- 如何禁用mysql端口3306
- oracle触发器实例 (8)
- sql语句处理BLOB (8)
- Drizzle A database for the Cloud (1)
- SGA/PGA的设置与调整 (9)
- 根据v$SGA_TARGET_ADVICE设置SGA SIZE (6)
- shmmax/shmall和sga_max_size/sga_target应该设置多大 (3)
- exp/imp和expdp/impdp的逻辑哲学 (1)
- oracle安装后期stop big port (1)
- OLTP和OLAP的区别 (3)
- mysql创建数据库及用户 (1)
- Mysql分支MariaDB简介 (6)
- ORA-01843: not a valid month (3)
- sql语句where 1=1和1=2的作用 (4)
- 如何安装mysql-5.5.31 (8)
- rlwrap实现sqlplus使用上下键查历史命令
- CentOS_x64_6.3 install Oracle 10.2.0.1报错ins_emdb.mk (2)