Oracle 视图 V$PMEM_FILESTORE 官方解释,作用,如何使用详细说明
本站中文解释
V$PMEM_FILESTORE视图显示服务器中的持久内存文件存储的文件列表。它保存数据库应用程序中用作持久内存文件存储的文件的完整文件路径路径和命名属性。
可以检索V$PMEM_FILESTORE视图,从而查看应用程序正在使用的持久内存文件。
要使用V$PMEM_FILESTORE视图,需要在SQL*Plus中输入以下命令:
SELECT * FROM v$pmem_filestore;
官方英文解释
V$PMEM_FILESTORE
displays information about Persistent Memory Filestores (PMEM Filestores).
Column | Datatype | Description |
---|---|---|
|
|
PMEM Filestore name |
|
|
Operating system directory path for the mount point of the PMEM Filestore |
|
|
Operating system file path for the backing file of the PMEM Filestore |
|
|
Block size of the PMEM Filestore (in bytes) |
|
|
Current size of the PMEM Filestore (in bytes) |
|
|
Indicates whether the PMEM Filestore is autoextensible ( |
|
|
If the PMEM Filestore is autoextensible, then this column displays the size of an autoextension increment (in bytes) If the PMEM Filestore is not autoextensible, then the value of this column is 0 |
|
|
Maximum autoextend size (in bytes) |
|
|
Amount of free space currently available in the PMEM Filestore (in bytes) |
|
|
Amount of space currently allocated to data and metadata in the PMEM Filestore (in bytes) |
|
|
The ID of the container to which the data pertains. Possible values include:
|
Note:
This view is available starting with Oracle Database 21c.