Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Applies to:
SQL Server
Azure SQL Managed Instance
This function returns the filegroup name for the specified filegroup identification (ID) number.
Transact-SQL syntax conventions
FILEGROUP_NAME ( filegroup_id )
filegroup_id
The filegroup ID number whose filegroup name FILEGROUP_NAME
will return. filegroup_id has a smallint data type.
nvarchar(128)
filegroup_id corresponds to the data_space_id column of the sys.filegroups catalog view.
This example returns the filegroup name for filegroup ID 1
in the AdventureWorks2022 database.
SELECT FILEGROUP_NAME(1) AS [Filegroup Name];
GO
Here's the result set.
Filegroup Name
-----------------------
PRIMARY
(1 row(s) affected)
Metadata Functions (Transact-SQL)
SELECT (Transact-SQL)
sys.filegroups (Transact-SQL)
Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register today