Home  >  Article  >  Database  >  新建数据文件的初始大小

新建数据文件的初始大小

PHPz
PHPzOriginal
2016-06-07 15:56:101864browse

问题: 为表空间添加一个100M的数据文件,产生的数据文件直接就是100M,还是开始为0,逐渐增大的? 实验: 为OPEN_TBS表空间增加一个数据文件: alter tablespace OPEN_TBS add datafile '/oracle/oradata_petest/petest/open_tbs02.dbf' size 100m; 查看文 

问题:

为表空间添加一个100M的数据文件,产生的数据文件直接就是100M,还是开始为0,逐渐增大的?

实验:

为OPEN_TBS表空间增加一个数据文件:

alter tablespace OPEN_TBS add datafile '/oracle/oradata_petest/petest/open_tbs02.dbf' size 100m;

查看文件大小:

ls -lrht
-rw-r----- 1 ora10g dba 101M May  8 18:20 dcsopen_tbs02.dbf

结论:

说明文件创建后保持的是即将用完的节奏。

给的相关教程请访问 MySQL视频教程

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn