PowerShell Read SQL Server data into Dataset

This blog article shows you how to use PowerShell to read the SQL Server database table records into DataSet. Below is the sample code snippet to read record into a from the database table to Dataset and print it out. The Products table is the same as the one in Northwind database.

# Declare Sql Connection object

$SqlConnection = New-Object System.Data.SqlClient.SqlConnection

# Declare Connection string

$SqlConnection.ConnectionString = “Server=localhost;Database=poc;Integrated Security=True”

# Declare Sql Command Object

$SqlCmd = New-Object System.Data.SqlClient.SqlCommand

# Declare Sql Command statement

$SqlCmd.CommandText = ” SELECT * FROM Products”

# Assign the Sql Connection object to Sql Command

$SqlCmd.Connection = $SqlConnection

$SqlCmd.CommandTimeout = 0

# Declare Sql Adapter object

$SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter

# Assign the Sql Command object Sql Adapter object

$SqlAdapter.SelectCommand = $SqlCmd

# Declare DataSet object

$DataSet = New-Object System.Data.DataSet

# Execute Sql Adapter object to fill the DataSet

$SqlAdapter.Fill($DataSet)

# Close the database connection

$SqlConnection.Close()

# List out the data

$DataSet.Tables[0]

You should see something like the below when you execute the script.


Reference: https://social.technet.microsoft.com/Forums/ie/en-US/603af83a-8db5-48ce-b19c-74a823ebbece/running-sql-via-powershell?forum=winserverpowershell/?WT.mc_id=DP-MVP-36769

https://blog.netnerds.net/2015/02/working-with-basic-net-datasets-in-powershell/?WT.mc_id=DP-MVP-36769

About chanmingman

Since March 2011 Microsoft Live Spaces migrated to Wordpress (http://www.pcworld.com/article/206455/Microsoft_Live_Spaces_Moves_to_WordPress_An_FAQ.html) till now, I have is over 1 million viewers. This blog is about more than 50% telling you how to resolve error messages, especial for Microsoft products. The blog also has a lot of guidance teaching you how to get stated certain Microsoft technologies. The blog also uses as a help to keep my memory. The blog is never meant to give people consulting services or silver bullet solutions. It is a contribution to the community. Thanks for your support over the years. Ming Man is Microsoft MVP since year 2006. He is a software development manager for a multinational company. With 25 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He has been using Visual Studio (.NET) since the Beta back in year 2000. He and the team have developed many projects using .NET platform such as SCM, and HR based applications. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
This entry was posted in Uncategorized. Bookmark the permalink.

1 Response to PowerShell Read SQL Server data into Dataset

  1. Pingback: Create Database Table and Transfer the Data to a different database MS SQL | Chanmingman's Blog

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.