<?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>PeteStilgoe.com &#187; sql 2008</title>
	<atom:link href="http://www.petestilgoe.com/tag/sql-2008/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.petestilgoe.com</link>
	<description>&#34;Be fearful when others are greedy, be greedy when others are fearful.”</description>
	<lastBuildDate>Mon, 30 Jan 2012 14:28:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to create an Excel Workbook from an SQL database using Open XML SDK 2.0</title>
		<link>http://www.petestilgoe.com/2011/03/how-to-create-an-excel-workbook-from-an-sql-database-using-open-xml-sdk-2-0/</link>
		<comments>http://www.petestilgoe.com/2011/03/how-to-create-an-excel-workbook-from-an-sql-database-using-open-xml-sdk-2-0/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 16:26:01 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[MS Office]]></category>
		<category><![CDATA[Open XML SDK]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[MS Excel]]></category>
		<category><![CDATA[Open XML SDK 2]]></category>
		<category><![CDATA[sql 2008]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=872</guid>
		<description><![CDATA[

Below is the C# code to create a new Excel workbook based on a template file &#038; populated by an SQL database.
You need to add references to:
DocumentFormat.OpenXml
System.Data.Linq
Windows.Base

using System;
using System.IO;
using System.Data;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Spreadsheet;
using DocumentFormat.OpenXml;

namespace ElitetoExcel
{
    class Program
    {
        static string[] [...]]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2011/03/how-to-create-an-excel-workbook-from-an-sql-database-using-open-xml-sdk-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharepoint 2010: Database doesnt exist but sill appears in Central Admin &#8211;&gt; Manage Databases Upgrade Status</title>
		<link>http://www.petestilgoe.com/2011/02/sharepoint-2010-database-doesnt-exist-but-sill-appears-in-central-admin-manage-databases-upgrade-status/</link>
		<comments>http://www.petestilgoe.com/2011/02/sharepoint-2010-database-doesnt-exist-but-sill-appears-in-central-admin-manage-databases-upgrade-status/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 08:45:40 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Sharepoint 2010]]></category>
		<category><![CDATA[Sharepoint Databases]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[sql 2008]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=798</guid>
		<description><![CDATA[

If you have deleted your database in SQL but they sill appear in Central Admin &#8211;> Manage Databases Upgrade Status, you can use the following Powershell script to remove them:
$db = Get-SPDatabase &#124; where{$_.Name -eq &#34;YourDatabaseName&#34;}

$db.Delete()

]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2011/02/sharepoint-2010-database-doesnt-exist-but-sill-appears-in-central-admin-manage-databases-upgrade-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Populate a Sharepoint list from an SQL Database</title>
		<link>http://www.petestilgoe.com/2011/01/populate-a-sharepoint-list-from-an-sql-database/</link>
		<comments>http://www.petestilgoe.com/2011/01/populate-a-sharepoint-list-from-an-sql-database/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 13:39:24 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[Sharepoint Lists]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[SQL SSIS]]></category>
		<category><![CDATA[Sharepoint / MOSS / WSS]]></category>
		<category><![CDATA[Sharepoint 2010]]></category>
		<category><![CDATA[sql 2008]]></category>
		<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=790</guid>
		<description><![CDATA[

If you are wanting to populate a Sharepoint list from an SQL database or populate a SQL database from a Sharepoint list you can do this failry easily using SSIS &#038; the SharePoint List Source and Destination Adapter project on Codeplex.
Introduction
This sample illustrates the creation of a a source and destination adapter in C#, using [...]]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2011/01/populate-a-sharepoint-list-from-an-sql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL 2008 Server Error HRESULT E_FAIL has been returned from a call to a COM component when browsing the cube</title>
		<link>http://www.petestilgoe.com/2010/12/sql-2008-server-error-hresult-e_fail-has-been-returned-from-a-call-to-a-com-component-when-browsing-the-cube/</link>
		<comments>http://www.petestilgoe.com/2010/12/sql-2008-server-error-hresult-e_fail-has-been-returned-from-a-call-to-a-com-component-when-browsing-the-cube/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 09:56:41 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[SSAS]]></category>
		<category><![CDATA[sql 2008]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=733</guid>
		<description><![CDATA[

You get the following error when trying to browse the cube from SQL Managment Studio or from Visual Studio 2008:
Error HRESULT E_FAIL has been returned from a call to a COM component
The error is a bug in SQL 2008 server, it occurs when your server language is different to the language set on the cube [...]]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2010/12/sql-2008-server-error-hresult-e_fail-has-been-returned-from-a-call-to-a-com-component-when-browsing-the-cube/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Support for running Microsoft Dynamics CRM 4.0 together with Microsoft SQL Server 2008</title>
		<link>http://www.petestilgoe.com/2010/11/support-for-running-microsoft-dynamics-crm-4-0-together-with-microsoft-sql-server-2008/</link>
		<comments>http://www.petestilgoe.com/2010/11/support-for-running-microsoft-dynamics-crm-4-0-together-with-microsoft-sql-server-2008/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 16:07:31 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[Microsoft Dynamics CRM]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[MS Dynamics CRM]]></category>
		<category><![CDATA[sql 2008]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=724</guid>
		<description><![CDATA[

Support for running Microsoft Dynamics CRM 4.0 together with Microsoft SQL Server 2008
http://support.microsoft.com/kb/957053

]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2010/11/support-for-running-microsoft-dynamics-crm-4-0-together-with-microsoft-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Platform Error: System.Exception: Action Microsoft.Crm.Setup.Server.RSConfigAction failed</title>
		<link>http://www.petestilgoe.com/2010/11/platform-error-system-exception-action-microsoft-crm-setup-server-rsconfigaction-failed/</link>
		<comments>http://www.petestilgoe.com/2010/11/platform-error-system-exception-action-microsoft-crm-setup-server-rsconfigaction-failed/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 16:03:10 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[Microsoft Dynamics CRM]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[MS Dynamics CRM]]></category>
		<category><![CDATA[sql 2008]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=720</guid>
		<description><![CDATA[

When installing MS Dynamics CRM 4 on a SQL 2008 server you may get the following error:
&#8220;The specified path is not a metabase path.&#8221; Platform Error: System.Exception: Action Microsoft.Crm.Setup.Server.RSConfigAction failed.
This issue occurs when the path of Reporting Services does not exist on the server. 
To work around this issue, create a Web site that runs [...]]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2010/11/platform-error-system-exception-action-microsoft-crm-setup-server-rsconfigaction-failed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>K2 Blackpoint now supports Windows 2008 server &amp; SQL Server 2008</title>
		<link>http://www.petestilgoe.com/2009/09/k2-blackpoint-now-supports-windows-2008-server-sql-server-2008/</link>
		<comments>http://www.petestilgoe.com/2009/09/k2-blackpoint-now-supports-windows-2008-server-sql-server-2008/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 07:16:29 +0000</pubDate>
		<dc:creator>peter.stilgoe</dc:creator>
				<category><![CDATA[K2 Blackpoint]]></category>
		<category><![CDATA[sql 2008]]></category>
		<category><![CDATA[windows 2008]]></category>

		<guid isPermaLink="false">http://www.petestilgoe.com/?p=397</guid>
		<description><![CDATA[

Now K2 blackpoint is supported on Windows Server 2008 and on SQL Server 2008! The KB470 update just released on the K2 customer portal provides this support. KB000470 updates all K2 blackpoint 0902 version 4.9040.1.0 installations with latest product hotfixes. The installer will update K2 blackpoint 0902 32-bit and 64-bit installations.

]]></description>
		<wfw:commentRss>http://www.petestilgoe.com/2009/09/k2-blackpoint-now-supports-windows-2008-server-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

