<?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>Learn SQL With Bru &#187; SQL Server</title>
	<atom:link href="http://learnsqlwithbru.com/category/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://learnsqlwithbru.com</link>
	<description>Bru Medishetty&#039;s SQL Server Blog</description>
	<lastBuildDate>Mon, 06 Feb 2012 16:23:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Using DBCC UPDATEUSAGE to correct inaccuracies</title>
		<link>http://learnsqlwithbru.com/2012/02/02/using-dbcc-updateusage-to-correct-inaccuracies/</link>
		<comments>http://learnsqlwithbru.com/2012/02/02/using-dbcc-updateusage-to-correct-inaccuracies/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 05:00:58 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=2848</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=Learn+SQL+With+Bru&link=http%3A%2F%2Flearnsqlwithbru.com%2F2012%2F02%2F02%2Fusing-dbcc-updateusage-to-correct-inaccuracies%2F&title=Using+DBCC+UPDATEUSAGE+to+correct+inaccuracies&desc=Recently+a+friend+of+mine+asked+to+help%2C+their+SQL+Server+was+not+showing+correct+database+free+space+information+even+when+they+have+added+new+data+file.+As+they+add+new+data+into+their+database+the+&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=0&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=0&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>Recently a friend of mine asked to help, their SQL Server was not showing correct database free space information even when they have added new data file. As they add new data into their database the previously existing database data &#8230; <a href="http://learnsqlwithbru.com/2012/02/02/using-dbcc-updateusage-to-correct-inaccuracies/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2012/02/02/using-dbcc-updateusage-to-correct-inaccuracies/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using sp_delete_backuphistory to delete backup history</title>
		<link>http://learnsqlwithbru.com/2012/01/17/using-sp_delete_backuphistory-to-delete-backup-history/</link>
		<comments>http://learnsqlwithbru.com/2012/01/17/using-sp_delete_backuphistory-to-delete-backup-history/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 05:00:14 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[MSDB]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=2664</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=Learn+SQL+With+Bru&link=http%3A%2F%2Flearnsqlwithbru.com%2F2012%2F01%2F17%2Fusing-sp_delete_backuphistory-to-delete-backup-history%2F&title=Using+sp_delete_backuphistory+to+delete+backup+history&desc=You+might+be+aware+that+system+database+msdb+in+SQL+Server+contains+tables+related+to+backup+and+restore+operations+of+that+Instance.+Every+time+a+database+backup+is+performed%2C+details+regarding+that+&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=0&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=0&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>You might be aware that system database msdb in SQL Server contains tables related to backup and restore operations of that Instance. Every time a database backup is performed, details regarding that backup is stored in multiple tables in msdb &#8230; <a href="http://learnsqlwithbru.com/2012/01/17/using-sp_delete_backuphistory-to-delete-backup-history/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2012/01/17/using-sp_delete_backuphistory-to-delete-backup-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing SQL Server 2008 R2 Service Pack 1</title>
		<link>http://learnsqlwithbru.com/2012/01/14/installing-sql-server-2008-r2-service-pack-1/</link>
		<comments>http://learnsqlwithbru.com/2012/01/14/installing-sql-server-2008-r2-service-pack-1/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 05:00:07 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Service Pack]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=2532</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=Learn+SQL+With+Bru&link=http%3A%2F%2Flearnsqlwithbru.com%2F2012%2F01%2F14%2Finstalling-sql-server-2008-r2-service-pack-1%2F&title=Installing+SQL+Server+2008+R2+Service+Pack+1&desc=This+blog+will+provide+a+step+by+step+details+of+installing+SQL+Server+2008+R2+Service+Pack+1.+Before+installing+Service+Pack%2C+I+would+recommend+you+read+one+of+my+earlier+blogs%C2%A0Best+Practices+for+ap&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=0&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=0&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>This blog will provide a step by step details of installing SQL Server 2008 R2 Service Pack 1. Before installing Service Pack, I would recommend you read one of my earlier blogs Best Practices for applying SQL Server Service Packs. Once &#8230; <a href="http://learnsqlwithbru.com/2012/01/14/installing-sql-server-2008-r2-service-pack-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2012/01/14/installing-sql-server-2008-r2-service-pack-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things to know when Installing SQL Server 2008 R2 side by side with SQL Server 2008</title>
		<link>http://learnsqlwithbru.com/2012/01/13/things-to-know-when-installing-sql-server-2008-r2-side-by-side-with-sql-server-2008/</link>
		<comments>http://learnsqlwithbru.com/2012/01/13/things-to-know-when-installing-sql-server-2008-r2-side-by-side-with-sql-server-2008/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 00:27:54 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Multiple Instances]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=2779</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=Learn+SQL+With+Bru&link=http%3A%2F%2Flearnsqlwithbru.com%2F2012%2F01%2F13%2Fthings-to-know-when-installing-sql-server-2008-r2-side-by-side-with-sql-server-2008%2F&title=Things+to+know+when+Installing+SQL+Server+2008+R2+side+by+side+with+SQL+Server+2008&desc=If+you+are+planning+to+install+SQL+Server+2008+R2+as+an+additional+Instance+on+a+machine+where+SQL+Server+2008+exists%2C+then+you+have+to+keep+in+mind+some+implications.+Though+nothing+fatal+might+occur&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=0&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=0&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>If you are planning to install SQL Server 2008 R2 as an additional Instance on a machine where SQL Server 2008 exists, then you have to keep in mind some implications. Though nothing fatal might occur in the first place, &#8230; <a href="http://learnsqlwithbru.com/2012/01/13/things-to-know-when-installing-sql-server-2008-r2-side-by-side-with-sql-server-2008/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2012/01/13/things-to-know-when-installing-sql-server-2008-r2-side-by-side-with-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Linked Server to connect to a SQL Server Part &#8211; II</title>
		<link>http://learnsqlwithbru.com/2012/01/12/create-linked-server-to-connect-to-a-sql-server-part-ii/</link>
		<comments>http://learnsqlwithbru.com/2012/01/12/create-linked-server-to-connect-to-a-sql-server-part-ii/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 14:09:55 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Linked Server]]></category>
		<category><![CDATA[SQL Server 2012]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=2291</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=Learn+SQL+With+Bru&link=http%3A%2F%2Flearnsqlwithbru.com%2F2012%2F01%2F12%2Fcreate-linked-server-to-connect-to-a-sql-server-part-ii%2F&title=Create+Linked+Server+to+connect+to+a+SQL+Server+Part+-+II&desc=This+blog+is+Part-II+of+last+week%27s+blog+post+Create+Linked+Server+to+connect+to+a+SQL+Server+Part+-+I.+In+this+blog+we+shall+learn+two+more+ways+of+creating+a+Linked+Server+for+a+SQL+Server+destinati&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=0&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=0&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>This blog is Part-II of last week&#8217;s blog post Create Linked Server to connect to a SQL Server Part &#8211; I. In this blog we shall learn two more ways of creating a Linked Server for a SQL Server destination. &#8230; <a href="http://learnsqlwithbru.com/2012/01/12/create-linked-server-to-connect-to-a-sql-server-part-ii/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2012/01/12/create-linked-server-to-connect-to-a-sql-server-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Database Compatibility Level for SQL Server 2012</title>
		<link>http://learnsqlwithbru.com/2012/01/11/setting-database-compatibility-level-for-sql-server-2012/</link>
		<comments>http://learnsqlwithbru.com/2012/01/11/setting-database-compatibility-level-for-sql-server-2012/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 13:08:26 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Administration]]></category>
		<category><![CDATA[Database Options]]></category>
		<category><![CDATA[Database Settings]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=2645</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=Learn+SQL+With+Bru&link=http%3A%2F%2Flearnsqlwithbru.com%2F2012%2F01%2F11%2Fsetting-database-compatibility-level-for-sql-server-2012%2F&title=Setting+Database+Compatibility+Level+for+SQL+Server+2012&desc=In+this+blog+we+shall+look+at+2+ways+to+set+a+database+to%C2%A0compatibility+level+for+SQL+Server+2012.+The+Compatibility+level+for+SQL+Server+2012+is+110.%0D%0AUsing+graphical+interface+in+SSMS%0D%0AThe+first+me&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=0&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=0&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>In this blog we shall look at 2 ways to set a database to compatibility level for SQL Server 2012. The Compatibility level for SQL Server 2012 is 110. Using graphical interface in SSMS The first method we are going to &#8230; <a href="http://learnsqlwithbru.com/2012/01/11/setting-database-compatibility-level-for-sql-server-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2012/01/11/setting-database-compatibility-level-for-sql-server-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Feedback and request new features / additions</title>
		<link>http://learnsqlwithbru.com/2012/01/07/sql-server-feedback-and-request-new-features-additions/</link>
		<comments>http://learnsqlwithbru.com/2012/01/07/sql-server-feedback-and-request-new-features-additions/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 05:55:37 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Connect]]></category>
		<category><![CDATA[SQL Server Feedback]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=2308</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=Learn+SQL+With+Bru&link=http%3A%2F%2Flearnsqlwithbru.com%2F2012%2F01%2F07%2Fsql-server-feedback-and-request-new-features-additions%2F&title=SQL+Server+Feedback+and+request+new+features+%2F+additions&desc=Have+you+even+wondered+how+you+can+give+feedback+on+SQL+Server+team+%40+Microsoft%3F+Follow+this+link+below+to+visit+the+Feedback+Center+for+SQL+Server....%C2%A0https%3A%2F%2Fconnect.microsoft.com%2FSQLServer%2FFeedbac&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=0&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=0&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>Have you even wondered how you can give feedback on SQL Server team @ Microsoft? Follow this link below to visit the Feedback Center for SQL Server&#8230;. https://connect.microsoft.com/SQLServer/Feedback On this page, you can sign-in and leave feedback about a specific bug &#8230; <a href="http://learnsqlwithbru.com/2012/01/07/sql-server-feedback-and-request-new-features-additions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2012/01/07/sql-server-feedback-and-request-new-features-additions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Linked Server to connect to another SQL Server Part &#8211; I</title>
		<link>http://learnsqlwithbru.com/2012/01/06/create-linked-server-to-connect-to-another-sql-server-part-i/</link>
		<comments>http://learnsqlwithbru.com/2012/01/06/create-linked-server-to-connect-to-another-sql-server-part-i/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 05:00:35 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Linked Server]]></category>
		<category><![CDATA[SQL Server 2012]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=2215</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=Learn+SQL+With+Bru&link=http%3A%2F%2Flearnsqlwithbru.com%2F2012%2F01%2F06%2Fcreate-linked-server-to-connect-to-another-sql-server-part-i%2F&title=Create+Linked+Server+to+connect+to+another+SQL+Server+Part+-+I&desc=This+is+the+first+blog+in+a+2+part+series+on+how+to+create+Linked+Server+to+connect+to+another+SQL+Server+%28Instance%29+and+run+queries+using+the+created+Linked+Server.+These+2+blogs+will+give+you+step+b&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=0&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=0&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>This is the first blog in a 2 part series on how to create Linked Server to connect to another SQL Server (Instance) and run queries using the created Linked Server. These 2 blogs will give you step by step &#8230; <a href="http://learnsqlwithbru.com/2012/01/06/create-linked-server-to-connect-to-another-sql-server-part-i/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2012/01/06/create-linked-server-to-connect-to-another-sql-server-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to Backup Compression in SQL Server &#8211; Video</title>
		<link>http://learnsqlwithbru.com/2012/01/05/introduction-to-backup-compression-in-sql-server-video/</link>
		<comments>http://learnsqlwithbru.com/2012/01/05/introduction-to-backup-compression-in-sql-server-video/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 05:00:39 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Backup Compression]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=2569</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=Learn+SQL+With+Bru&link=http%3A%2F%2Flearnsqlwithbru.com%2F2012%2F01%2F05%2Fintroduction-to-backup-compression-in-sql-server-video%2F&title=Introduction+to+Backup+Compression+in+SQL+Server+-+Video&desc=In+this+session+we+are+going+to+learn+about+Backup+Compression+in+SQL+Server%2C+which+is+introduced+in+SQL+Server+2008.%0D%0ASQL+Server+2008+introduced+a+feature+called+Backup+compression+where+you+can+comp&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=0&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=0&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>In this session we are going to learn about Backup Compression in SQL Server, which is introduced in SQL Server 2008. SQL Server 2008 introduced a feature called Backup compression where you can compress your backups while performing a backup &#8230; <a href="http://learnsqlwithbru.com/2012/01/05/introduction-to-backup-compression-in-sql-server-video/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2012/01/05/introduction-to-backup-compression-in-sql-server-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>12 things to know about MSDB</title>
		<link>http://learnsqlwithbru.com/2012/01/03/12-things-to-know-about-msdb/</link>
		<comments>http://learnsqlwithbru.com/2012/01/03/12-things-to-know-about-msdb/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 05:00:59 +0000</pubDate>
		<dc:creator>Brumedishetty</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[MSDB]]></category>
		<category><![CDATA[System Databases]]></category>

		<guid isPermaLink="false">http://learnsqlwithbru.com/?p=2203</guid>
		<description><![CDATA[<div style="padding-top:5px;padding-right:0px;padding-bottom:5px;padding-left:0px;;">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=Learn+SQL+With+Bru&link=http%3A%2F%2Flearnsqlwithbru.com%2F2012%2F01%2F03%2F12-things-to-know-about-msdb%2F&title=12+things+to+know+about+MSDB&desc=MSDB+is+one+the+System+Databases+in+SQL+Server.+You+might+be+aware%C2%A0that+System+Databases+are+important+for+the+normal+functioning+of+SQL+Server.+Here+is+a+list+of+12+areas+in+which+%C2%A0MSDB+is+used+in+&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=0&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=0&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div>MSDB is one the System Databases in SQL Server. You might be aware that System Databases are important for the normal functioning of SQL Server. Here is a list of 12 areas in which  MSDB is used in a SQL Server &#8230; <a href="http://learnsqlwithbru.com/2012/01/03/12-things-to-know-about-msdb/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://learnsqlwithbru.com/2012/01/03/12-things-to-know-about-msdb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

