Creating a SQL Server database inventory

This recipe will explain the process of retrieving database properties and saving it to a file.

Getting ready

Log in to your SQL Server instance. Check which user databases are available for you to investigate. The same databases should appear in your resulting file after you run the PowerShell script.

How to do it...

To create a SQL Server Database Inventory, follow these steps:

  1. Open PowerShell ISE as administrator.
  2. Import the SQLPS module and create a new SMO Server object:
    #import SQL Server module
    Import-Module SQLPS -DisableNameChecking
    
    #replace this with your instance name
    $instanceName = "localhost"
    $server = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Server -ArgumentList $instanceName

    Add the ...

Get SQL Server 2014 with PowerShell v5 Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.