title | description | author | ms.author | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | monikerRange | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sys.fn_virtualfilestats (Transact-SQL) |
sys.fn_virtualfilestats (Transact-SQL) |
rwestMSFT |
randolphwest |
08/16/2016 |
sql |
system-objects |
reference |
|
|
|
=azuresqldb-current||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current |
[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance]
Returns I/O statistics for database files, including log files. In [!INCLUDEssNoVersion], this information is also available from the sys.dm_io_virtual_file_stats dynamic management view.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
fn_virtualfilestats ( { database_id | NULL } , { file_id | NULL } )
database_id | NULL
Is the ID of the database. database_id is int, with no default. Specify NULL to return information for all databases in the instance of [!INCLUDEssNoVersion].
file_id | NULL
Is the ID of the file. file_id is int, with no default. Specify NULL to return information for all files in the database.
Column Name | Data type | Description |
---|---|---|
DbId | smallint | Database ID. |
FileId | smallint | File ID. |
TimeStamp | bigint | Database timestamp at which the data was taken. int in versions before [!INCLUDEssSQL15_md]. |
NumberReads | bigint | Number of reads issued on the file. |
BytesRead | bigint | Number of bytes read issued on the file. |
IoStallReadMS | bigint | Total amount of time, in milliseconds, that users waited for the read I/Os to complete on the file. |
NumberWrites | bigint | Number of writes made on the file. |
BytesWritten | bigint | Number of bytes written made on the file. |
IoStallWriteMS | bigint | Total amount of time, in milliseconds, that users waited for the write I/Os to complete on the file. |
IoStallMS | bigint | Sum of IoStallReadMS and IoStallWriteMS. |
FileHandle | bigint | Value of the file handle. |
BytesOnDisk | bigint | Physical file size (count of bytes) on disk. For database files, this is the same value as size in sys.database_files, but is expressed in bytes rather than pages. For database snapshot sparse files, this is the space the operating system is using for the file. |
fn_virtualfilestats is a system table-valued function that gives statistical information, such as the total number of I/Os performed on a file. You can use this function to help keep track of the length of time users have to wait to read or write to a file. The function also helps identify the files that encounter large numbers of I/O activity.
Requires VIEW SERVER STATE permission on the server.
The following example displays statistical information for file ID 1 in the database with an ID of 1
.
SELECT *
FROM fn_virtualfilestats(1, 1);
GO
The following example displays statistical information for the log file in the [!INCLUDEssSampleDBnormal] sample database. The system function DB_ID
is used to specify the database_id parameter.
SELECT *
FROM fn_virtualfilestats(DB_ID(N'AdventureWorks2022'), 2);
GO
The following example displays statistical information for all files in all databases in the instance of [!INCLUDEssNoVersion].
SELECT *
FROM fn_virtualfilestats(NULL,NULL);
GO
DB_ID (Transact-SQL)
FILE_IDEX (Transact-SQL)
sys.database_files (Transact-SQL)
sys.master_files (Transact-SQL)