<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PowerShell.nu &#187; SQL</title>
	<atom:link href="http://www.powershell.nu/tag/sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.powershell.nu</link>
	<description>Windows PowerShell</description>
	<lastBuildDate>Thu, 08 Dec 2011 14:46:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>SQL</title>
		<link>http://www.powershell.nu/2011/03/14/sql/</link>
		<comments>http://www.powershell.nu/2011/03/14/sql/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 07:00:27 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[2W]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=1143</guid>
		<description><![CDATA[This post is part of the Second Wednesday Demo Session, Click here for more info about additional demo posts. It&#8217;s possible to manage SQL Server using Windows PowerShell. First let&#8217;s see how to create a New Database. In these examples we are using Microsoft.SqlServer.Smo so step one is adding the class to our current session. [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2011/03/14/sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint 2010</title>
		<link>http://www.powershell.nu/2011/03/14/sharepoint-2010/</link>
		<comments>http://www.powershell.nu/2011/03/14/sharepoint-2010/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 07:00:27 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[2W]]></category>
		<category><![CDATA[Active-Directory]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=1146</guid>
		<description><![CDATA[This post is part of the Second Wednesday Demo Session, Click here for more info about additional demo posts. In a previous post we used Windows PowerShell to Create a Database, add a table and populate the table with alot of entries. In the last part of this Demo we&#8217;ll use SharePoint 2010 to populate [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2011/03/14/sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Another Handy SQL function in PowerShell</title>
		<link>http://www.powershell.nu/2009/01/30/another-handy-sql-function-in-powershell/</link>
		<comments>http://www.powershell.nu/2009/01/30/another-handy-sql-function-in-powershell/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 11:29:34 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=392</guid>
		<description><![CDATA[The Get-SQL function retrieved data from SQL and presented it in a HashTable Array. Let&#8217;s create a similar function that we can use when updating, inserting or deleting data from an SQL Table. function Set-SQL ([string]$Query,[string]$ConnectionString) { $Connection = New-Object System.Data.SQLClient.SQLConnection $Connection.ConnectionString = $ConnString $Connection.Open() $Command = New-Object System.Data.SQLClient.SQLCommand $Command.Connection = $Connection $Command.CommandText = $Query [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2009/01/30/another-handy-sql-function-in-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handy SQL Function in PowerShell</title>
		<link>http://www.powershell.nu/2009/01/27/handy-sql-function-in-powershell/</link>
		<comments>http://www.powershell.nu/2009/01/27/handy-sql-function-in-powershell/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 09:20:07 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=382</guid>
		<description><![CDATA[In a previous post I described a little about PowerShell and SQL, how to connect and how to handle different queries using PowerShell. Now let&#8217;s put it all togheter and create a more useful function. function Get-SQL ([string]$Query,[string]$ConnectionString) { $Connection = New-Object System.Data.SQLClient.SQLConnection $Connection.ConnectionString = $ConnectionString $Connection.Open() $Command = New-Object System.Data.SQLClient.SQLCommand $Command.Connection = $Connection $Command.CommandText [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2009/01/27/handy-sql-function-in-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SQL through PowerShell</title>
		<link>http://www.powershell.nu/2009/01/26/sql-through-powershell/</link>
		<comments>http://www.powershell.nu/2009/01/26/sql-through-powershell/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 20:29:31 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=379</guid>
		<description><![CDATA[Working with Databases using PowerShell can be a little tricky from time to time. In this post we&#8217;ll take a look at how to work with database tables using .NET and we&#8217;ll also check out some CmdLets available. Let&#8217;s start connecting to our SQL database using the SQLConnection object: PS > $Connection = New-Object System.Data.SQLClient.SQLConnection [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2009/01/26/sql-through-powershell/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

