| title | FILEGROUP_NAME (Transact-SQL) | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| description | FILEGROUP_NAME (Transact-SQL) | ||||||||
| author | markingmyname | ||||||||
| ms.author | maghan | ||||||||
| ms.date | 03/03/2017 | ||||||||
| ms.service | sql | ||||||||
| ms.subservice | t-sql | ||||||||
| ms.topic | reference | ||||||||
| f1_keywords |
|
||||||||
| helpviewer_keywords |
|
||||||||
| dev_langs |
|
[!INCLUDE SQL Server Azure SQL Managed Instance]
This function returns the filegroup name for the specified filegroup identification (ID) number.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: 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 [!INCLUDEssSampleDBnormal] database.
SELECT FILEGROUP_NAME(1) AS [Filegroup Name];
GO [!INCLUDEssResult]
Filegroup Name
-----------------------
PRIMARY
(1 row(s) affected)
Metadata Functions (Transact-SQL)
SELECT (Transact-SQL)
sys.filegroups (Transact-SQL)