<?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>Experimental Space &#187; SQL Server</title>
	<atom:link href="http://www.experimentalspace.com/index.php/category/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.experimentalspace.com</link>
	<description>Trying out new things, technical and crafty!</description>
	<lastBuildDate>Tue, 02 Feb 2010 16:58:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Change database owner in SQL server (single and multiple items)</title>
		<link>http://www.experimentalspace.com/index.php/2008/03/change-database-owner-in-sql-server-single-and-multiple-items/</link>
		<comments>http://www.experimentalspace.com/index.php/2008/03/change-database-owner-in-sql-server-single-and-multiple-items/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 13:01:42 +0000</pubDate>
		<dc:creator>Lacuna</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.experimentalspace.com/index.php/2008/03/18/change-database-owner-in-sql-server-single-and-multiple-items/</guid>
		<description><![CDATA[Changing a single table owner:
Exec sp_changeobjectowner â€˜dbo12323.my_tableâ€™,â€™dboâ€™
dbo12323 = make this whatever the table currently has as the db owner
dbo = the new db owner
Changing multiple items owners:
SELECT * from sysobjects where uid = user_id(&#8216;UseNAme&#8217;)
declare @Return int
exec @Return = sp_configure &#8216;allow updates&#8217;, &#8216;1&#8242;
SELECT @Return as &#8216;Returned Code&#8217;
GO
reconfigure WITH OVERRIDE
GO
DECLARE @Rows int, @Error int
BEGIN TRANSACTION
update sysobjects set [...]]]></description>
		<wfw:commentRss>http://www.experimentalspace.com/index.php/2008/03/change-database-owner-in-sql-server-single-and-multiple-items/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Import CSV to SQL Server Database</title>
		<link>http://www.experimentalspace.com/index.php/2007/10/import-csv-to-sql-server-database/</link>
		<comments>http://www.experimentalspace.com/index.php/2007/10/import-csv-to-sql-server-database/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 15:16:33 +0000</pubDate>
		<dc:creator>Lacuna</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.experimentalspace.com/index.php/2007/10/01/import-csv-to-sql-server-database/</guid>
		<description><![CDATA[Quick steps to importing a csv to a sql server database. There are a couple first steps incase you have an existing database that you should make a backup copy of first or you can skip right to step number 3 which highlights the import itself.
1. Creating a backup of existing table
The code to take [...]]]></description>
		<wfw:commentRss>http://www.experimentalspace.com/index.php/2007/10/import-csv-to-sql-server-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restoring a SQL server database</title>
		<link>http://www.experimentalspace.com/index.php/2006/07/restoring-a-sql-server-database/</link>
		<comments>http://www.experimentalspace.com/index.php/2006/07/restoring-a-sql-server-database/#comments</comments>
		<pubDate>Tue, 18 Jul 2006 13:21:00 +0000</pubDate>
		<dc:creator>Lacuna</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://temp.experimentalspace.com/?p=16</guid>
		<description><![CDATA[I was trying to move a database from the client&#8217;s existing live site to our testing database on another server.
(I actually have three databases atm, one is the existing db used for the site (old server), the second is one that I used to test before I initially put the site live (new server), and [...]]]></description>
		<wfw:commentRss>http://www.experimentalspace.com/index.php/2006/07/restoring-a-sql-server-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
