<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Sql Server Collection</title>
	<atom:link href="http://arsenalb.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://arsenalb.wordpress.com</link>
	<description>Imagination is more important than intelligence</description>
	<lastBuildDate>Tue, 07 Jun 2011 06:01:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='arsenalb.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sql Server Collection</title>
		<link>http://arsenalb.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://arsenalb.wordpress.com/osd.xml" title="Sql Server Collection" />
	<atom:link rel='hub' href='http://arsenalb.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Output table as HTML table</title>
		<link>http://arsenalb.wordpress.com/2011/06/07/output-table-as-html-table/</link>
		<comments>http://arsenalb.wordpress.com/2011/06/07/output-table-as-html-table/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 06:01:03 +0000</pubDate>
		<dc:creator>Sql Server Collection</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://arsenalb.wordpress.com/?p=57</guid>
		<description><![CDATA[&#8211; Created by Brad Schulz declare @Table sysname set @Table=&#8217;tblTest&#8217;  &#8211;Insert your tablename here declare @sql nvarchar(max) ;with DesiredColumns as ( select ColSeq=c.column_id ,ColName=c.name ,TypeName=t.name ,TypeAlign=case when t.name in (&#8216;bigint&#8217;,'int&#8217;,'tinyint&#8217;,'numeric&#8217;,'decimal&#8217;,'float&#8217;,'money&#8217;,'smallmoney&#8217;) then N&#8217;right&#8217; else N&#8217;left&#8217; end ,ConvertCode=case when t.name in (&#8216;datetime&#8217;,'smalldatetime&#8217;,'datetime2&#8242;) then N&#8217;121&#8242; when t.name in (&#8216;money&#8217;,'smallmoney&#8217;) then N&#8217;2&#8242; else N&#8217;0&#8242; end from sys.columns c join [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=57&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8211; Created by Brad Schulz</p>
<p>declare @Table sysname<br />
set @Table=&#8217;tblTest&#8217;  &#8211;Insert your tablename here</p>
<p>declare @sql nvarchar(max)</p>
<p>;with DesiredColumns as<br />
(<br />
select ColSeq=c.column_id<br />
,ColName=c.name<br />
,TypeName=t.name<br />
,TypeAlign=case<br />
when t.name in (&#8216;bigint&#8217;,'int&#8217;,'tinyint&#8217;,'numeric&#8217;,'decimal&#8217;,'float&#8217;,'money&#8217;,'smallmoney&#8217;)<br />
then N&#8217;right&#8217;<br />
else N&#8217;left&#8217;<br />
end<br />
,ConvertCode=case<br />
when t.name in (&#8216;datetime&#8217;,'smalldatetime&#8217;,'datetime2&#8242;)<br />
then N&#8217;121&#8242;<br />
when t.name in (&#8216;money&#8217;,'smallmoney&#8217;)<br />
then N&#8217;2&#8242;<br />
else N&#8217;0&#8242;<br />
end<br />
from sys.columns c<br />
join sys.types t on c.system_type_id=t.system_type_id<br />
where c.object_id=object_id(@Table)<br />
and t.name not in (&#8216;timestamp&#8217;,'image&#8217;,'sql_variant&#8217;,'xml&#8217;)<br />
)<br />
select @sql=N&#8217;select &#8221;&lt;table border=1&gt;&#8221; &#8216;<br />
+N&#8217;union all &#8216;<br />
+N&#8217;select (select &#8216;+stuff((select N&#8217;,[*]=&#8221;&#8221;&#8217;<br />
+N&#8217;,[th/@align]=&#8221;&#8217;+TypeAlign+&#8221;&#8221;<br />
+N&#8217;,[th]=&#8221;&#8217;+ColName+&#8221;&#8221;<br />
from DesiredColumns<br />
order by ColSeq<br />
for xml path(&#8221;),type).value(&#8216;(./text())[1]&#8216;,&#8217;nvarchar(max)&#8217;)<br />
,1,8,N&#8221;)<br />
+N&#8217;        for xml path(&#8221;tr&#8221;)) &#8216;<br />
+N&#8217;union all &#8216;<br />
+N&#8217;select (select &#8216;+stuff((select N&#8217;,[*]=&#8221;&#8221;&#8217;<br />
+N&#8217;,[td/@align]=&#8221;&#8217;+TypeAlign+&#8221;&#8221;<br />
+N&#8217;,[td]=convert(nvarchar(255),&#8217;<br />
+ColName+N&#8217;,&#8217;<br />
+ConvertCode+N&#8217;)&#8217;<br />
from DesiredColumns<br />
order by ColSeq<br />
for xml path(&#8221;),type).value(&#8216;(./text())[1]&#8216;,&#8217;nvarchar(max)&#8217;)<br />
,1,8,N&#8221;)<br />
+N&#8217;        for xml path(&#8221;tr&#8221;)) &#8216;<br />
+N&#8217;from &#8216;+@Table+&#8217; &#8216;<br />
+N&#8217;union all &#8216;<br />
+N&#8217;select &#8221;&lt;/table&gt;&#8221; &#8216;<br />
select @sql<br />
exec (@sql)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsenalb.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsenalb.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsenalb.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsenalb.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsenalb.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsenalb.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsenalb.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsenalb.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsenalb.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsenalb.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsenalb.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsenalb.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsenalb.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsenalb.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=57&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsenalb.wordpress.com/2011/06/07/output-table-as-html-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e7a41a776d2a77bfd7138231244ebdc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sql Server Collection</media:title>
		</media:content>
	</item>
		<item>
		<title>Bookmarks: Data Compression</title>
		<link>http://arsenalb.wordpress.com/2010/05/24/bookmarks-data-compression/</link>
		<comments>http://arsenalb.wordpress.com/2010/05/24/bookmarks-data-compression/#comments</comments>
		<pubDate>Mon, 24 May 2010 17:28:15 +0000</pubDate>
		<dc:creator>Sql Server Collection</dc:creator>
				<category><![CDATA[bookmark]]></category>
		<category><![CDATA[compression]]></category>

		<guid isPermaLink="false">http://arsenalb.wordpress.com/?p=53</guid>
		<description><![CDATA[Data Compression: Strategy, Capacity Planning and Best Practices http://msdn.microsoft.com/en-us/library/dd894051.aspx http://blogs.msdn.com/sqlserverstorageengine/archive/tags/Data+Compression/default.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=53&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Data Compression: Strategy, Capacity Planning and Best Practices</p>
<p><a href="http://msdn.microsoft.com/en-us/library/dd894051.aspx">http://msdn.microsoft.com/en-us/library/dd894051.aspx</a></p>
<p><a href="http://blogs.msdn.com/sqlserverstorageengine/archive/tags/Data+Compression/default.aspx">http://blogs.msdn.com/sqlserverstorageengine/archive/tags/Data+Compression/default.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsenalb.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsenalb.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsenalb.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsenalb.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsenalb.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsenalb.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsenalb.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsenalb.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsenalb.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsenalb.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsenalb.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsenalb.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsenalb.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsenalb.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=53&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsenalb.wordpress.com/2010/05/24/bookmarks-data-compression/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e7a41a776d2a77bfd7138231244ebdc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sql Server Collection</media:title>
		</media:content>
	</item>
		<item>
		<title>BookMarks:Indexed views in sql server</title>
		<link>http://arsenalb.wordpress.com/2010/05/15/bookmarksindexed-views-in-sql-server/</link>
		<comments>http://arsenalb.wordpress.com/2010/05/15/bookmarksindexed-views-in-sql-server/#comments</comments>
		<pubDate>Sat, 15 May 2010 03:55:22 +0000</pubDate>
		<dc:creator>Sql Server Collection</dc:creator>
				<category><![CDATA[bookmark]]></category>
		<category><![CDATA[indexing]]></category>

		<guid isPermaLink="false">http://arsenalb.wordpress.com/?p=47</guid>
		<description><![CDATA[Indexed views are very useful in improving the sql server quey perfomance especially for data warehouse. Improving Performance with SQL Server 2008 Indexed Views http://msdn.microsoft.com/en-us/library/dd171921.aspx Designing Indexed Views http://msdn.microsoft.com/en-us/library/ms187864(v=SQL.100).aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=47&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Indexed views are very useful in improving the sql server quey perfomance especially for data warehouse.</p>
<p>Improving Performance with SQL Server 2008 Indexed Views</p>
<p><a title="Improving Performance with SQL Server 2008 Indexed Views " href="http://msdn.microsoft.com/en-us/library/dd171921.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/dd171921.aspx</a></p>
<p>Designing Indexed Views</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms187864(v=SQL.100).aspx">http://msdn.microsoft.com/en-us/library/ms187864(v=SQL.100).aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsenalb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsenalb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsenalb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsenalb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsenalb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsenalb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsenalb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsenalb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsenalb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsenalb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsenalb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsenalb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsenalb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsenalb.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=47&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsenalb.wordpress.com/2010/05/15/bookmarksindexed-views-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e7a41a776d2a77bfd7138231244ebdc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sql Server Collection</media:title>
		</media:content>
	</item>
		<item>
		<title>BookMarks:Backups,Logging and Recovery</title>
		<link>http://arsenalb.wordpress.com/2010/04/28/bookmarkslogging-and-recovery/</link>
		<comments>http://arsenalb.wordpress.com/2010/04/28/bookmarkslogging-and-recovery/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 10:04:07 +0000</pubDate>
		<dc:creator>Sql Server Collection</dc:creator>
				<category><![CDATA[bookmark]]></category>

		<guid isPermaLink="false">http://arsenalb.wordpress.com/?p=41</guid>
		<description><![CDATA[http://technet.microsoft.com/en-us/magazine/2009.02.logging.aspx http://msdn.microsoft.com/library/ms345414 http://sqlskills.com/blogs/kimberly/post/8-Steps-to-better-Transaction-Log-throughput.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=41&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://technet.microsoft.com/en-us/magazine/2009.02.logging.aspx">http://technet.microsoft.com/en-us/magazine/2009.02.logging.aspx</a></p>
<p><a href="http://msdn.microsoft.com/library/ms345414">http://msdn.microsoft.com/library/ms345414</a></p>
<p><a href="http://sqlskills.com/blogs/kimberly/post/8-Steps-to-better-Transaction-Log-throughput.aspx">http://sqlskills.com/blogs/kimberly/post/8-Steps-to-better-Transaction-Log-throughput.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsenalb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsenalb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsenalb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsenalb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsenalb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsenalb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsenalb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsenalb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsenalb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsenalb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsenalb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsenalb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsenalb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsenalb.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=41&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsenalb.wordpress.com/2010/04/28/bookmarkslogging-and-recovery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e7a41a776d2a77bfd7138231244ebdc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sql Server Collection</media:title>
		</media:content>
	</item>
		<item>
		<title>BookMark: Cross Apply</title>
		<link>http://arsenalb.wordpress.com/2010/03/02/bookmark-cross-apply/</link>
		<comments>http://arsenalb.wordpress.com/2010/03/02/bookmark-cross-apply/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 20:29:05 +0000</pubDate>
		<dc:creator>Sql Server Collection</dc:creator>
				<category><![CDATA[bookmark]]></category>
		<category><![CDATA[tips&tricks]]></category>

		<guid isPermaLink="false">http://arsenalb.wordpress.com/?p=39</guid>
		<description><![CDATA[Recently i have been trying cross apply to find where they can be better than inner join. These are some interesting blog posts i came across which are very useful http://explainextended.com/2009/07/16/inner-join-vs-cross-apply/ http://www.sqlteam.com/article/using-cross-apply-in-sql-server-2005 http://sqlblog.com/blogs/alexander_kuznetsov/archive/2009/07/07/using-cross-apply-to-optimize-joins-on-between-conditions.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=39&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently i have been trying cross apply to find where they can be better than inner join. These are some interesting blog posts i came across which are very useful</p>
<p><a href="http://explainextended.com/2009/07/16/inner-join-vs-cross-apply/" target="_blank">http://explainextended.com/2009/07/16/inner-join-vs-cross-apply/</a></p>
<p><a href="http://www.sqlteam.com/article/using-cross-apply-in-sql-server-2005" target="_blank">http://www.sqlteam.com/article/using-cross-apply-in-sql-server-2005</a></p>
<p><a href="http://sqlblog.com/blogs/alexander_kuznetsov/archive/2009/07/07/using-cross-apply-to-optimize-joins-on-between-conditions.aspx" target="_blank">http://sqlblog.com/blogs/alexander_kuznetsov/archive/2009/07/07/using-cross-apply-to-optimize-joins-on-between-conditions.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsenalb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsenalb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsenalb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsenalb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsenalb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsenalb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsenalb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsenalb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsenalb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsenalb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsenalb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsenalb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsenalb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsenalb.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=39&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsenalb.wordpress.com/2010/03/02/bookmark-cross-apply/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e7a41a776d2a77bfd7138231244ebdc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sql Server Collection</media:title>
		</media:content>
	</item>
		<item>
		<title>BookMark:Mission Critical- SQL Server 2008 General Maintenance</title>
		<link>http://arsenalb.wordpress.com/2010/02/23/bookmarkmission-critical-sql-server-2008-general-maintenance/</link>
		<comments>http://arsenalb.wordpress.com/2010/02/23/bookmarkmission-critical-sql-server-2008-general-maintenance/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 16:29:18 +0000</pubDate>
		<dc:creator>Sql Server Collection</dc:creator>
				<category><![CDATA[bookmark]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://arsenalb.wordpress.com/?p=36</guid>
		<description><![CDATA[http://www.simple-talk.com/sql/database-administration/mission-critical-sql-server-2008-general-maintenance/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=36&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.simple-talk.com/sql/database-administration/mission-critical-sql-server-2008-general-maintenance/">http://www.simple-talk.com/sql/database-administration/mission-critical-sql-server-2008-general-maintenance/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsenalb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsenalb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsenalb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsenalb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsenalb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsenalb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsenalb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsenalb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsenalb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsenalb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsenalb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsenalb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsenalb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsenalb.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=36&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsenalb.wordpress.com/2010/02/23/bookmarkmission-critical-sql-server-2008-general-maintenance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e7a41a776d2a77bfd7138231244ebdc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sql Server Collection</media:title>
		</media:content>
	</item>
		<item>
		<title>Brad&#8217;s Sure DBA Checklist</title>
		<link>http://arsenalb.wordpress.com/2010/02/05/brads-sure-dba-checklist/</link>
		<comments>http://arsenalb.wordpress.com/2010/02/05/brads-sure-dba-checklist/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 12:26:47 +0000</pubDate>
		<dc:creator>Sql Server Collection</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[tips&tricks]]></category>

		<guid isPermaLink="false">http://arsenalb.wordpress.com/2010/02/05/brads-sure-dba-checklist/</guid>
		<description><![CDATA[Brad provides a nice check list for the DBA&#8217;s Brad&#8217;s Sure DBA Checklist<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=34&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Brad provides a nice check list for the DBA&#8217;s</p>
<div><a href="http://www.simple-talk.com/sql/database-administration/brads-sure-dba-checklist/?utm_source=simpletalk&amp;utm_medium=email&amp;utm_content=BradChecklist-20100125&amp;utm_campaign=SQL" target="_blank">Brad&#8217;s Sure DBA Checklist</a></div>
<div></div>
<div></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsenalb.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsenalb.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsenalb.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsenalb.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsenalb.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsenalb.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsenalb.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsenalb.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsenalb.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsenalb.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsenalb.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsenalb.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsenalb.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsenalb.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=34&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsenalb.wordpress.com/2010/02/05/brads-sure-dba-checklist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e7a41a776d2a77bfd7138231244ebdc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sql Server Collection</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating Comma Delimeted String Using SELECT</title>
		<link>http://arsenalb.wordpress.com/2010/02/02/creating-comma-delimeted-string-using-select/</link>
		<comments>http://arsenalb.wordpress.com/2010/02/02/creating-comma-delimeted-string-using-select/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 17:50:17 +0000</pubDate>
		<dc:creator>Sql Server Collection</dc:creator>
				<category><![CDATA[Recipes]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[tips&tricks]]></category>

		<guid isPermaLink="false">http://arsenalb.wordpress.com/?p=31</guid>
		<description><![CDATA[USE AdventureWorks2008 DECLARE @Shifts VARCHAR(20) = &#8221; SELECT @Shifts=@Shifts+S.[Name]+&#8217;,&#8217; FROM HumanResources.Shift S ORDER BY EndTime SELECT @Shifts The variable is declared to hold the string. Since we cannot concatenate with NULL we initially assigned blank value to variable .<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=31&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>USE AdventureWorks2008</p>
<p>DECLARE @Shifts VARCHAR(20) = &#8221;</p>
<p>SELECT @Shifts=@Shifts+S.[Name]+&#8217;,&#8217;<br />
FROM HumanResources.Shift S<br />
ORDER BY EndTime</p>
<p>SELECT @Shifts</p>
<p>The variable is declared to hold the string. Since we cannot concatenate with NULL we initially assigned blank value to variable .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsenalb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsenalb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsenalb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsenalb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsenalb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsenalb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsenalb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsenalb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsenalb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsenalb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsenalb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsenalb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsenalb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsenalb.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=31&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsenalb.wordpress.com/2010/02/02/creating-comma-delimeted-string-using-select/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e7a41a776d2a77bfd7138231244ebdc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sql Server Collection</media:title>
		</media:content>
	</item>
		<item>
		<title>Declaring Variables in Sql Server 2008</title>
		<link>http://arsenalb.wordpress.com/2010/02/02/declaring-variables-in-sql-server-2008/</link>
		<comments>http://arsenalb.wordpress.com/2010/02/02/declaring-variables-in-sql-server-2008/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 17:41:32 +0000</pubDate>
		<dc:creator>Sql Server Collection</dc:creator>
				<category><![CDATA[Recipes]]></category>
		<category><![CDATA[sql server 2008]]></category>
		<category><![CDATA[tips&tricks]]></category>

		<guid isPermaLink="false">http://arsenalb.wordpress.com/?p=27</guid>
		<description><![CDATA[Sql server 2008 have introduced new way where we can assign the values to variables directly Be sql server 2008 we have to declare a variable and assign it separately using set or select DECLARE @AddressLine1 VARCHAR(60) SET @AddressLine1=&#8217;Heiderplatz&#8217; SELECT * FROM Person.[Address] WHERE AddressLine1 LIKE &#8216;%&#8217;+@AddressLine1+&#8217;%&#8217; In Sql server 2008 we can directly assign [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=27&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sql server 2008 have introduced new way where we can assign the values to variables directly</p>
<p>Be sql server 2008 we have to declare a variable and assign it separately using set or select<br />
DECLARE @AddressLine1 VARCHAR(60)</p>
<p>SET @AddressLine1=&#8217;Heiderplatz&#8217;</p>
<p>SELECT *<br />
FROM Person.[Address]<br />
WHERE AddressLine1 LIKE &#8216;%&#8217;+@AddressLine1+&#8217;%&#8217;</p>
<p>In Sql server 2008 we can directly assign value to variable when it is declared.</p>
<p>DECLARE @AddressLine1 VARCHAR(60)=&#8217;Heiderplatz&#8217;</p>
<p>SELECT *<br />
FROM Person.[Address]<br />
WHERE AddressLine1 LIKE &#8216;%&#8217;+@AddressLine1+&#8217;%&#8217;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsenalb.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsenalb.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsenalb.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsenalb.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsenalb.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsenalb.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsenalb.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsenalb.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsenalb.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsenalb.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsenalb.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsenalb.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsenalb.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsenalb.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=27&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsenalb.wordpress.com/2010/02/02/declaring-variables-in-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e7a41a776d2a77bfd7138231244ebdc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sql Server Collection</media:title>
		</media:content>
	</item>
		<item>
		<title>script all indexes except primary key</title>
		<link>http://arsenalb.wordpress.com/2009/10/29/script-all-indexes-except-primary-key/</link>
		<comments>http://arsenalb.wordpress.com/2009/10/29/script-all-indexes-except-primary-key/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 11:40:35 +0000</pubDate>
		<dc:creator>Sql Server Collection</dc:creator>
				<category><![CDATA[scripts]]></category>
		<category><![CDATA[indexes]]></category>

		<guid isPermaLink="false">http://arsenalb.wordpress.com/?p=23</guid>
		<description><![CDATA[&#8211; Get all existing indexes, but NOT the primary keys DECLARE cIX CURSOR FOR SELECT OBJECT_NAME(SI.Object_ID), SI.Object_ID, SI.Name, SI.Index_ID, FG.name FROM sys.indexes SI left outer join sys.filegroups FG on SI.data_space_id = FG.data_space_id WHERE OBJECTPROPERTY(SI.Object_ID, &#8216;IsUserTable&#8217;) = 1 and SI.Name is not null and SI.is_primary_key = 0 and SI.is_unique_constraint = 0 AND INDEXPROPERTY(SI.Object_ID, SI.Name, &#8216;IsStatistics&#8217;) = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=23&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8211; Get all existing indexes, but NOT the primary keys<br />
DECLARE cIX CURSOR FOR<br />
SELECT OBJECT_NAME(SI.Object_ID), SI.Object_ID, SI.Name, SI.Index_ID,<br />
FG.name<br />
FROM sys.indexes SI<br />
left outer join sys.filegroups FG<br />
on SI.data_space_id = FG.data_space_id<br />
WHERE OBJECTPROPERTY(SI.Object_ID, &#8216;IsUserTable&#8217;) = 1<br />
and SI.Name is not null<br />
and SI.is_primary_key = 0 and SI.is_unique_constraint = 0<br />
AND INDEXPROPERTY(SI.Object_ID, SI.Name, &#8216;IsStatistics&#8217;) = 0<br />
ORDER BY OBJECT_NAME(SI.Object_ID), SI.Index_ID</p>
<p>DECLARE @IxTable sysname<br />
DECLARE @IxTableID INT<br />
DECLARE @IxName sysname<br />
DECLARE @FGName sysname<br />
DECLARE @IxID INT</p>
<p>&#8211; Loop through all indexes<br />
OPEN cIX<br />
FETCH NEXT FROM cIX INTO @IxTable, @IxTableID, @IxName, @IxID, @FGName<br />
WHILE (@@FETCH_STATUS = 0)<br />
BEGIN<br />
DECLARE @IXSQL NVARCHAR(4000)<br />
SET @IXSQL = &#8216;CREATE &#8216;</p>
<p>&#8211; Check if the index is unique<br />
IF (INDEXPROPERTY(@IxTableID, @IxName, &#8216;IsUnique&#8217;) = 1)<br />
SET @IXSQL = @IXSQL + &#8216;UNIQUE &#8216;<br />
&#8211; Check if the index is clustered<br />
IF (INDEXPROPERTY(@IxTableID, @IxName, &#8216;IsClustered&#8217;) = 1)<br />
SET @IXSQL = @IXSQL + &#8216;CLUSTERED &#8216;</p>
<p>SET @IXSQL = @IXSQL + &#8216;INDEX &#8216; + @IxName + &#8216; ON &#8216; + @IxTable + &#8216;(&#8216;</p>
<p>&#8211; Get all columns of the index<br />
DECLARE cIxColumn CURSOR FOR<br />
SELECT SC.Name<br />
FROM sys.index_columns IC<br />
JOIN sys.columns SC ON IC.Object_ID = SC.Object_ID AND IC.Column_ID = SC.Column_ID<br />
WHERE IC.Object_ID = @IxTableID AND Index_ID = @IxID<br />
ORDER BY IC.key_ordinal</p>
<p>DECLARE @IxColumn sysname<br />
DECLARE @IxFirstColumn BIT SET @IxFirstColumn = 1</p>
<p>&#8211; Loop throug all columns of the index and append them to the CREATE statement<br />
OPEN cIxColumn<br />
FETCH NEXT FROM cIxColumn INTO @IxColumn<br />
WHILE (@@FETCH_STATUS = 0)<br />
BEGIN<br />
IF (@IxFirstColumn = 1)<br />
SET @IxFirstColumn = 0<br />
ELSE<br />
SET @IXSQL = @IXSQL + &#8216;, &#8216;</p>
<p>SET @IXSQL = @IXSQL + @IxColumn</p>
<p>FETCH NEXT FROM cIxColumn INTO @IxColumn<br />
END<br />
CLOSE cIxColumn<br />
DEALLOCATE cIxColumn</p>
<p>SET @IXSQL = @IXSQL + &#8216;)&#8217; + &#8216;on &#8216;+ @FGName<br />
&#8211; Print out the CREATE statement for the index<br />
PRINT @IXSQL<br />
PRINT &#8216;GO&#8217;</p>
<p>FETCH NEXT FROM cIX INTO @IxTable, @IxTableID, @IxName, @IxID, @FGName<br />
END</p>
<p>CLOSE cIX<br />
DEALLOCATE cIX</p>
<p><a href="http://www.sqlservercentral.com/scripts/Miscellaneous/31893/" target="_blank">http://www.sqlservercentral.com/scripts/Miscellaneous/31893/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsenalb.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsenalb.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsenalb.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsenalb.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsenalb.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsenalb.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsenalb.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsenalb.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsenalb.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsenalb.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsenalb.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsenalb.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsenalb.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsenalb.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsenalb.wordpress.com&amp;blog=8291519&amp;post=23&amp;subd=arsenalb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsenalb.wordpress.com/2009/10/29/script-all-indexes-except-primary-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e7a41a776d2a77bfd7138231244ebdc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sql Server Collection</media:title>
		</media:content>
	</item>
	</channel>
</rss>
