Returns the filegroup name for the specified filegroup identification (ID) number.
Transact-SQL Syntax Conventions
FILEGROUP_NAME ( filegroup_id )
Is the filegroup ID number for which to return the filegroup name. filegroup_id is smallint.
nvarchar(128)
filegroup_id corresponds to the data_space_id column in the sys.filegroups catalog view.
The following example returns the filegroup name for the filegroup ID 1 in the AdventureWorks database.
USE AdventureWorks2012; GO SELECT FILEGROUP_NAME(1) AS [Filegroup Name]; GO
Here is the result set.
Filegroup Name ----------------------- PRIMARY (1 row(s) affected)