Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
Returns the logical file name for the given file identification (ID) number.
Transact-SQL Syntax Conventions
Składnia
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)
Uwagi
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 AdventureWorks2012 database.
USE AdventureWorks2012;
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
---------------- ------------------------
AdventureWorks2012_Data AdventureWorks2012_Log
(1 row(s) affected)
Zobacz także
Odwołanie
Metadata Functions (Transact-SQL)