Oracle 视图 V$DNFS_FILES 官方解释,作用,如何使用详细说明

本站中文解释

该视图 “V$DNFS_FILES” 属于Oracle数据库的性能视图,用于提供给管理员查看服务器上的文件在DNFS上的信息。该视图中显示的数据是从与udt.dat(描述所有已注册文件并决定文件管理代码如何处理DNFS文件)关联的”Udts”表中取得:

这个视图中常用列包括:

FILEPATH: 用于显示文件路径;

FNAME: 用于显示文件名;

UCB: 用于显示文件所在CNFS数据卷名称;

BYTES: 用于显示文件大小;

AVAILABLE_BYTES: 用于显示文件空闲大小;

BLOCKS: 用于显示文件块数量;

MEDIA: 用于显示文件的媒体类型;

如何使用视图:

使用Oracle视图非常简单,只需要使用SELECT语句就可以查看所有有关该视图的信息。

例如:

SELECT filepath, fname, ucb, bytes, available_bytes, blocks, media
FROM v$dnfs_files
WHERE media = ‘STORAGE1’;

上述查询将会显示出存储在STORAGE1中的文件的路径及其相关信息。这将有助于管理员更好地了解DNFS文件的结构及使用情况。

官方英文解释

V$DNFS_FILES displays information about the Oracle process files open through Direct NFS.

Column Datatype Description

FILENAME

VARCHAR2(513)

File name

FILESIZE

NUMBER

File Size

PNUM

NUMBER

Oracle process number which opened the file

SVR_ID

NUMBER

Direct NFS server identifier which identifies the server the file is open on

CON_ID

NUMBER

The ID of the container to which the data pertains. Possible values include:

  • 0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.

  • 1: This value is used for rows containing data that pertain to only the root

  • n: Where n is the applicable container ID for the rows containing data


数据运维技术 » Oracle 视图 V$DNFS_FILES 官方解释,作用,如何使用详细说明