Skip to content

Commit

Permalink
Replaced "databases" to "indexes" in EXAMPLE
Browse files Browse the repository at this point in the history
  • Loading branch information
fraefel committed Apr 29, 2019
1 parent 51bb0c6 commit 943fc49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions functions/Find-DbaDbUnusedIndex.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@ function Find-DbaDbUnusedIndex {
.EXAMPLE
PS C:\> Find-DbaDbUnusedIndex -SqlInstance sql2016 -Database db1, db2
Finds unused databases on db1 and db2 on sql2016
Finds unused indexes on db1 and db2 on sql2016
.EXAMPLE
PS C:\> Find-DbaDbUnusedIndex -SqlInstance sql2016 -SqlCredential $cred
Finds unused databases on db1 and db2 on sql2016 using SQL Authentication to connect to the server
Finds unused indexes on db1 and db2 on sql2016 using SQL Authentication to connect to the server
.EXAMPLE
PS C:\> Get-DbaDatabase -SqlInstance sql2016 | Find-DbaDbUnusedIndex
Finds unused databases on all databases on sql2016
Finds unused indexes on all databases on sql2016
#>
[CmdletBinding()]
Expand Down

0 comments on commit 943fc49

Please sign in to comment.