Home >Database >Mysql Tutorial >与datafile相关的表和视图_MySQL

与datafile相关的表和视图_MySQL

WBOY
WBOYOriginal
2016-06-01 13:56:12829browse

dba_data_files:
file_name                 数据文件名及路径
file_id                      数据文件标识
bytes                       数据文件大小
bocks                      数据文件大小对应的数据库块数
tablespace_name     数据文件对应的表空间名称
autoextensible          数据库文件是否可以自动扩展
maxbytes      
maxblocks               该文件最大可以扩展的字节数,及数据块数。
user_bytes
user_blocks            表示用户所能使用的数据文件大小,通过等于 datafile size-LMT/DMT所使用的空间。
#关于自动扩展属性
alter tablespace ...
datafile '...' size ...
autoextent on
next ...
maxsize ...

#LML(local management tablespace)
alter tablespace ...
datafile '...' size ...
extent management local autoallocate/uniform size ...;

#DML(dictionary management tablespace)
create tablespace ...
datafile '...' size ...
extent management dictionary
blocksize ...
default storage (initial
                        next
                        minextents
                        maxextents
                        pctincrease     )

v$datafile:描述了数据文件的同步信息。

dba_free_space:
bytes,blocks             表示该表空间空闲空间大小及块数

v$filestat:
phyrds,phywrts         表示物理磁盘读、写的数据库

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