You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.
39
37
40
-
*FileId* | NULL | DEFAULT
41
-
38
+
*FileId* | NULL | DEFAULT
42
39
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.
43
40
44
-
*PageId* | NULL | DEFAULT
45
-
41
+
*PageId* | NULL | DEFAULT
46
42
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.
47
43
48
-
*Mode* | NULL | DEFAULT
49
-
44
+
*Mode* | NULL | DEFAULT
50
45
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.'
0 commit comments