|
本帖最后由 cthclan 于 2014-7-8 10:26 编辑
发个贴, 跟大家分享一下... 希望大家喜欢....
1. small tablespace 大小计算方法.
Specify a smaller file size. The maximum file size is
db_block_size * 4194303
For example, if db_block_size is 2kB then maximum file size is limited to
2k*4194303, 8Gb-2k.
2. 以下提供参考.
Change db_block_size. This can only be done by recreating of database.
db_block_size Maximum data file size
------------- ----------------------
2kb 8Gb-2kb
4kb 16Gb-4kb
8kb 32Gb-8kb
16kb 64Gb-16kb
32kb 128Gb-32kb
3. bigfile tablespace
Use a bigfile tablespace which is a feature that has been introduced with Oracle 10g.
create bigfile tablespace bigtbs datafile '/u01/app/oracle/oradata/xxxx/bigtbs.dbf' size 4T;
CTH
|
|