FILE_NAME (Transact-SQL)

Returns the logical file name for the given file identification (ID) number.

Topic link iconTransact-SQL Syntax Conventions

Syntax

FILE_NAME ( file_id ) 

Arguments

  • file_id
    Is the file identification number for which to return the file name. file_id is int.

Return Types

nvarchar(128)

Remarks

file_ID corresponds to the file_id column in the sys.master_files or sys.database_files catalog views.

Examples

The following example returns the file names for file_ID 1 and file_ID in the AdventureWorks2008R2 database.

USE AdventureWorks2008R2;
GO
SELECT FILE_NAME(1) AS 'File Name 1', FILE_NAME(2) AS 'File Name 2';
GO

Here is the result set.

File Name 1 File Name 2

---------------- ------------------------

AdventureWorks2008R2_Data AdventureWorks2008R2_Log

(1 row(s) affected)