| title | FILEGROUP_ID (Transact-SQL) | Microsoft Docs | |||||
|---|---|---|---|---|---|---|
| ms.custom | ||||||
| ms.date | 03/03/2017 | |||||
| ms.prod | sql-non-specified | |||||
| ms.reviewer | ||||||
| ms.suite | ||||||
| ms.technology |
|
|||||
| ms.tgt_pltfrm | ||||||
| ms.topic | language-reference | |||||
| f1_keywords |
|
|||||
| dev_langs |
|
|||||
| helpviewer_keywords |
|
|||||
| ms.assetid | 852a76d8-9e61-4a31-84ee-c7edb84a061c | |||||
| caps.latest.revision | 21 | |||||
| author | BYHAM | |||||
| ms.author | rickbyh | |||||
| manager | jhubbard |
[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx_md]
Returns the filegroup identification (ID) number for a specified filegroup name.
Transact-SQL Syntax Conventions
FILEGROUP_ID ( 'filegroup_name' )
' filegroup_name '
Is an expression of type sysname that represents the filegroup name for which to return the filegroup ID.
int
filegroup_name corresponds to the name column in the sys.filegroups catalog view.
The following example returns the filegroup ID for the filegroup named PRIMARY in the [!INCLUDEssSampleDBnormal] database.
SELECT FILEGROUP_ID('PRIMARY') AS [Filegroup ID];
GO
[!INCLUDEssResult]
Filegroup ID
------------
1
(1 row(s) affected)
FILEGROUP_NAME (Transact-SQL)
Metadata Functions (Transact-SQL)
sys.filegroups (Transact-SQL)