Creating an RSS feed from SQL Server content

In this recipe, we will create an RSS feed from SQL Server content.

Getting ready

For this recipe, we will use a simple query to populate our RSS feed. We will list our database list from sys.databases and use it as fictional content for our RSS file.

How to do it...

These are the steps required to create an RSS feed using T-SQL and PowerShell:

  1. Open PowerShell ISE as an administrator.
  2. Import the SQLPS module as follows:
    #import SQL Server module
    Import-Module SQLPS -DisableNameChecking
  3. Add the following script and run it:
    $instanceName = "localhost" $databaseName = "SampleDB" $timestamp = Get-Date -format "yyyy-MMM-dd-hhmmtt" $rssFileName = "C:\XML Files\rss_$timestamp.xml" #values to be used for RSS $rssTitle ...

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.