commands

^

Get-DbaDbPageInfo

Author Chrissy LeMaire (@cl), netnerds.net
Availability Windows, Linux, macOS

 

Want to see the source code for this command? Check out Get-DbaDbPageInfo on GitHub.
Want to see the Bill Of Health for this command? Check out Get-DbaDbPageInfo.

Synopsis

Get-DbaDbPageInfo will return page information for a database

Description

Get-DbaDbPageInfo is able to return information about the pages in a database. It's possible to return the information for multiple databases and filter on specific databases, schemas and tables.

Syntax

Get-DbaDbPageInfo
    [[-SqlInstance] <DbaInstanceParameter[]>]
    [[-SqlCredential] <PSCredential>]
    [[-Database] <String[]>]
    [[-Schema] <String[]>]
    [[-Table] <String[]>]
    [[-InputObject] <Database[]>]
    [-EnableException]
    [<CommonParameters>]

 

Examples

 

Example: 1
PS C:\> Get-DbaDbPageInfo -SqlInstance sql2017

Returns page information for all databases on sql2017

Example: 2
PS C:\> Get-DbaDbPageInfo -SqlInstance sql2017, sql2016 -Database testdb

Returns page information for the testdb on sql2017 and sql2016

Example: 3
PS C:\> $servers | Get-DbaDatabase -Database testdb | Get-DbaDbPageInfo

Returns page information for the testdb on all $servers

Optional Parameters

-SqlInstance

The target SQL Server instance or instances

Alias
Required False
Pipeline false
Default Value
-SqlCredential

Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. For MFA support, please use Connect-DbaInstance.

Alias
Required False
Pipeline false
Default Value
-Database

Filter to only get specific databases

Alias
Required False
Pipeline false
Default Value
-Schema

Filter to only get specific schemas

Alias
Required False
Pipeline false
Default Value
-Table

Filter to only get specific tables

Alias
Required False
Pipeline false
Default Value
-InputObject

Enables piping from Get-DbaDatabase

Alias
Required False
Pipeline true (ByValue)
Default Value
-EnableException

By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

Alias
Required False
Pipeline false
Default Value False