Events
Mar 31, 11 p.m. - Apr 2, 11 p.m.
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 identification (ID) number for a specified filegroup name.
Transact-SQL syntax conventions
FILEGROUP_ID ( 'filegroup_name' )
filegroup_name
An expression of type sysname, representing the filegroup name whose filegroup ID FILEGROUP_ID
will return.
int
filegroup_name corresponds to the name column in the sys.filegroups catalog view.
This example returns the filegroup ID for the filegroup named PRIMARY
in the AdventureWorks2022 database.
SELECT FILEGROUP_ID('PRIMARY') AS [Filegroup ID];
GO
Here's the result set.
Filegroup ID
------------
1
(1 row(s) affected)
FILEGROUP_NAME (Transact-SQL)
Metadata Functions (Transact-SQL)
sys.filegroups (Transact-SQL)
Events
Mar 31, 11 p.m. - Apr 2, 11 p.m.
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register today