Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 933fc06

Browse files
authored
Update sys-dm-db-page-info-transact-sql.md
1 parent d50ba9b commit 933fc06

1 file changed

Lines changed: 8 additions & 12 deletions

File tree

docs/relational-databases/system-dynamic-management-views/sys-dm-db-page-info-transact-sql.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,22 @@ monikerRange: ">=sql-server-ver15||=sqlallproducts-allversions"
2626

2727
Returns information about a page in a database. The function returns one row that contains the header information from the page, including the `object_id`, `index_id`, and `partition_id`. This function replaces the need to use `DBCC PAGE` in most cases.
2828

29-
## Syntax
30-
29+
## Syntax
3130
```
3231
sys.dm_db_page_info ( DatabaseId, FileId, PageId, Mode )
3332
```
3433

3534
## Arguments
36-
*DatabaseId* | NULL | DEFAULT
37-
38-
Is the ID of the database. *DatabaseId* is **smallint**. Valid input is the ID number of a database. The default is NULL, however sending a NULL value for this parameter will result in an error.
35+
*DatabaseId* | NULL | DEFAULT
36+
Is the ID of the database. *DatabaseId* is **smallint**. Valid input is the ID number of a database. The default is NULL, however sending a NULL value for this parameter will result in an error.
3937

40-
*FileId* | NULL | DEFAULT
41-
38+
*FileId* | NULL | DEFAULT
4239
Is the ID of the file. *FileId* is **int**. Valid input is the ID number of a file in the database specified by *DatabaseId*. The default is NULL, however sending a NULL value for this parameter will result in an error.
4340

44-
*PageId* | NULL | DEFAULT
45-
41+
*PageId* | NULL | DEFAULT
4642
Is the ID of the page. *PageId* is **int**. Valid input is the ID number of a page in the file specified by *FileId*. The default is NULL, however sending a NULL value for this parameter will result in an error.
4743

48-
*Mode* | NULL | DEFAULT
49-
44+
*Mode* | NULL | DEFAULT
5045
Determines the level of detail in the output of the function. 'LIMITED' will return NULL values for all description columns, 'DETAILED' will populate description columns. DEFAULT is 'LIMITED.'
5146

5247
## Table Returned
@@ -143,6 +138,7 @@ CROSS APPLY sys.dm_db_page_info(r.db_id, r.file_id, r.page_id, 'LIMITED') AS pag
143138
## See Also
144139
[Dynamic Management Views and Functions (Transact-SQL)](~/relational-databases/system-dynamic-management-views/system-dynamic-management-views.md)
145140
[Database Related Dynamic Management Views (Transact-SQL)](../../relational-databases/system-dynamic-management-views/database-related-dynamic-management-views-transact-sql.md)
146-
[sys.dm_exec_requests (Transact-SQL)](../../relational-databases/system-dynamic-management-views/sys-dm-exec-requests-transact-sql.md)
141+
[sys.dm_exec_requests (Transact-SQL)](../../relational-databases/system-dynamic-management-views/sys-dm-exec-requests-transact-sql.md)
142+
[sys.fn_PageResCracker](../../relational-databases/system-functions/sys-fn-pagerescracker-transact-sql.md)
147143

148144

0 commit comments

Comments
 (0)