| description | FILE_NAME (Transact-SQL) | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| title | FILE_NAME (Transact-SQL) | Microsoft Docs | |||||||||
| ms.custom | ||||||||||
| ms.date | 03/03/2017 | |||||||||
| ms.prod | sql | |||||||||
| ms.prod_service | sql-database | |||||||||
| ms.reviewer | ||||||||||
| ms.technology | t-sql | |||||||||
| ms.topic | reference | |||||||||
| f1_keywords |
|
|||||||||
| dev_langs |
|
|||||||||
| helpviewer_keywords |
|
|||||||||
| ms.assetid | 68b298aa-ce47-4af5-b59f-9a1b46d48326 | |||||||||
| author | cawrites | |||||||||
| ms.author | chadam |
[!INCLUDE SQL Server]
This function returns the logical file name for a given file identification (ID) number.
Transact-SQL Syntax Conventions
FILE_NAME ( file_id )
[!INCLUDEsql-server-tsql-previous-offline-documentation]
file_id
The file identification number whose file name FILE_NAME will return. file_id has an int data type.
nvarchar(128)
file_ID corresponds to the file_id column in the sys.master_files catalog view or the sys.database_files catalog view.
This example returns the file names for file_ID 1 and file_ID in the [!INCLUDEssSampleDBnormal] database.
SELECT FILE_NAME(1) AS 'File Name 1', FILE_NAME(2) AS 'File Name 2';
GO [!INCLUDEssResult]
File Name 1 File Name 2
------------------------- ------------------------
AdventureWorks2012_Data AdventureWorks2012_Log
(1 row(s) affected)
FILE_IDEX (Transact-SQL)
Metadata Functions (Transact-SQL)
sys.database_files (Transact-SQL)
sys.master_files (Transact-SQL)