<?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>Fusion Team Blog &#187; Microsoft</title>
	<atom:link href="http://www.fusionteam.co.uk/blog/category/microsoft/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fusionteam.co.uk/blog</link>
	<description>ColdFusion, Adobe, Flex, RIA, Silverlight, Flash and all things web!</description>
	<lastBuildDate>Sat, 27 Feb 2010 11:22:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Import CSV data into Microsoft SQL 2005 using bulk insert</title>
		<link>http://www.fusionteam.co.uk/blog/2009/05/15/import-csv-data-into-microsoft-sql-2005-using-bulk-insert/</link>
		<comments>http://www.fusionteam.co.uk/blog/2009/05/15/import-csv-data-into-microsoft-sql-2005-using-bulk-insert/#comments</comments>
		<pubDate>Fri, 15 May 2009 10:53:54 +0000</pubDate>
		<dc:creator>n_smith</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.fusionteam.co.uk/blog/2009/05/15/import-csv-data-into-microsoft-sql-2005-using-bulk-insert/</guid>
		<description><![CDATA[A little problem I had recently was to import a CSV file with about 16mb of data, into a Microsoft SQL 2005 database, using Microsoft SQL Studio Express. A csv file is a file with data that has &#8220;comma seperated values&#8221; (CSV) and by using SQL bulk load we can read this file from disk [...]]]></description>
		<wfw:commentRss>http://www.fusionteam.co.uk/blog/2009/05/15/import-csv-data-into-microsoft-sql-2005-using-bulk-insert/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>You do not have permission to use the bulk load statement</title>
		<link>http://www.fusionteam.co.uk/blog/2009/05/09/you-do-not-have-permission-to-use-the-bulk-load-statement/</link>
		<comments>http://www.fusionteam.co.uk/blog/2009/05/09/you-do-not-have-permission-to-use-the-bulk-load-statement/#comments</comments>
		<pubDate>Sat, 09 May 2009 10:55:18 +0000</pubDate>
		<dc:creator>n_smith</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.fusionteam.co.uk/blog/2009/05/09/you-do-not-have-permission-to-use-the-bulk-load-statement/</guid>
		<description><![CDATA[I had a problem when trying to bulk load a CSV file into my Microsoft SQL 2005 database. The error was &#8220;You do not have permission to use the bulk load statement&#8221;. It turned out to be quite a simple solution. The solution: It was simply a permission issue and your SQL login needs to [...]]]></description>
		<wfw:commentRss>http://www.fusionteam.co.uk/blog/2009/05/09/you-do-not-have-permission-to-use-the-bulk-load-statement/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Alter a table that is published under SQL 2005 replication</title>
		<link>http://www.fusionteam.co.uk/blog/2008/06/17/alter-a-table-that-is-published-under-sql-2005-replication/</link>
		<comments>http://www.fusionteam.co.uk/blog/2008/06/17/alter-a-table-that-is-published-under-sql-2005-replication/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 18:47:19 +0000</pubDate>
		<dc:creator>n_smith</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.fusionteam.co.uk/blog/2008/06/17/alter-a-table-that-is-published-under-sql-2005-replication/</guid>
		<description><![CDATA[Having recently implemented Microsoft SQL 2005 replication for a client, we had a few issues with developers trying to alter schema on the database if the table is under replication. The issue is caused because the Microsoft Visual GUI tools for SQL 2005, tries to drop and recreate the table, which is obviously not acceptable [...]]]></description>
		<wfw:commentRss>http://www.fusionteam.co.uk/blog/2008/06/17/alter-a-table-that-is-published-under-sql-2005-replication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft SQL 2005 find tables missing primary keys</title>
		<link>http://www.fusionteam.co.uk/blog/2008/06/04/microsoft-sql-2005-find-tables-missing-primary-keys/</link>
		<comments>http://www.fusionteam.co.uk/blog/2008/06/04/microsoft-sql-2005-find-tables-missing-primary-keys/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 19:46:02 +0000</pubDate>
		<dc:creator>n_smith</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.fusionteam.co.uk/blog/2008/06/04/microsoft-sql-2005-find-tables-missing-primary-keys/</guid>
		<description><![CDATA[I recently setup replication for Microsoft SQL 2005 server for a client and needed to provide a list of tables to the client without primary keys, as these are not transferred in the replication. This script came in very handy so thought I would share. SELECT c.name, b.name FROM sys.tables b INNER JOIN sys.schemas c [...]]]></description>
		<wfw:commentRss>http://www.fusionteam.co.uk/blog/2008/06/04/microsoft-sql-2005-find-tables-missing-primary-keys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS SQL database publishing wizard for Backup and Restore</title>
		<link>http://www.fusionteam.co.uk/blog/2008/02/21/ms-sql-database-publishing-wizard-for-backup-and-restore/</link>
		<comments>http://www.fusionteam.co.uk/blog/2008/02/21/ms-sql-database-publishing-wizard-for-backup-and-restore/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 07:26:16 +0000</pubDate>
		<dc:creator>n_smith</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.fusionteam.co.uk/blog/2008/02/21/ms-sql-database-publishing-wizard-for-backup-and-restore/</guid>
		<description><![CDATA[I have been looking for a way to back up my MS SQL database that is hosted remotely, so that in the event of switching hosts or needing to restore I have a complete backup of my database. Using SQL Express 2005 this was not possible as you need to backup to a UNC network [...]]]></description>
		<wfw:commentRss>http://www.fusionteam.co.uk/blog/2008/02/21/ms-sql-database-publishing-wizard-for-backup-and-restore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using ColdFusion to Ping Sitemap Services</title>
		<link>http://www.fusionteam.co.uk/blog/2008/02/20/using-coldfusion-to-ping-sitemap-services/</link>
		<comments>http://www.fusionteam.co.uk/blog/2008/02/20/using-coldfusion-to-ping-sitemap-services/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 21:05:58 +0000</pubDate>
		<dc:creator>n_smith</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.fusionteam.co.uk/blog/2008/02/20/using-coldfusion-to-ping-sitemap-services/</guid>
		<description><![CDATA[I have found a great ColdFusion example of how to notify the major 4 search engines when your sitemap changes. The process is know as pinging and the example is provided on Jason Bartholme&#8217;s SEO Blog. Worth a look as can be useful for prompting the search engines to come and crawl your site until theri [...]]]></description>
		<wfw:commentRss>http://www.fusionteam.co.uk/blog/2008/02/20/using-coldfusion-to-ping-sitemap-services/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>XML RPC using ColdFusion and Microsoft.XMLHTTP COM Object</title>
		<link>http://www.fusionteam.co.uk/blog/2008/02/19/xml-rpc-using-coldfusion-and-microsoftxmlhttp-com-object/</link>
		<comments>http://www.fusionteam.co.uk/blog/2008/02/19/xml-rpc-using-coldfusion-and-microsoftxmlhttp-com-object/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 23:08:45 +0000</pubDate>
		<dc:creator>n_smith</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.fusionteam.co.uk/blog/2008/02/19/xml-rpc-using-coldfusion-and-microsoftxmlhttp-com-object/</guid>
		<description><![CDATA[I had recently been reviewing some documentation on a web based API that was available as an XML RPC. At first I was wondering how to achieve this, but then adapted an ASP example provided into a nice neat ColdFusion implementation. For anybody else with a similar problem of invoking an XML RPC API, the [...]]]></description>
		<wfw:commentRss>http://www.fusionteam.co.uk/blog/2008/02/19/xml-rpc-using-coldfusion-and-microsoftxmlhttp-com-object/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SQL Bulk Load with ColdFusion &#8211; SQLXMLBulkLoad.SQLXMLBulkLoad</title>
		<link>http://www.fusionteam.co.uk/blog/2008/01/16/sql-bulk-load-with-coldfusion-sqlxmlbulkloadsqlxmlbulkload/</link>
		<comments>http://www.fusionteam.co.uk/blog/2008/01/16/sql-bulk-load-with-coldfusion-sqlxmlbulkloadsqlxmlbulkload/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 16:29:55 +0000</pubDate>
		<dc:creator>n_smith</dc:creator>
				<category><![CDATA[CFC]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.fusionteam.co.uk/blog/2008/01/16/sql-bulk-load-with-coldfusion-sqlxmlbulkloadsqlxmlbulkload/</guid>
		<description><![CDATA[I thought I would post this to help anybody else who might be struggling with loading large XML files and datasets into Microsoft SQL using ColdFusion. Using this technique, you can use a Microsoft COM object called &#8220;SQLXMLBulkLoad.SQLXMLBulkLoad&#8221;. This is a very fast object that allows you to provide an XML mapping file, the XML [...]]]></description>
		<wfw:commentRss>http://www.fusionteam.co.uk/blog/2008/01/16/sql-bulk-load-with-coldfusion-sqlxmlbulkloadsqlxmlbulkload/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft Silverlight &#8211; What’s it all about?</title>
		<link>http://www.fusionteam.co.uk/blog/2007/06/20/microsoft-silverlight-whats-it-all-about/</link>
		<comments>http://www.fusionteam.co.uk/blog/2007/06/20/microsoft-silverlight-whats-it-all-about/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 14:21:53 +0000</pubDate>
		<dc:creator>n_smith</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://fusionteam.co.uk/blog/?p=16</guid>
		<description><![CDATA[Microsoft Silverlight Microsoft Silverlight is a cross-browser, cross-platform plugin for delivering the next generation of .NET based media experiences and rich interactive applications for the Web. Silverlight offers a flexible programming model that supports JavaScript, .NET, and other languages.Microsoft Silverlight looks like a good challenger to Adobe Integrated Runtime (AIR). It will be very interesting [...]]]></description>
		<wfw:commentRss>http://www.fusionteam.co.uk/blog/2007/06/20/microsoft-silverlight-whats-it-all-about/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Air &#8211; Formerly Adobe Apollo</title>
		<link>http://www.fusionteam.co.uk/blog/2007/06/19/adobe-air-formerly-adobe-apollo/</link>
		<comments>http://www.fusionteam.co.uk/blog/2007/06/19/adobe-air-formerly-adobe-apollo/#comments</comments>
		<pubDate>Tue, 19 Jun 2007 15:21:57 +0000</pubDate>
		<dc:creator>n_smith</dc:creator>
				<category><![CDATA[AIR - Apollo]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://fusionteam.co.uk/blog/index.php/2007/06/19/adobe-air-formerly-adobe-apollo/</guid>
		<description><![CDATA[Adobe AIR Adobe® AIR™, formerly code-named Apollo, is a cross-operating system runtime that allows developers to use their existing web development skills to build and deploy rich Internet applications to the desktop. For web developers this will allow to use tools such as AJAX and Flex to build Rich Internet Applications that run on the [...]]]></description>
		<wfw:commentRss>http://www.fusionteam.co.uk/blog/2007/06/19/adobe-air-formerly-adobe-apollo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
