<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>SQL Server Citation - SQL Blog by Hemantgiri S. Goswami, SQL MVP</title><link>http://www.sql-server-citation.com/</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SqlServerCitation" /><description></description><language>en</language><managingEditor>noreply@blogger.com (Hemantgiri S. Goswami)</managingEditor><lastBuildDate>Wed, 15 Feb 2012 23:07:52 PST</lastBuildDate><generator>Blogger</generator><atom:id xmlns:atom="http://www.w3.org/2005/Atom">tag:blogger.com,1999:blog-8332641</atom:id><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">139</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SqlServerCitation" /><feedburner:info uri="sqlservercitation" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license><image><link>http://www.sql-server-citation.com/</link><url>http://surat-user-group.org/sqlservercitation/images/logo.gif</url><title>Subscribe SQL Server Citation</title></image><feedburner:emailServiceId>SqlServerCitation</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item><title>When DBCC INPUTBUFFER disappoints</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/YGqdpJzfNWo/when-dbcc-inputbuffer-disappoints.html</link><category>sql server 2000</category><category>sql server performance tuning</category><category>sql server 2005</category><category>Sql server 2008</category><category>sql server performance</category><category>sql server administration</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Mon, 30 Jan 2012 22:44:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-6428064765741148639</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span style="font-size: small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;Today we have an alert from one of the client server about blocking, I have immediately start looking at it using below statement&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;pre class="sql" name="code"&gt; 
SELECT * FROM 
MASTER..SYSPROCESSES
WHERE BLOCKED != 0&amp;nbsp;&lt;/pre&gt;
&lt;/div&gt;
&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;span style="font-size: small;"&gt;Yes, I’ve found the culprit SPID that is occupying more resources, using DBCC INPUTBUFFER(SPID). so, instead of 
seeing what exactly this SPID is doing I have received SP_EXECUTESQL, surprised!!! No, it’s bound to happen when 
SPID is running dynamic TSQL (using SP_EXECUTESQL) and/or cursor. But, yes, at the same time 
I would like to know what it is running behind the scene. There are two options that came to my mind
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;li&gt;Using Profiler
&lt;/li&gt;
&lt;li&gt;using function – ::fn_get_sql(@SQLHandle)&amp;nbsp;&lt;/li&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/ul&gt;
&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;

&lt;span style="font-size: small;"&gt;I preferred to use 2nd option as this is one time 
effort (at least as of now), and, it would be very quick. So, here is 
what I have used   
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;pre class="sql" name="code"&gt; &lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;/span&gt;&lt;/span&gt;
-- Variable that will store the SQLHandle
DECLARE @SQLHandle BINARY(20)

-- Variable that will pass on the culprit SPID
DECLARE @SPID INT

-- value for culprit SPID
SET @SPID = 52

-- this will give you the SQLHandle for the culprit SPID
SELECT @SQLHandle = SQL_HANDLE 
FROM MASTER..SYSPROCESSES 
WHERE SPID = @SPID  

-- this statement will give you the SQL Statement for culprit SPID
SELECT [TEXT] FROM ::FN_GET_SQL(@SQLHandle)
&lt;/pre&gt;
&lt;div style="text-align: justify;"&gt;
&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;span style="font-size: small;"&gt;You must be thinking why I have used this function instead sys.dm_exec_sql_text? Any guess??&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; &lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;span style="font-size: small;"&gt;

Yes, you are right, customer is still using SQL server 2000 {Winking smile}&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;span style="font-size: small;"&gt;

BTW, if you happened to come across something relating but on SQL Server 2005 or SQL Server 2008 and greater I have a reference script for you&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;

&lt;span style="font-size: small;"&gt;Erland Sommarskog, SQL Server MVP  has written &lt;a href="http://www.sommarskog.se/sqlutil/aba_lockinfo.html"&gt;aba_lockinfo&lt;/a&gt;  and a script a.k.a. Custom Blocker Report from Aaron_Bertrand.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;

 

--Hemantgiri S. Goswami (http://www.sql-server-citation.com )&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-6428064765741148639?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=YGqdpJzfNWo:D0V2tYv4acc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=YGqdpJzfNWo:D0V2tYv4acc:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=YGqdpJzfNWo:D0V2tYv4acc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=YGqdpJzfNWo:D0V2tYv4acc:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=YGqdpJzfNWo:D0V2tYv4acc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=YGqdpJzfNWo:D0V2tYv4acc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=YGqdpJzfNWo:D0V2tYv4acc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=YGqdpJzfNWo:D0V2tYv4acc:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=YGqdpJzfNWo:D0V2tYv4acc:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=YGqdpJzfNWo:D0V2tYv4acc:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=YGqdpJzfNWo:D0V2tYv4acc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=YGqdpJzfNWo:D0V2tYv4acc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=YGqdpJzfNWo:D0V2tYv4acc:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=YGqdpJzfNWo:D0V2tYv4acc:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/YGqdpJzfNWo" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2012-01-31T13:13:44.494+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2012/01/when-dbcc-inputbuffer-disappoints.html</feedburner:origLink></item><item><title>Rebuild System Databases</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/I5l3VFASArU/rebuild-system-databases.html</link><category>sql server 2005</category><category>sql server 2012</category><category>sql server 2008 r2</category><category>sql server administration</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Sun, 29 Jan 2012 21:00:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-6139879342540979116</guid><description>&lt;p&gt;Yesterday night one of FB Friend have ping me, he has issue with his local SQL Server instance. Our conversation goes like:&lt;/p&gt;  &lt;p&gt;FB Friend: Hi&lt;/p&gt;  &lt;p&gt;I : Hi&lt;/p&gt;  &lt;p&gt;FB Friend: I need your help&lt;/p&gt;  &lt;p&gt;FB Friend : My SQL Server is not starting...&lt;/p&gt;  &lt;p&gt;I : What is an error you are getting?&lt;/p&gt;  &lt;p&gt;FB Friend : Just nothing&lt;/p&gt;  &lt;p&gt;I : Ok, check the SQL Server Error Log and EventViewer&lt;/p&gt;  &lt;p&gt;I : you can find errologs at &lt;em&gt;&lt;strong&gt;C:\Program Files\Microsoft SQL Server\MSSQL11.DENALI\MSSQL\Log&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;I : open it with notepad ....&lt;/p&gt;  &lt;p&gt;FB Friend: Ok&lt;/p&gt;  &lt;p&gt;FB Friend: &lt;em&gt;&lt;strong&gt;Cannot recover the master database. SQL Server is unable to run. Restore master from a full backup, repair it, or rebuild it. For more information about how to rebuild the master database, see SQL Server Books Online.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;I : Wow, seems like your master database is corrupt, you will need to run repair or you may want to rebuild master database.&lt;/p&gt;  &lt;p&gt;I : Is this a new installation ?&lt;/p&gt;  &lt;p&gt;FB Friend : Yes, this is new installation, and, I don't want to re-run the installation again, what is my option ?&lt;/p&gt;  &lt;p&gt;I : you will need to rebuild master or restore it&lt;/p&gt;  &lt;p&gt;FB Friend: How do I do it?&lt;/p&gt;  &lt;p&gt;I: Here are your steps&lt;/p&gt;  &lt;h4&gt;&lt;strong&gt;Rebuild Master: &lt;/strong&gt;&lt;/h4&gt;  &lt;p&gt;Step 1: Insert your setup media CD or folder where you have dumped SQL Server Installation&lt;/p&gt;  &lt;p&gt;Step 2: Open command prompt&lt;/p&gt;  &lt;p&gt;Step 3: Go to location (wherever you have setup, Step 1)&lt;/p&gt;  &lt;p&gt;Step 4: setup /ACTION=REBUILDDATABASE /QUIET /INSTANCENAME=MSSQLServer /SQLSYSADMINACCOUNTS=MyAdmin /SAPWD=somePwd&lt;/p&gt;  &lt;p&gt;&lt;img border="0" src="http://www.suratusergroup.org/images/step000.jpg" width="740" height="233" /&gt;&lt;/p&gt;  &lt;p&gt;Step 5: this will pop up new command window and then disappears&lt;/p&gt;  &lt;p&gt;&lt;img border="0" src="http://www.suratusergroup.org/images/step001.jpg" width="740" height="190" /&gt;&lt;/p&gt;  &lt;p&gt;Step 6: you will have to refer logs so as to see whether it was successful completed or exit with error&lt;/p&gt;  &lt;p&gt;&lt;img border="0" src="http://www.suratusergroup.org/images/Step003.jpg" width="739" height="147" /&gt;&lt;/p&gt;  &lt;p&gt;This is it, you system database has been rebuild successfully!!&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Restoring Master Database - An alternative method:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Step 1:&lt;strong&gt; &lt;/strong&gt;Take backup of master database, in your case, I assume, you already have your master database backed up.&lt;/p&gt;  &lt;p&gt;&lt;img border="0" src="http://www.suratusergroup.org/images/Master001.jpg" width="741" height="333" /&gt;&lt;/p&gt;  &lt;p&gt;Step 2: Stop SQL Server Services * you will need Administrator permission for this operation&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;img border="0" src="http://www.suratusergroup.org/images/Master0012jpg" /&gt;&lt;img border="0" src="http://www.suratusergroup.org/images/Master002.jpg" width="721" height="219" /&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Step 3: Start SQL Server using -C and -M parameter; this will start SQL Server in single user mode which is required to restore Master database&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;img border="0" src="http://www.suratusergroup.org/images/Master003.jpg" width="748" height="408" /&gt;      &lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Step 4: Restore database using SQLCMD&lt;/p&gt;  &lt;p&gt;&lt;img border="0" src="http://www.suratusergroup.org/images/Master004.jpg" width="737" height="259" /&gt;&lt;/p&gt;  &lt;p&gt;This is it, you have successfully restore your master database!!!&lt;/p&gt;  &lt;h4&gt;&lt;strong&gt;Is it this simple? No, wait, there are few things we need to be careful with....&lt;/strong&gt;&lt;/h4&gt;  &lt;p&gt;The above example have save you because below conditions are true:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;You have back up of your master database, or &lt;/li&gt;    &lt;li&gt;This server is fresh installation or &lt;/li&gt;    &lt;li&gt;there are no user databases or &lt;/li&gt;    &lt;li&gt;this server is not production box &lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;If the above conditions were not true, you will have to perform below steps:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Restore / Rebuild system databases &lt;/li&gt;    &lt;li&gt;Recreate all the Login that you have on your crashed server - &lt;em&gt;&lt;strong&gt;backing up master db&lt;/strong&gt;&lt;/em&gt; helps you here &lt;/li&gt;    &lt;li&gt;you will have to recreate all the jobs and SSIS/DTS Packages that you have - &lt;em&gt;&lt;strong&gt;backing up MSDB database&lt;/strong&gt;&lt;/em&gt; will save you &lt;/li&gt;    &lt;li&gt;similarly &lt;strong&gt;&lt;em&gt;distribution database backup will help you if you have replication configured&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;Conclusion :&amp;#160; I wish that you have schedule maintenance plan / job to take full backup of your system databases i.e. Master, MSDB, and Distribution(if you have configured replication).&lt;/p&gt;  &lt;p&gt;Disclaimer : The example used here is for illustration purpose only.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-6139879342540979116?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=I5l3VFASArU:TjUqO7KGM1U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=I5l3VFASArU:TjUqO7KGM1U:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=I5l3VFASArU:TjUqO7KGM1U:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=I5l3VFASArU:TjUqO7KGM1U:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=I5l3VFASArU:TjUqO7KGM1U:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=I5l3VFASArU:TjUqO7KGM1U:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=I5l3VFASArU:TjUqO7KGM1U:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=I5l3VFASArU:TjUqO7KGM1U:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=I5l3VFASArU:TjUqO7KGM1U:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=I5l3VFASArU:TjUqO7KGM1U:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=I5l3VFASArU:TjUqO7KGM1U:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=I5l3VFASArU:TjUqO7KGM1U:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=I5l3VFASArU:TjUqO7KGM1U:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=I5l3VFASArU:TjUqO7KGM1U:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/I5l3VFASArU" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2012-01-30T10:30:35.185+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2012/01/rebuild-system-databases.html</feedburner:origLink></item><item><title>Revamping SUG 2nd Meeting</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/GJVVBMhUl6U/revamping-sug-2nd-meeting.html</link><category>surat</category><category>Surat SQL Server User Group</category><category>Sql server 2008</category><category>SQL Server MVP</category><category>surat user group</category><category>Surat Technical community</category><category>surat it pro community</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Mon, 23 Jan 2012 04:02:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-5198784737255735352</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;&lt;img align="left" height="238" src="http://pmtips.net/wp-content/uploads/2010/03/meaningful-meetings.jpg" style="display: inline; float: left;" width="390" /&gt;&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;Friends,&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div align="justify"&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;Last Saturday, 21st we have 2nd meeting of SUG members and this time we made progress – I, Vinay and Matang was present in meeting &lt;img alt="Smile" class="wlEmoticon wlEmoticon-smile" src="http://lh5.ggpht.com/-fhUjhdO2VDQ/Tx1MNx1MlTI/AAAAAAAAD18/9Fo_f24NczU/wlEmoticon-smile%25255B2%25255D.png?imgmax=800" style="border-bottom-style: none; border-left-style: none; border-right-style: none; border-top-style: none;" /&gt; .We have discussed following :&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;     &lt;div align="justify"&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt; We have decided that portal management will be done by I, Vinay and Matang initially, here are the module that we’ll be adding content on:&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;ol&gt;
&lt;li&gt;Forums and Team section –&amp;gt; Hemantgiri S Goswami&lt;/li&gt;
&lt;li&gt;Article Section –&amp;gt; Matang Panchal&lt;/li&gt;
&lt;li&gt;Blog Section –&amp;gt; Vinay Pugalia&lt;/li&gt;
&lt;/ol&gt;
&lt;li&gt;&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt; We’ll design and use common PPT theme during all our presentations&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;We’ll organize quize every quarter&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;From next meet, 1 member will make presentation of 15 minutes; starting with myself&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;We will try to accommodate as many as practical / self demos in initial (and, so on) events&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;We would also create PPT / Demo repository that we have used during event&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;Also, there will be a download section where we’ll share scripts/codes to download&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;We will open a bank account to manage the fund we’ll receive from Sponsors &lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;See you in next meeting will be on &lt;b&gt;&lt;u&gt;11th February 2012&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;Venue : 406, Empire State Building, Nr. Udhana Darwaja&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;Time : 7 PM&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt; Image source: http://pmtips.net/wp-content/uploads/2010/03/meaningful-meetings.jpg&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com/"&gt;http://www.sql-server-citation.com&lt;/a&gt; )&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-5198784737255735352?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=GJVVBMhUl6U:4jdDr-HHDfY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=GJVVBMhUl6U:4jdDr-HHDfY:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=GJVVBMhUl6U:4jdDr-HHDfY:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=GJVVBMhUl6U:4jdDr-HHDfY:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=GJVVBMhUl6U:4jdDr-HHDfY:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=GJVVBMhUl6U:4jdDr-HHDfY:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=GJVVBMhUl6U:4jdDr-HHDfY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=GJVVBMhUl6U:4jdDr-HHDfY:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=GJVVBMhUl6U:4jdDr-HHDfY:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=GJVVBMhUl6U:4jdDr-HHDfY:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=GJVVBMhUl6U:4jdDr-HHDfY:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=GJVVBMhUl6U:4jdDr-HHDfY:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=GJVVBMhUl6U:4jdDr-HHDfY:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=GJVVBMhUl6U:4jdDr-HHDfY:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/GJVVBMhUl6U" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2012-01-23T17:51:17.377+05:30</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-fhUjhdO2VDQ/Tx1MNx1MlTI/AAAAAAAAD18/9Fo_f24NczU/s72-c/wlEmoticon-smile%25255B2%25255D.png?imgmax=800" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2012/01/revamping-sug-2nd-meeting.html</feedburner:origLink></item><item><title>Roles and Responsibilty of SQL Server DBA</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/Q7GfHU5ld2c/roles-and-responsibilty-of-sql-server.html</link><category>sql dba</category><category>sql server administration</category><category>roles and responsibility</category><category>dba</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Sun, 01 Jan 2012 18:30:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-25421176786380070</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;ul style="text-align: left;"&gt;
&lt;li&gt;What is a role of a DBA in an organization?&lt;/li&gt;
&lt;li&gt;What are the daily activities of a DBA?&lt;/li&gt;
&lt;li&gt;What shall I check on regular basis? &lt;/li&gt;
&lt;li&gt;What all processes shall I automate ?&lt;/li&gt;
&lt;li&gt;What are the precautions, I have to take additionally?&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
These are the common question being asked in-common on may forums, here is what my listing is&lt;br /&gt;
&lt;br /&gt;
•&amp;nbsp;Design and implement Disaster Recovery&lt;br /&gt;
&lt;br /&gt;
• Design, development, upgrade and Migration of Database Server.&lt;br /&gt;
&lt;br /&gt;
• Providing&amp;nbsp;support and handling most critical situations in vast variety of database systems. &lt;br /&gt;
&lt;br /&gt;
• Database Optimization / Query Performance Tuning.&lt;br /&gt;
&lt;br /&gt;
• Design and implementation Automated Database &amp;amp; Application fail over server setup.&lt;br /&gt;
&lt;br /&gt;
• Capacity Planning, Change Management and Admin. Documentation.&lt;br /&gt;
&lt;br /&gt;
• Review of existing design and specifications of the system.&lt;br /&gt;
&lt;br /&gt;
• Design and documentation of operational specifications of the system.&lt;br /&gt;
&lt;br /&gt;
• Monitoring of the development process, in order to confirm optimum performance of the system.&lt;br /&gt;
&lt;br /&gt;
• Preparation of standards and follow up rules for the back – end system, to ensure a fully secured and a robust system.&lt;br /&gt;
&lt;br /&gt;
• Design and implementation of the logical &amp;amp; physical structure of the database.&lt;br /&gt;
&lt;br /&gt;
• Monitoring of performance of database servers and providing tuning measures.&lt;br /&gt;
&lt;br /&gt;
• Performing database / application wide query tuning operations.&lt;br /&gt;
&lt;br /&gt;
Try automate every process that needs to be performed on daily basis and/or requires manual intervention.&lt;br /&gt;
&lt;br /&gt;
--&amp;nbsp; Hemantgiri S. Goswami (http://www.sql-server-citation.com)&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-25421176786380070?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Q7GfHU5ld2c:nTkUaBRX_hw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Q7GfHU5ld2c:nTkUaBRX_hw:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Q7GfHU5ld2c:nTkUaBRX_hw:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Q7GfHU5ld2c:nTkUaBRX_hw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Q7GfHU5ld2c:nTkUaBRX_hw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=Q7GfHU5ld2c:nTkUaBRX_hw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Q7GfHU5ld2c:nTkUaBRX_hw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Q7GfHU5ld2c:nTkUaBRX_hw:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=Q7GfHU5ld2c:nTkUaBRX_hw:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Q7GfHU5ld2c:nTkUaBRX_hw:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Q7GfHU5ld2c:nTkUaBRX_hw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=Q7GfHU5ld2c:nTkUaBRX_hw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Q7GfHU5ld2c:nTkUaBRX_hw:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=Q7GfHU5ld2c:nTkUaBRX_hw:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/Q7GfHU5ld2c" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2012-01-02T08:00:00.525+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2012/01/roles-and-responsibilty-of-sql-server.html</feedburner:origLink></item><item><title></title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/B6KKDU_T04k/wishing-you-all-very-happy-and.html</link><category>2012</category><category>New year</category><category>general</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Sat, 31 Dec 2011 19:19:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-1405810361493248359</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Wishing you all a very Happy and Prosperous new year, may success comes to your doorstep 



&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-R5AqWrKh1-Y/Tv_QIVvNc9I/AAAAAAAAD1s/vh-8vx54TDM/s1600/new-year-image1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="226" src="http://4.bp.blogspot.com/-R5AqWrKh1-Y/Tv_QIVvNc9I/AAAAAAAAD1s/vh-8vx54TDM/s320/new-year-image1.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
Image source : &lt;a href="http://topcnnnews.com/wp-content/uploads/2011/12/new-year-image1.jpg" target="_blank"&gt;Top CNN News&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-1405810361493248359?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=B6KKDU_T04k:NmAruNGRjLI:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=B6KKDU_T04k:NmAruNGRjLI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=B6KKDU_T04k:NmAruNGRjLI:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/B6KKDU_T04k" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2012-01-01T08:49:14.269+05:30</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-R5AqWrKh1-Y/Tv_QIVvNc9I/AAAAAAAAD1s/vh-8vx54TDM/s72-c/new-year-image1.jpg" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2012/01/wishing-you-all-very-happy-and.html</feedburner:origLink></item><item><title>What’s new in SQL Server RC0 setup</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/cQmZdlYYTRQ/whats-new-in-sql-server-rc0-setup.html</link><category>sql server cluster</category><category>sql setup</category><category>sql server 2012</category><category>sql server ha</category><category>sql server administration</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Wed, 28 Dec 2011 20:18:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-1395836153263963880</guid><description>&lt;ol&gt;   &lt;li&gt;     &lt;div align="justify"&gt;&lt;font size="3" face="Trebuchet MS"&gt;Datacentre Edition is no longer available as a MS SQL Server 2012 RC0 candidate, &lt;a href="http://msdn.microsoft.com/en-us/library/ms144275(v=sql.110).aspx"&gt;Read More&lt;/a&gt; &lt;/font&gt;&lt;/div&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;div align="justify"&gt;&lt;font size="3" face="Trebuchet MS"&gt;MS SQL Server 2012 RC0 includes new edition – SQL Server Business Intelligence,&amp;#160; &lt;a href="http://msdn.microsoft.com/en-us/library/ms144275(v=sql.110).aspx"&gt;Read More&lt;/a&gt;&lt;/font&gt;&lt;/div&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;div&gt;&lt;font size="3" face="Trebuchet MS"&gt;Service Pack 1 is the minimum requirement for Windows 7 and Windows Server 2008 R2 operating systems, &lt;a href="http://msdn.microsoft.com/en-us/library/ms143506(v=sql.110).aspx"&gt;Read more&lt;/a&gt;&lt;/font&gt;&lt;/div&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;div align="justify"&gt;&lt;font size="3" face="Trebuchet MS"&gt;Data Quality Services can be installed using SQL Server 2012 RC0 Setup, &lt;a href="http://www.microsoft.com/sqlserver/en/us/future-editions/SQL-Server-2012-breakthrough-insight.aspx"&gt;Read more&lt;/a&gt;&lt;/font&gt;&lt;/div&gt;   &lt;/li&gt;    &lt;li&gt;     &lt;div align="justify"&gt;&lt;font size="3" face="Trebuchet MS"&gt;Product update is the new feature available with MS SQL Server 2012 RC0, this will integrate latest update with main product including MS Update, WSUS, local folder or UNC. This feature is an extension to &lt;a href="http://msdn.microsoft.com/en-us/library/hh231670(v=sql.110).aspx#bk_slipstream"&gt;Slipstream Functionality&lt;/a&gt; which was available in SQL Server 2008 PCU1. We can use command prompt or configuration file to override default values to find updates by specifying values for &lt;em&gt;UpdateSource&lt;/em&gt; parameter, &lt;a href="http://msdn.microsoft.com/en-us/library/hh231670(v=sql.110).aspx"&gt;Read more&lt;/a&gt;&lt;/font&gt;&lt;/div&gt;   &lt;/li&gt;    &lt;li&gt;&lt;font size="3" face="Trebuchet MS"&gt;We can now install MS SQL Server on Windows Server 2008 R2 Core SP1, not all features are supported though, &lt;a href="http://msdn.microsoft.com/en-us/library/hh231669(v=sql.110).aspx"&gt;Read more&lt;/a&gt;&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;&lt;font size="3" face="Trebuchet MS"&gt;SQL Server Data Tools (formerly, BIDS) is now part of setup, with this we can carry out all database design work, and can build solutions for SSAS, SSRS and SSIS. &lt;a href="http://msdn.microsoft.com/en-us/data/gg427686"&gt;Read more&lt;/a&gt;&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;&lt;font size="3" face="Trebuchet MS"&gt;Now, Support for SQL Server multi-subnet clustering included, &lt;a href="http://msdn.microsoft.com/en-us/library/ff878716(v=sql.110).aspx"&gt;Read more&lt;/a&gt;&amp;#160;&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;&lt;font size="3" face="Trebuchet MS"&gt;Databases (systems and users) can now be on UNC path, we may need to make sure that proper NTFS and File Share permissions are assigned, &lt;a href="http://msdn.microsoft.com/en-us/library/cc281941(v=sql.110).aspx"&gt;Read more&lt;/a&gt;&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;&lt;font size="3" face="Trebuchet MS"&gt;Local disk can be used for Tempdb in cluster, &lt;a href="http://msdn.microsoft.com/en-us/library/cc281941(v=sql.110).aspx"&gt;Read more&lt;/a&gt;&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;&lt;font size="3" face="Trebuchet MS"&gt;Built-in Administrator and Local system account will not be part of sysadmin role&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;&lt;font size="3" face="Trebuchet MS"&gt;Itanium editions are no longer supported&lt;/font&gt; &lt;/li&gt; &lt;/ol&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-1395836153263963880?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=cQmZdlYYTRQ:vTSI7sH5poM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=cQmZdlYYTRQ:vTSI7sH5poM:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=cQmZdlYYTRQ:vTSI7sH5poM:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=cQmZdlYYTRQ:vTSI7sH5poM:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=cQmZdlYYTRQ:vTSI7sH5poM:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=cQmZdlYYTRQ:vTSI7sH5poM:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=cQmZdlYYTRQ:vTSI7sH5poM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=cQmZdlYYTRQ:vTSI7sH5poM:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=cQmZdlYYTRQ:vTSI7sH5poM:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=cQmZdlYYTRQ:vTSI7sH5poM:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=cQmZdlYYTRQ:vTSI7sH5poM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=cQmZdlYYTRQ:vTSI7sH5poM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=cQmZdlYYTRQ:vTSI7sH5poM:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=cQmZdlYYTRQ:vTSI7sH5poM:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/cQmZdlYYTRQ" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-12-29T09:48:37.656+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/12/whats-new-in-sql-server-rc0-setup.html</feedburner:origLink></item><item><title>Revamping Surat User Group</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/lOY8Q8eha9o/revamping-surat-user-group.html</link><category>surat</category><category>Surat SQL Server User Group</category><category>surat user group</category><category>Surat Technical community</category><category>surat it pro community</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Mon, 26 Dec 2011 22:31:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-6322274666889385967</guid><description>&lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;Dear Friends, we had a user group meeting last week – I and Vinay Pugalia was&amp;#160; here. We have discussed many things to revamp and re-launch Surat User Group. Here are the minutes of meeting:&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;1) Regular Meetings -&amp;gt; Monthly, Proposed schedule :Saturday evening, 1900 to 2000&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;2) Regular Events -&amp;gt; 1 every 2 months, 1 workshop every quarter&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;3) Decide and form SUG Website, with Blog,Forums section, Facebook page and twitter handle&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;4) Press Notes after every event&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;5) Help from CSI Surat -&amp;gt; Have to meet, discuss and encourage Local IT professional to join and PARTICIPATE&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;6) Seminars/ Workshop :-free, TBS on weekends (Sat-Sun) to have discussion with Professional / Students &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;7) Different topics and technology, every time has 1 continue and 1 different topic &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;8) Initially we'll take session and then, we'll encourage others to take sessions and like that&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;9) Form Core Team &amp;amp; Backup Team&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;10) Role definition and Role assignment &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;11) Encourage new speaker to start with very basic topics to build their confidence &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;12) More Online activities etc.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3" face="Trebuchet MS"&gt;13) Ask speakers to provide technology they can confidently speak&lt;/font&gt; &lt;/p&gt;  &lt;p&gt;&lt;font size="3"&gt;-- Hemantgiri S. Goswami (&lt;/font&gt;&lt;a href="http://www.sql-server-citation.com"&gt;&lt;font size="3"&gt;http://www.sql-server-citation.com&lt;/font&gt;&lt;/a&gt;&lt;font size="3"&gt; )&lt;/font&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-6322274666889385967?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=lOY8Q8eha9o:1DWIZ3Eaecc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=lOY8Q8eha9o:1DWIZ3Eaecc:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=lOY8Q8eha9o:1DWIZ3Eaecc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=lOY8Q8eha9o:1DWIZ3Eaecc:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=lOY8Q8eha9o:1DWIZ3Eaecc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=lOY8Q8eha9o:1DWIZ3Eaecc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=lOY8Q8eha9o:1DWIZ3Eaecc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=lOY8Q8eha9o:1DWIZ3Eaecc:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=lOY8Q8eha9o:1DWIZ3Eaecc:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=lOY8Q8eha9o:1DWIZ3Eaecc:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=lOY8Q8eha9o:1DWIZ3Eaecc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=lOY8Q8eha9o:1DWIZ3Eaecc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=lOY8Q8eha9o:1DWIZ3Eaecc:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=lOY8Q8eha9o:1DWIZ3Eaecc:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/lOY8Q8eha9o" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-12-27T12:01:14.455+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/12/revamping-surat-user-group.html</feedburner:origLink></item><item><title>Maintenance Plan mystery</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/aCvsjyVkvQg/maintenance-plan-mystery.html</link><category>sql server 2000</category><category>sql server 2005</category><category>sql server administration</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Wed, 14 Dec 2011 04:22:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-1750315195655166159</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span style="font-family: Trebuchet MS; font-size: x-small;"&gt;Last week I had interesting (or I can say weird ? ) case of Maintenance Plan. One of the server that we monitor has reported job failure – this was a part of maintenance plan. Looking at the job history and log file I came to know that this job was failing because of some database which wasn’t available – this database was dropped few days back, and, the maintenance plan has it’s reference stored somewhere. I have search around system tables etc. but nothing unusual or nothing helpful was available that indicates the source of this database. &lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS; font-size: x-small;"&gt;Finally, I have edited the maintenance plan which resolved this case, here is what I did:&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;Alter the maintenance plan "some maintenance plan" &lt;/span&gt;&lt;/li&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;
&lt;/span&gt;
&lt;li&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;note down the databases name&lt;/span&gt;&lt;/li&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;
&lt;/span&gt;
&lt;li&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;altered it and selected all the system databases&lt;/span&gt;&lt;/li&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;
&lt;/span&gt;
&lt;li&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;saved the maintenance plan changes and exit&lt;/span&gt;&lt;/li&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;
&lt;/span&gt;
&lt;li&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;re-open the maintenance plan&lt;/span&gt;&lt;/li&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;
&lt;/span&gt;
&lt;li&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;re-selected those databases  (from step 2)&lt;/span&gt;&lt;/li&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;
&lt;/span&gt;
&lt;li&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;saved the maintenance plan changes and exit&lt;/span&gt;&lt;/li&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;
&lt;/span&gt;
&lt;li&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;re-invoked the job&lt;/span&gt;&lt;/li&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;
&lt;/span&gt;
&lt;li&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: x-small;"&gt;and, the job completed successfully&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;span style="font-family: Trebuchet MS; font-size: x-small;"&gt;And, the mystery persist, can you guys suggest me if I miss something to refer/research ?&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS; font-size: x-small;"&gt;-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com/"&gt;http://www.sql-server-citation.com&lt;/a&gt; )&lt;/span&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;/ol&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-1750315195655166159?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aCvsjyVkvQg:6PsWO8PEQ_M:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aCvsjyVkvQg:6PsWO8PEQ_M:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aCvsjyVkvQg:6PsWO8PEQ_M:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aCvsjyVkvQg:6PsWO8PEQ_M:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aCvsjyVkvQg:6PsWO8PEQ_M:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=aCvsjyVkvQg:6PsWO8PEQ_M:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aCvsjyVkvQg:6PsWO8PEQ_M:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aCvsjyVkvQg:6PsWO8PEQ_M:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=aCvsjyVkvQg:6PsWO8PEQ_M:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aCvsjyVkvQg:6PsWO8PEQ_M:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aCvsjyVkvQg:6PsWO8PEQ_M:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=aCvsjyVkvQg:6PsWO8PEQ_M:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aCvsjyVkvQg:6PsWO8PEQ_M:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aCvsjyVkvQg:6PsWO8PEQ_M:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/aCvsjyVkvQg" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-12-14T18:01:35.427+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/12/maintenance-plan-mystery.html</feedburner:origLink></item><item><title>Using NOLOCK hint</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/MiQGWYORnC4/using-nolock-hint.html</link><category>sql 2008 r2</category><category>sql 2008</category><category>performance tuning</category><category>sql server administration</category><category>sql 2005</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Thu, 01 Dec 2011 23:28:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-7641854650083156281</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;Use &lt;b&gt;&lt;i&gt;NOLOCK&lt;/i&gt;&lt;/b&gt; hint to avoid block - this is what I have often heard/see in many forums I participate, during local user group events and meeting. I have always advised that its not that good idea to use hints, as it may cause data corruption and blocking. And, anyways, there are many things that you can do to avoid blocking, like:&lt;/span&gt;&lt;br /&gt;
&lt;ol style="text-align: left;"&gt;
&lt;li&gt;&lt;span style="background-color: transparent; font-family: 'Trebuchet MS', sans-serif;"&gt;use sp for everything (almost) &amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;try to avoid using cursor&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;transaction shouldn't be too big etc&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;and, use &lt;b&gt;&lt;i&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ms187373%28v=sql.90%29.aspx" target="_blank"&gt;READPAST hint&lt;/a&gt;&lt;/i&gt;&lt;/b&gt; , I will still say, use this only when you don't have choice&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;But these all comes from the experience from the field and haven't anything concrete to quote as reference point until last night, I was &lt;a href="http://www.google.co.in/search?q=data+corruption+tsql+hint&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;aq=t&amp;amp;rls=org.mozilla:en-US:official&amp;amp;client=firefox-a" target="_blank"&gt;googling&lt;/a&gt; something and this &lt;a href="http://blogs.msdn.com/b/davidlean/archive/2009/04/06/sql-server-nolock-hint-other-poor-ideas.aspx" target="_blank"&gt;blog article&lt;/a&gt; from &amp;nbsp;Dave, on MSDN Blog showed up. &amp;nbsp;Now, I can quote&amp;nbsp;&lt;/span&gt;&lt;span style="background-color: transparent;"&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;a href="http://blogs.msdn.com/b/davidlean/archive/2009/04/06/sql-server-nolock-hint-other-poor-ideas.aspx" target="_blank" title="SQL Server NOLOCK Hint and Other poor ideas"&gt;SQL Server NOLOCK Hint and Other poor ideas&lt;/a&gt; as reference to my peers,and friends at local user group, and I am referencing it here for you to read and make a note. &amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: transparent;"&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: transparent;"&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;I hope this helps.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: transparent;"&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: transparent;"&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;-- Hemantgiri S. Goswami (http://www.sql-server-citation.com/)&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-7641854650083156281?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=MiQGWYORnC4:TnkBrqpCm1c:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=MiQGWYORnC4:TnkBrqpCm1c:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=MiQGWYORnC4:TnkBrqpCm1c:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=MiQGWYORnC4:TnkBrqpCm1c:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=MiQGWYORnC4:TnkBrqpCm1c:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=MiQGWYORnC4:TnkBrqpCm1c:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=MiQGWYORnC4:TnkBrqpCm1c:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=MiQGWYORnC4:TnkBrqpCm1c:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=MiQGWYORnC4:TnkBrqpCm1c:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=MiQGWYORnC4:TnkBrqpCm1c:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=MiQGWYORnC4:TnkBrqpCm1c:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=MiQGWYORnC4:TnkBrqpCm1c:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=MiQGWYORnC4:TnkBrqpCm1c:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=MiQGWYORnC4:TnkBrqpCm1c:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/MiQGWYORnC4" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-12-02T13:32:15.375+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/12/using-nolock-hint.html</feedburner:origLink></item><item><title>Download SQL Server 2008 SP3 CU2</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/X1B44q2avSI/download-sql-server-2008-sp3-cu2.html</link><category>Sql server 2008</category><category>sp3 cu2</category><category>sql server administration</category><category>service pack release</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Tue, 22 Nov 2011 23:56:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-3399519165586001012</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
MS has recently released SQL Server 2008 Service Pack 3 Cumulative Update 2 Released‏ which has fixes reported after SQL Server 2008 SP 3, this build version is&amp;nbsp; 10.00.5768.00.&lt;br /&gt;
Below are the bugs that have been fixed in this CU:&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;FIX: A backup operation on a SQL Server 2008 or SQL Server 2008 R2 database fails if you enable change tracking on this database&lt;/li&gt;
&lt;li&gt;FIX: CLR stored procedure returns NULL after it is recompiled in SQL Server 2008 R2&lt;/li&gt;
&lt;li&gt;FIX: Access violation when you insert a record into a new empty partition in SQL Server 2008&lt;/li&gt;
&lt;/ol&gt;
There are few more things we have to keep in consideration while applying this CU:&lt;br /&gt;
&lt;strong&gt;Pre-install:&lt;/strong&gt;&lt;br /&gt;
1) You should be running on SQL Server SP3, if you haven't installed SP3 for SQL Server here is the link from where you can obtain SP3, Link =&amp;gt; &lt;a href="http://support.microsoft.com/kb/968382" target="_blank"&gt;http://support.microsoft.com/kb/968382&lt;/a&gt;&lt;br /&gt;
&lt;strong&gt;Post-install:&lt;/strong&gt;&lt;br /&gt;
* It is advisable to reboot the system once CU is applied&lt;br /&gt;
Please make sure you test the CU in Dev/QA/UAT environment before you apply it in the PROD environment.&lt;br /&gt;
Here is the link from where you can download the SQL Server 2008 SP3 CU2, link =&amp;gt; &lt;a href="http://support.microsoft.com/kb/2633143/en-us" target="_blank"&gt;http://support.microsoft.com/kb/2633143/en-us&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com/"&gt;http://www.sql-server-citation.com&lt;/a&gt; )&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-3399519165586001012?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=X1B44q2avSI:buJs7FYXyWQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=X1B44q2avSI:buJs7FYXyWQ:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=X1B44q2avSI:buJs7FYXyWQ:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=X1B44q2avSI:buJs7FYXyWQ:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=X1B44q2avSI:buJs7FYXyWQ:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=X1B44q2avSI:buJs7FYXyWQ:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=X1B44q2avSI:buJs7FYXyWQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=X1B44q2avSI:buJs7FYXyWQ:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=X1B44q2avSI:buJs7FYXyWQ:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=X1B44q2avSI:buJs7FYXyWQ:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=X1B44q2avSI:buJs7FYXyWQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=X1B44q2avSI:buJs7FYXyWQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=X1B44q2avSI:buJs7FYXyWQ:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=X1B44q2avSI:buJs7FYXyWQ:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/X1B44q2avSI" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-11-23T13:28:32.001+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/11/download-sql-server-2008-sp3-cu2.html</feedburner:origLink></item><item><title>Download SQL Server 2012 Developer Training Kit</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/SbC6eEgUNA8/download-sql-server-2012-developer.html</link><category>training kit</category><category>download</category><category>sql 2012 r2</category><category>sql server 2012</category><category>sql 2012</category><category>database developement</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Mon, 07 Nov 2011 23:13:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-3505671675162840464</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;Microsoft has released SQL Server 2010 Developer Training Kit which includes :&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul style="text-align: left;"&gt;
&lt;li&gt;&lt;span style="background-color: transparent; font-family: 'Trebuchet MS', sans-serif;"&gt;Labs&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="background-color: transparent; font-family: 'Trebuchet MS', sans-serif;"&gt;Demos&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="background-color: transparent; font-family: 'Trebuchet MS', sans-serif;"&gt;and, Presentations&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;This kit will greatly help you learning Developer and BI Solutions.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;One will require to have Windows 7 or Windows Server 2008 R2 to install this kit. Once you have download the kit, launch the installer and it will ask you which lab, demos and presentations you want to include and install them based on your choice.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;Sounds interesting? Grab it from the &lt;a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;amp;id=27721" target="_blank"&gt;link&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;-- Hemantgiri S. Goswami (http://www.sql-server-citation.com )&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-3505671675162840464?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SbC6eEgUNA8:FXP51f6QNfI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SbC6eEgUNA8:FXP51f6QNfI:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SbC6eEgUNA8:FXP51f6QNfI:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SbC6eEgUNA8:FXP51f6QNfI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SbC6eEgUNA8:FXP51f6QNfI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=SbC6eEgUNA8:FXP51f6QNfI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SbC6eEgUNA8:FXP51f6QNfI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SbC6eEgUNA8:FXP51f6QNfI:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=SbC6eEgUNA8:FXP51f6QNfI:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SbC6eEgUNA8:FXP51f6QNfI:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SbC6eEgUNA8:FXP51f6QNfI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=SbC6eEgUNA8:FXP51f6QNfI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SbC6eEgUNA8:FXP51f6QNfI:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SbC6eEgUNA8:FXP51f6QNfI:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/SbC6eEgUNA8" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-11-08T12:56:20.580+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/11/download-sql-server-2012-developer.html</feedburner:origLink></item><item><title>Resolving 701 There is insufficient system memory to run this query</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/TRe3IZ59Q4Y/resolving-701-there-is-insufficient.html</link><category>sql server 2005</category><category>memory management</category><category>max memory</category><category>database administration</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Mon, 07 Nov 2011 00:47:00 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-7350977061294081002</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;In recent past while working on an assignment I have encounter an error&amp;nbsp;&lt;/span&gt;&lt;span style="background-color: transparent;"&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;b&gt;&lt;i&gt;701 There is insufficient system memory to run this query&lt;/i&gt;&lt;/b&gt;&amp;nbsp;. I had a quick look at the server and noticed that server is not configured proper for max memory, and have suggested client to make changes to the max memory settings for the server. While I've suggested changes I have quote two articles, thought they would be a help to you as well to understand better on how SQL Server Memory managed. An article by SQL Server MVP Jonathan Kehayias will help you understand the memory management very well.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: transparent;"&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: transparent; font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: transparent; font-family: 'Trebuchet MS', sans-serif;"&gt;1) &lt;/span&gt;&lt;span style="background-color: transparent;"&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;a href="http://sqlblog.com/blogs/jonathan_kehayias/archive/2009/08/24/troubleshooting-the-sql-server-memory-leak-or-understanding-sql-server-memory-usage.aspx" target="_blank"&gt;http://sqlblog.com/blogs/jonathan_kehayias/archive/2009/08/24/troubleshooting-the-sql-server-memory-leak-or-understanding-sql-server-memory-usage.aspx&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: transparent;"&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;2)&amp;nbsp;&lt;/span&gt;&lt;span style="background-color: transparent; font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/912439" style="background-color: transparent;" target="_blank"&gt;http://support.microsoft.com/kb/912439&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;-- Hemantgiri S. Goswami (http://www.sql-server-citation.com)&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-7350977061294081002?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=TRe3IZ59Q4Y:5XLdY2BEF7Q:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=TRe3IZ59Q4Y:5XLdY2BEF7Q:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=TRe3IZ59Q4Y:5XLdY2BEF7Q:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=TRe3IZ59Q4Y:5XLdY2BEF7Q:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=TRe3IZ59Q4Y:5XLdY2BEF7Q:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=TRe3IZ59Q4Y:5XLdY2BEF7Q:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=TRe3IZ59Q4Y:5XLdY2BEF7Q:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=TRe3IZ59Q4Y:5XLdY2BEF7Q:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=TRe3IZ59Q4Y:5XLdY2BEF7Q:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=TRe3IZ59Q4Y:5XLdY2BEF7Q:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=TRe3IZ59Q4Y:5XLdY2BEF7Q:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=TRe3IZ59Q4Y:5XLdY2BEF7Q:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=TRe3IZ59Q4Y:5XLdY2BEF7Q:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=TRe3IZ59Q4Y:5XLdY2BEF7Q:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/TRe3IZ59Q4Y" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-11-07T14:17:59.858+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/11/resolving-701-there-is-insufficient.html</feedburner:origLink></item><item><title>DATABASE_OBJECT_CHANGE_GROUP do not audit SP or other object</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/rhFi6VM3X7w/databaseobjectchangegroup-do-not-audit.html</link><category>sql server security</category><category>sql server 2005</category><category>Sql server 2008</category><category>database administration</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Sat, 29 Oct 2011 02:11:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-2396627865294379722</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;Deepak Kumar (friend of mine and founder of http://www.sqlknowledge.com ) &amp;nbsp;were chatting yesterday. We were discussing about audit feature in SQL 2008, Deepak has enabled this feature for one of his client since month. And when he was looking at the log he found that there were entries but they are related to Tables only, and not other objects like SP(s).&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;We were discussing and google about the same and found an entry in connect where in it was answered. &amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;If we need the other objects to be audited we have to add&amp;nbsp;&lt;/span&gt;&lt;span style="background-color: white; text-align: -webkit-auto;"&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;b style="font-style: italic;"&gt;SCHEMA_OBJECT_CHANGE_GROUP &lt;/b&gt;to the audit specification. Here is an excerpt from the connect:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;blockquote class="tr_bq"&gt;
&lt;span style="background-color: white; font-family: Verdana; font-size: 11px; text-align: -webkit-auto;"&gt;Thanks for your feedback. The behaviour you're seeing is by-design. In order to audit CREATE/DROP of an SP, you need to add the SCHEMA_OBJECT_CHANGE_GROUP to your audit specification. The DATABASE_OBJECT_CHANGE_GROUP is actually auditing the ALTER permission check on the SCHEMA as part of the CREATE statement.&lt;/span&gt;&lt;span style="background-color: white; text-align: -webkit-auto;"&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;You can find the complete entry and more information at &lt;a href="http://connect.microsoft.com/SQLServer/feedback/details/370103/database-object-change-group-audit-group-does-not-audit-drop-proc"&gt;connect article&lt;/a&gt; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com/" target="_blank"&gt;http://www.sql-server-citation.com&lt;/a&gt; )&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-2396627865294379722?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=rhFi6VM3X7w:Atnir97HW6M:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=rhFi6VM3X7w:Atnir97HW6M:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=rhFi6VM3X7w:Atnir97HW6M:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=rhFi6VM3X7w:Atnir97HW6M:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=rhFi6VM3X7w:Atnir97HW6M:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=rhFi6VM3X7w:Atnir97HW6M:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=rhFi6VM3X7w:Atnir97HW6M:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=rhFi6VM3X7w:Atnir97HW6M:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=rhFi6VM3X7w:Atnir97HW6M:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=rhFi6VM3X7w:Atnir97HW6M:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=rhFi6VM3X7w:Atnir97HW6M:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=rhFi6VM3X7w:Atnir97HW6M:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=rhFi6VM3X7w:Atnir97HW6M:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=rhFi6VM3X7w:Atnir97HW6M:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/rhFi6VM3X7w" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-10-29T14:42:02.715+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/10/databaseobjectchangegroup-do-not-audit.html</feedburner:origLink></item><item><title>Refresh QA Database with Manual Scripts</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/qabI89l5vo8/refresh-qa-database-with-manual-scripts.html</link><category>best practices</category><category>database administration</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Thu, 27 Oct 2011 21:33:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-1942695506315161023</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;Couple of week back Megha Sharma send me an email with a document attached, this document is all about how to refresh QA database with manual script. Here is the preview of the document, and the reason why we should follow the method in her own words:&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote class="tr_bq"&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;QA environment frequently needs Database refresh and hence
space on its disks. QA Database is refreshed from Production followed by a data
purge, which leaves a lot of free space in the database. In order to release
the free space, we follow database shrink command, a lengthy &amp;amp; single
thread I / O operation, also cause high data fragmentation.&lt;/span&gt;&lt;o:p&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/o:p&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;To avoid this resource &amp;amp; time consuming activity, we do
a Refresh Database with manual scripts, in which, we create a new database,
transfer tables, data &amp;amp; other objects via scripts.&lt;/span&gt;&lt;o:p&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/o:p&gt;&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;The Generate Scripts option of a database generates script
for the complete database and transfers data (using Insert into command, highly
logged), to avoid this we do a Select * into, to transfer table definition
&amp;amp; data (minimal logged &amp;amp; fast, being a bulk operation) &amp;amp; then
generate Table Objects (Keys, Constraints, Triggers, Indexes) via manual
scripts &amp;amp; other database objects (Views, Stored Procedures, Functions,
Users, Roles, Schemas) via generate scripts.&lt;/span&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;Sounds interesting ? Want to download the complete document ? &lt;a href="http://www.hemantgirisgoswami.com/SQLServerCitation/Downloads/Refresh_QA_Database_with_Manual_Scripts.doc"&gt;Download Link&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;Please post back your review in the comment section here.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com/"&gt;http://www.sql-server-citation.com &lt;/a&gt;)&lt;/span&gt;&lt;br /&gt;
&lt;div class="MsoNormal"&gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-1942695506315161023?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=qabI89l5vo8:6RNVdg-uFpc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=qabI89l5vo8:6RNVdg-uFpc:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=qabI89l5vo8:6RNVdg-uFpc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=qabI89l5vo8:6RNVdg-uFpc:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=qabI89l5vo8:6RNVdg-uFpc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=qabI89l5vo8:6RNVdg-uFpc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=qabI89l5vo8:6RNVdg-uFpc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=qabI89l5vo8:6RNVdg-uFpc:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=qabI89l5vo8:6RNVdg-uFpc:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=qabI89l5vo8:6RNVdg-uFpc:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=qabI89l5vo8:6RNVdg-uFpc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=qabI89l5vo8:6RNVdg-uFpc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=qabI89l5vo8:6RNVdg-uFpc:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=qabI89l5vo8:6RNVdg-uFpc:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/qabI89l5vo8" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-10-28T10:03:21.768+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/10/refresh-qa-database-with-manual-scripts.html</feedburner:origLink></item><item><title>workaround for orphaned users</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/BTqncmJe4o8/workaround-for-orphaned-users.html</link><category>database refresh</category><category>fixing orphaned users</category><category>orphaned users</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Tue, 27 Sep 2011 06:34:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-4280509723661113214</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span style="font-family: Trebuchet MS;"&gt;&lt;/span&gt;&lt;br /&gt;
The server principal&amp;nbsp; is not able to access the database&amp;nbsp; under the current security context, is the error message appears for those users who was able to access the database / application earlier especially&lt;span style="font-family: Trebuchet MS;"&gt; after refreshing database from production to dev, test or uat enviornment &lt;/span&gt;&lt;span style="font-family: Trebuchet MS;"&gt;when the correspondent login is dropped. &lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS;"&gt;The reason is that, when we restore the database the the SID for the user mismatches, and it became orphaned. The workaround for this issue is very simple, you will have execute the below code&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;pre class="sql" name="code"&gt; -- This part will report if there are orphaned users    &lt;br /&gt;USE 'yourdbname'    &lt;br /&gt;GO    &lt;br /&gt;sp_change_users_login     &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; @Action='Report'    &lt;br /&gt;GO    &lt;br /&gt;-- This part will fix orphaned users    &lt;br /&gt;USE 'yourdbname'    &lt;br /&gt;GO    &lt;br /&gt;sp_change_users_login     &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; @Action='update_one'    &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,@UserNamePattern='youruser'    &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,@LoginName='yourlogin'    &lt;br /&gt;GO&lt;br /&gt;&lt;/pre&gt;
&lt;br /&gt;
-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com/"&gt;http://www.sql-server-citation.com&lt;/a&gt; )&lt;/div&gt;
&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-4280509723661113214?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BTqncmJe4o8:PFMaA_3_9to:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BTqncmJe4o8:PFMaA_3_9to:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BTqncmJe4o8:PFMaA_3_9to:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BTqncmJe4o8:PFMaA_3_9to:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BTqncmJe4o8:PFMaA_3_9to:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=BTqncmJe4o8:PFMaA_3_9to:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BTqncmJe4o8:PFMaA_3_9to:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BTqncmJe4o8:PFMaA_3_9to:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=BTqncmJe4o8:PFMaA_3_9to:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BTqncmJe4o8:PFMaA_3_9to:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BTqncmJe4o8:PFMaA_3_9to:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=BTqncmJe4o8:PFMaA_3_9to:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BTqncmJe4o8:PFMaA_3_9to:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BTqncmJe4o8:PFMaA_3_9to:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/BTqncmJe4o8" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-09-27T19:22:05.277+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/09/workaround-for-orphaned-users.html</feedburner:origLink></item><item><title>SQL 2008 R2 Administration Cook Book</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/zcMAcId8-Bo/sql-2008-r2-administration-cook-book.html</link><category>best practices</category><category>sql server book</category><category>packt publishing</category><category>Sql server 2008</category><category>bradmcgehee.com</category><category>extremeexpert.com</category><category>vinod kumar</category><category>SQL Server MVP</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Mon, 26 Sep 2011 01:21:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-7507927439758787826</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span style="font-family: Trebuchet MS;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS;"&gt;Couple of week back I have received a special gift, from the person whom I admire as a elder bro and mentor – &lt;a href="http://sqlserver-qa.net/blogs/default.aspx" target="_blank"&gt;Satya SkJ&lt;/a&gt;. Recently he has written a cook book on SQL Server 2008 R2 Administration, forward written by &lt;a href="http://www.bradmcgehee.com/" target="_blank"&gt;MVP Brad McGehee&lt;/a&gt;, and reviewed by &lt;a href="http://blogs.extremeexperts.com/" target="_blank"&gt;Vinod Kumar M&lt;/a&gt; – the most admirable person in SQL Server Community in INDIA. I am very excited to read this book thoroughly, the thing I like most in every chapter is “How it works”&amp;nbsp; section. Very soon I will post detailed review for this book.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS;"&gt;You can find the detailed information about each chapter at the below location :&lt;/span&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_1" target="_blank"&gt;Chapter 1: Getting Started with SQL Server 2008 R2&lt;/a&gt;    &lt;br /&gt;
&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_2" target="_blank"&gt;&lt;/a&gt;&lt;a href="http://lh4.ggpht.com/-7BLtU8Fbpak/ToA1-jntdMI/AAAAAAAAD0o/90Iz5tJ11Dc/s1600-h/1445EN_Microsoft%252520SQL%252520Server%2525202008%252520R2%252520Administration%252520Cookbook%25255B3%25255D.jpg"&gt;&lt;img align="left" alt="1445EN_Microsoft SQL Server 2008 R2 Administration Cookbook" border="0" height="255" src="http://lh5.ggpht.com/-a3UmPYYNCto/ToA2BskaElI/AAAAAAAAD0s/MaNhSe8s2hE/1445EN_Microsoft%252520SQL%252520Server%2525202008%252520R2%252520Administration%252520Cookbook_thumb%25255B1%25255D.jpg?imgmax=800" style="background-image: none; border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline; float: left; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="1445EN_Microsoft SQL Server 2008 R2 Administration Cookbook" width="198" /&gt;&lt;/a&gt;
&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_2" target ="_blank"&gt;Chapter 2: Administrating the Core Database Engine&lt;/a&gt;    &lt;br /&gt;
&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_3" target="_blank"&gt;Chapter 3: Managing the Core Database Engine&lt;/a&gt;    &lt;br /&gt;
&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_4" target="_blank"&gt;Chapter 4: Administering Core Business Intelligence Services&lt;/a&gt;    &lt;br /&gt;
&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_5" target="_blank"&gt;Chapter 5: Managing Core SQL Server 2008 R2 Technologies&lt;/a&gt;    &lt;br /&gt;
&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_6" target="_blank"&gt;Chapter 6: Improving Availability and enhancing Programmability&lt;/a&gt;    &lt;br /&gt;
&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_7" target="_blank"&gt;Chapter 7: Implementing New Manageability Features and Practices&lt;/a&gt;    &lt;br /&gt;
&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_8" target="_blank"&gt;Chapter 8: Maintenance and Monitoring&lt;/a&gt;    &lt;br /&gt;
&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_9" target="_blank"&gt;Chapter 9: Troubleshooting&lt;/a&gt;    &lt;br /&gt;
&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_10" target="_blank"&gt;Chapter 10: Learning the Tricks of the Trade&lt;/a&gt;    &lt;br /&gt;
&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents#chapter_11" target="_blank"&gt;Appendix: More DBA Manageability Best Practices&lt;/a&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS;"&gt;Sounds interesting ? You can purchase the one for you at Link =&amp;gt; &lt;a href="https://www.packtpub.com/microsoft-sql-server-2008-r2-administration-cookbook/book#in_detail" target="_blank" title="https://www.packtpub.com/microsoft-sql-server-2008-r2-administration-cookbook/book#in_detail"&gt;https://www.packtpub.com/microsoft-sql-server-2008-r2-administration-cookbook/book#in_detail&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS;"&gt;-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com/"&gt;http://www.sql-server-citation.com&lt;/a&gt;) &lt;/span&gt;&lt;/div&gt;
&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-7507927439758787826?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=zcMAcId8-Bo:41-dmhyo5ro:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=zcMAcId8-Bo:41-dmhyo5ro:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=zcMAcId8-Bo:41-dmhyo5ro:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=zcMAcId8-Bo:41-dmhyo5ro:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=zcMAcId8-Bo:41-dmhyo5ro:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=zcMAcId8-Bo:41-dmhyo5ro:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=zcMAcId8-Bo:41-dmhyo5ro:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=zcMAcId8-Bo:41-dmhyo5ro:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=zcMAcId8-Bo:41-dmhyo5ro:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=zcMAcId8-Bo:41-dmhyo5ro:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=zcMAcId8-Bo:41-dmhyo5ro:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=zcMAcId8-Bo:41-dmhyo5ro:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=zcMAcId8-Bo:41-dmhyo5ro:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=zcMAcId8-Bo:41-dmhyo5ro:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/zcMAcId8-Bo" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-09-26T14:01:32.957+05:30</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-a3UmPYYNCto/ToA2BskaElI/AAAAAAAAD0s/MaNhSe8s2hE/s72-c/1445EN_Microsoft%252520SQL%252520Server%2525202008%252520R2%252520Administration%252520Cookbook_thumb%25255B1%25255D.jpg?imgmax=800" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/09/sql-2008-r2-administration-cook-book.html</feedburner:origLink></item><item><title>CU 16 for SQL Server 2008 SP1</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/7RDKWOjVQzw/cu-16-for-sql-server-2008-sp1.html</link><category>SQL News</category><category>Sql server 2008</category><category>hotfix</category><category>service pack</category><category>SQL Server ISM</category><category>cumulative pack for sql server</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Fri, 23 Sep 2011 07:51:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-7808087139133551512</guid><description>&lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;Microsoft has recently released a &lt;strong&gt;Cumulative Update (CU) # 16&lt;/strong&gt; for SQL Server 2008 SP1 which contains hotfixes which were resolved after SQL Server 2008 SP1; once you will install / apply this CU the server version would be &lt;strong&gt;10.00.2850.00&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;As always it is recommended that you test this CU in the development/test/QA environment first before you roll it out in production environment. &lt;/font&gt; Once you apply this CU, you might have to restart you server. &lt;/p&gt;  &lt;p&gt;Download =&amp;gt; &lt;a href="http://support.microsoft.com/kb/2582282/en-us" target="_blank"&gt;Cumulative Update # 16&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Find KB article which explains what is a different model for Incremental Servicing Model (ISM) like Critical On-Demand known as COD, On Demand known as OD, Cumulative Update known as CU and General Distribution Release known as GDR. Here is the reference link =&amp;gt; &lt;a href="http://support.microsoft.com/kb/935897" target="_blank"&gt;Incremental Servicing Model&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com"&gt;http://www.sql-server-citation.com&lt;/a&gt; )&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-7808087139133551512?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=7RDKWOjVQzw:k73z9KAADT0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=7RDKWOjVQzw:k73z9KAADT0:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=7RDKWOjVQzw:k73z9KAADT0:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=7RDKWOjVQzw:k73z9KAADT0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=7RDKWOjVQzw:k73z9KAADT0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=7RDKWOjVQzw:k73z9KAADT0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=7RDKWOjVQzw:k73z9KAADT0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=7RDKWOjVQzw:k73z9KAADT0:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=7RDKWOjVQzw:k73z9KAADT0:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=7RDKWOjVQzw:k73z9KAADT0:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=7RDKWOjVQzw:k73z9KAADT0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=7RDKWOjVQzw:k73z9KAADT0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=7RDKWOjVQzw:k73z9KAADT0:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=7RDKWOjVQzw:k73z9KAADT0:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/7RDKWOjVQzw" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-09-23T20:21:08.076+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/09/cu-16-for-sql-server-2008-sp1.html</feedburner:origLink></item><item><title>SQL Server DBA Quiz on BeyondRelational</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/ivrZVT2SF4g/sql-server-dba-quiz-on-beyondrelational.html</link><category>sql server dba quiz 2011</category><category>SQL Server MVP</category><category>jecob sebastian</category><category>Hemantgiri S. Goswami</category><category>beyondrelational</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Thu, 22 Sep 2011 00:13:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-1705814513699880776</guid><description>&lt;p&gt;&lt;font face="Trebuchet MS"&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;Friend of my mine and fellow MVP Jecob Sebastian is running SQL Server DBA Quiz 2011 on his community web site – &lt;a href="www.beyondrelational" target="_blank"&gt;BeyondRelational&lt;/a&gt;.&amp;#160; He asked me to submit question as a Quiz Master, so, here is my question for you all :&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;You have an SQL Server Integration Service (SSIS)&lt;/font&gt;&amp;#160; installed on some machine and you have client tool installed on your local desktop, when you tried to connect to the machine you have SSIS service running on from your local desktop you will get an error&lt;strong&gt; “RPC server is unavailable”&lt;/strong&gt; &lt;/p&gt;  &lt;p&gt;You will have to let us know what the root cause of this issue and how to resolved it. &lt;/p&gt;  &lt;p&gt;Know the answer already? &lt;/p&gt;  &lt;p&gt;&lt;a href="http://beyondrelational.com/quiz/sqlserver/dba/2011/questions/179/how-do-you-fix-rpc-server-is-unavailable-error-message.aspx" target="_blank"&gt;Click Here to Submit an Answer&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;-- Hemantgiri S. Goswami (http://www.sql-server –citation.com )&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-1705814513699880776?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=ivrZVT2SF4g:5pW-icoYcLI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=ivrZVT2SF4g:5pW-icoYcLI:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=ivrZVT2SF4g:5pW-icoYcLI:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=ivrZVT2SF4g:5pW-icoYcLI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=ivrZVT2SF4g:5pW-icoYcLI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=ivrZVT2SF4g:5pW-icoYcLI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=ivrZVT2SF4g:5pW-icoYcLI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=ivrZVT2SF4g:5pW-icoYcLI:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=ivrZVT2SF4g:5pW-icoYcLI:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=ivrZVT2SF4g:5pW-icoYcLI:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=ivrZVT2SF4g:5pW-icoYcLI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=ivrZVT2SF4g:5pW-icoYcLI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=ivrZVT2SF4g:5pW-icoYcLI:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=ivrZVT2SF4g:5pW-icoYcLI:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/ivrZVT2SF4g" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-09-22T12:43:45.991+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/09/sql-server-dba-quiz-on-beyondrelational.html</feedburner:origLink></item><item><title>SQL Server Wait Types in SQL 2008</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/SRc_N4JCBCs/sql-server-wait-types-in-sql-2008.html</link><category>latches</category><category>sql server 2005</category><category>Sql server 2008</category><category>performance tuning</category><category>pageio latch</category><category>wait types</category><category>microsoft sql server</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Wed, 21 Sep 2011 07:34:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-3097943572251414288</guid><description>&lt;p&gt;&lt;font face="Trebuchet MS"&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;While working on an assignment of troubleshooting performance issue few month back I have come across a situation where I have to provide good information about the different waittypes and what they do, while researching a good documentation on wait types I have found the most authentic information on PSS Engineer’s blog where Bob Ward has put them nicely. This blog was published in 2009 but its good to keep handy as reference.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;Most of the time wait type says us where the bottleneck are, if you wait types like IO_Completion, PAGE IO LATCH, this is indication for disk IO subsystem has some bottleneck. We have to use perfmon counter to verify this and then work around on resolving this issues.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;Let me quote some links for the further reading:&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;a title="http://blogs.msdn.com/b/psssql/archive/2009/11/03/the-sql-server-wait-type-repository.aspx" href="http://blogs.msdn.com/b/psssql/archive/2009/11/03/the-sql-server-wait-type-repository.aspx" target="_blank"&gt;http://blogs.msdn.com/b/psssql/archive/2009/11/03/the-sql-server-wait-type-repository.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a title="http://blogs.msdn.com/b/psssql/archive/2009/11/24/doctor-this-sql-server-appears-to-be-sick.aspx" href="http://blogs.msdn.com/b/psssql/archive/2009/11/24/doctor-this-sql-server-appears-to-be-sick.aspx" target="_blank"&gt;http://blogs.msdn.com/b/psssql/archive/2009/11/24/doctor-this-sql-server-appears-to-be-sick.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a title="http://support.microsoft.com/kb/822101" href="http://support.microsoft.com/kb/822101" target="_blank"&gt;http://support.microsoft.com/kb/822101&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a title="http://blogs.msdn.com/b/psssql/archive/2009/07/08/q-a-on-latches-in-the-sql-server-engine.aspx" href="http://blogs.msdn.com/b/psssql/archive/2009/07/08/q-a-on-latches-in-the-sql-server-engine.aspx" target="_blank"&gt;http://blogs.msdn.com/b/psssql/archive/2009/07/08/q-a-on-latches-in-the-sql-server-engine.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com"&gt;http://www.sql-server-citation.com&lt;/a&gt; )&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-3097943572251414288?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SRc_N4JCBCs:MRhq53XkwNg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SRc_N4JCBCs:MRhq53XkwNg:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SRc_N4JCBCs:MRhq53XkwNg:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SRc_N4JCBCs:MRhq53XkwNg:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SRc_N4JCBCs:MRhq53XkwNg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=SRc_N4JCBCs:MRhq53XkwNg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SRc_N4JCBCs:MRhq53XkwNg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SRc_N4JCBCs:MRhq53XkwNg:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=SRc_N4JCBCs:MRhq53XkwNg:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SRc_N4JCBCs:MRhq53XkwNg:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SRc_N4JCBCs:MRhq53XkwNg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=SRc_N4JCBCs:MRhq53XkwNg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SRc_N4JCBCs:MRhq53XkwNg:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=SRc_N4JCBCs:MRhq53XkwNg:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/SRc_N4JCBCs" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-09-21T20:04:43.664+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/09/sql-server-wait-types-in-sql-2008.html</feedburner:origLink></item><item><title>Overcome update conflict in P2P replication</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/oUhJ4qbR9Tw/overcome-update-conflict-in-p2p.html</link><category>Replication</category><category>peer- peer replication</category><category>sql server 2000</category><category>sql server high availability</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Sun, 18 Sep 2011 04:55:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-8507775723829239185</guid><description>&lt;p&gt;&lt;font size="2" face="Trebuchet MS"&gt;When we have Peer to Peer (P2P) replication in place on SQL Server 2008, probably we would see a conflict &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;1) conflict of type 'Update-Update' was detected at peer 2 between peer 1 (incoming)&lt;/p&gt;  &lt;p&gt;2) conflict of type 'Update-Delete’ was detected at peer 2 between peer 1 (incoming)&lt;/p&gt;  &lt;p&gt;Microsoft has confirmed that this is known issue with P2P replication, and Microsoft has released a fix for this with &lt;a href="http://support.microsoft.com/kb/973602/LN" target="_blank"&gt;Cumulative hot fix for SQL Server 2008 SP1&lt;/a&gt;. I am penning down some links for you as a point of reference for troubleshooting P2P conflict.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://replicationanswers.com/P2PHandlingConflictsAndErrors.asp" target="_blank"&gt;Paul Libson has wrote an excellent article on how to handle P2P replication&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;a title="http://support.microsoft.com/kb/973223" href="http://support.microsoft.com/kb/973223" target="_blank"&gt;http://support.microsoft.com/kb/973223&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/bb934199.aspx" target="_blank"&gt;http://technet.microsoft.com/en-us/library/bb934199.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ms147366.aspx" target="_blank"&gt;http://technet.microsoft.com/en-us/library/ms147366.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ms151865.aspx" target="_blank"&gt;http://technet.microsoft.com/en-us/library/ms151865.aspx&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com"&gt;http://www.sql-server-citation.com&lt;/a&gt; )&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-8507775723829239185?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=oUhJ4qbR9Tw:B1VRaLqUsV4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=oUhJ4qbR9Tw:B1VRaLqUsV4:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=oUhJ4qbR9Tw:B1VRaLqUsV4:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=oUhJ4qbR9Tw:B1VRaLqUsV4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=oUhJ4qbR9Tw:B1VRaLqUsV4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=oUhJ4qbR9Tw:B1VRaLqUsV4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=oUhJ4qbR9Tw:B1VRaLqUsV4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=oUhJ4qbR9Tw:B1VRaLqUsV4:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=oUhJ4qbR9Tw:B1VRaLqUsV4:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=oUhJ4qbR9Tw:B1VRaLqUsV4:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=oUhJ4qbR9Tw:B1VRaLqUsV4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=oUhJ4qbR9Tw:B1VRaLqUsV4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=oUhJ4qbR9Tw:B1VRaLqUsV4:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=oUhJ4qbR9Tw:B1VRaLqUsV4:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/oUhJ4qbR9Tw" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-09-18T17:25:46.470+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/09/overcome-update-conflict-in-p2p.html</feedburner:origLink></item><item><title>Script to Configuring Auto Growth to Fix MB</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/pBg3G4811G8/script-to-configuring-auto-growth-to.html</link><category>sql server 2005</category><category>Sql server 2008</category><category>configure auto growth in mb</category><category>auto growth</category><category>best practice</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Fri, 16 Sep 2011 06:08:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-4069628153684339235</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;Few month ago I have written a post about &lt;a href="http://www.sql-server-citation.com/2010/01/common-mistakes-in-sql-server-part-5.html" target="_blank"&gt;what is Auto Growth and what is the best practice for Auto Growth&lt;/a&gt;. In this post I have discussed about why should we have Auto Growth for databases set in a fixed MB instead in percentage and how it will impact us. &lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', sans-serif;"&gt;In this post, I am going to give you a script that will help you find the database files which have Auto Growth option set in percentage and alter them all to fixed MB in one go.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS';"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="csharpcode"&gt;
&lt;/div&gt;
&lt;pre class="alt"&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;pre class="sql" name="code"&gt;/* 
-- Created By: Hemantgiri S. Goswami
-- Date: 29th April 2011
-- Version: 1.0

*/

-- Creating the table to capture temporary data
IF EXISTS(SELECT name FROM sys.sysobjects WHERE name = N'ConfigAutoGrowth' AND xtype='U')
	DROP TABLE ConfigAutoGrowth
GO	
CREATE TABLE DBO.ConfigAutoGrowth
(
iDBID		INT,
sDBName		SYSNAME,
vFileName	VARCHAR(max),
vGrowthOption	VARCHAR(12)
)
PRINT 'Table ConfigAutoGrowth Created'
GO
-- Inserting data into staging table
INSERT INTO DBO.ConfigAutoGrowth
SELECT 
	SD.database_id, 
	SD.name,
	SF.name,
	--sf.fileid, 
	--SUSER_NAME(owner_sid),
	--recovery_model_desc,
	CASE SF.status &amp;amp; 0x100000
	WHEN 1048576 THEN 'Percentage'
	WHEN 0 THEN 'MB'
	END AS 'GROWTH Option'
FROM SYS.SYSALTFILES SF
JOIN 
SYS.DATABASES SD
ON 
SD.database_id = SF.dbid
GO

-- Dynamically alters the file to set auto growth option to fixed mb 
DECLARE @name VARCHAR ( max ) -- Database Name
DECLARE @dbid INT -- DBID
DECLARE @vFileName VARCHAR ( max ) -- Logical file name
DECLARE @vGrowthOption VARCHAR ( max ) -- Growth option
DECLARE @Query VARCHAR(max) -- Variable to store dynamic sql


DECLARE db_cursor CURSOR FOR
SELECT 
idbid,sdbname,vfilename,vgrowthoption
FROM configautogrowth
WHERE sdbname NOT IN ( 'master' , 'model' , 'msdb' , 'tempdb' ) 
AND vGrowthOption  = 'Percentage'

OPEN db_cursor
FETCH NEXT FROM db_cursor INTO @dbid,@name,@vfilename,@vgrowthoption  
WHILE @@FETCH_STATUS = 0
BEGIN
	PRINT 'Changing AutoGrowth option for database:- '+ UPPER(@name)
	SET @Query  = 'ALTER DATABASE '+ @name +' MODIFY FILE (NAME = '+@vFileName+',FILEGROWTH = 500MB)'
	EXECUTE(@Query)

FETCH NEXT FROM db_cursor INTO @dbid,@name,@vfilename,@vgrowthoption  
END
CLOSE db_cursor -- Closing the curson
DEALLOCATE db_cursor  -- deallocating the cursor

GO
-- Querying system views to see if the changes are applied
SELECT 
SD.database_id, 
SD.name,
SF.name,
--sf.fileid, 
--SUSER_NAME(owner_sid),
--recovery_model_desc,
CASE SF.STATUS 
&amp;amp; 0x100000
WHEN 1048576 THEN 
'Percentage'
WHEN 0 THEN 'MB'
END AS 'Growth_Option'
FROM SYS.SYSALTFILES SF
JOIN 
SYS.DATABASES SD
ON 
SD.database_id = SF.dbid
GO

--Dropping the staging table
DROP TABLE ConfigAutoGrowth 
GO
&lt;/pre&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', sans-serif;"&gt;Hope this helps!! &lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', sans-serif;"&gt;-- Hemantgiri S. Goswami

&lt;/span&gt;&lt;/div&gt;
&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-4069628153684339235?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=pBg3G4811G8:Ksyax6eAMvs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=pBg3G4811G8:Ksyax6eAMvs:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=pBg3G4811G8:Ksyax6eAMvs:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=pBg3G4811G8:Ksyax6eAMvs:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=pBg3G4811G8:Ksyax6eAMvs:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=pBg3G4811G8:Ksyax6eAMvs:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=pBg3G4811G8:Ksyax6eAMvs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=pBg3G4811G8:Ksyax6eAMvs:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=pBg3G4811G8:Ksyax6eAMvs:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=pBg3G4811G8:Ksyax6eAMvs:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=pBg3G4811G8:Ksyax6eAMvs:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=pBg3G4811G8:Ksyax6eAMvs:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=pBg3G4811G8:Ksyax6eAMvs:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=pBg3G4811G8:Ksyax6eAMvs:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/pBg3G4811G8" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-09-16T18:44:47.473+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/09/script-to-configuring-auto-growth-to.html</feedburner:origLink></item><item><title>Troubleshooting Oracle Link Server Issue</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/g_WXkgUF13U/troubleshooting-oracle-link-server.html</link><category>sql 2000</category><category>ms sql server 2005</category><category>troublshoot</category><category>Sql server 2008</category><category>ms dtc</category><category>database administration</category><category>link server</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Thu, 15 Sep 2011 06:13:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-6044623112653437914</guid><description>&lt;p&gt;&lt;font size="2" face="Trebuchet MS"&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;Most of the time, due to different business requirements we do have to work on various RDBMS systems, Oracle and MS SQL Server are the widely used and popular RDBMS. Sometimes we need to import/export data from/to SQL Server and for that we’ve to use Link Server feature of MS SQL Server.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="2" face="Trebuchet MS"&gt;In one of my recent project, a critical application has a job that pulls in the data from an Oracle database, we have a DTS Package and some job scheduled for this task. since couple of days we’ve observed below error message in the job history and while running ad-hoc queries. I am penning down the error message and the solution (rather, temporary workaround) we have found out :&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;1) The operation could not be performed because the OLE DB provider 'MSDAORA' was unable to begin a distributed transaction. &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;==&amp;gt; In this case, rebooting MS DTS service&amp;#160; helped us.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;2) The maximum number of active transactions that the MS DTC log file can accommodate has been exceeded.&amp;#160; You must increase the size of the MS DTC log file if you wish to initiate more concurrent transactions.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;==&amp;gt; In this case, increasing Log file size helped us.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh3.ggpht.com/-KoXD0Q8Lr88/TnH6A5T-0bI/AAAAAAAAD0g/K6vpIKh9jgg/s1600-h/MSDTS_Log%25255B4%25255D.jpg"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="MSDTS_Log" border="0" alt="MSDTS_Log" src="http://lh5.ggpht.com/-0vJDsZ9eOiM/TnH6B-VsDJI/AAAAAAAAD0k/Wvq5ZmvH9xk/MSDTS_Log_thumb%25255B2%25255D.jpg?imgmax=800" width="597" height="398" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;3)Server: Msg 7399, Level 16, State 1, Line 1      &lt;br /&gt;The OLE DB provider &amp;quot;MSDAORA&amp;quot; for linked server &amp;quot;OraLnkSvr&amp;quot; reported an error. The provider ran out of memory. &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Trebuchet MS"&gt;4) Server: Msg 7330, Level 16, State 1, Line 1      &lt;br /&gt;Cannot fetch a row from OLE DB provider &amp;quot;MSDAORA&amp;quot; for linked server &amp;quot;OraLnkSvr&amp;quot;.       &lt;br /&gt;OLE DB provider &amp;quot;MSDAORA&amp;quot; for linked server &amp;quot;OraLnkSvr&amp;quot; returned message &amp;quot;Out of memory.&amp;quot;.       &lt;br /&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;==&amp;gt; In case 3 &amp;amp; 4, rebooting SQL Server service helped us.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Hope this helps.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;-- Hemantgiri S. Goswami (&lt;a href="http://www.sql-server-citation.com"&gt;http://www.sql-server-citation.com&lt;/a&gt; )&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-6044623112653437914?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=g_WXkgUF13U:wXm264bl0g0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=g_WXkgUF13U:wXm264bl0g0:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=g_WXkgUF13U:wXm264bl0g0:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=g_WXkgUF13U:wXm264bl0g0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=g_WXkgUF13U:wXm264bl0g0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=g_WXkgUF13U:wXm264bl0g0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=g_WXkgUF13U:wXm264bl0g0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=g_WXkgUF13U:wXm264bl0g0:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=g_WXkgUF13U:wXm264bl0g0:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=g_WXkgUF13U:wXm264bl0g0:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=g_WXkgUF13U:wXm264bl0g0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=g_WXkgUF13U:wXm264bl0g0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=g_WXkgUF13U:wXm264bl0g0:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=g_WXkgUF13U:wXm264bl0g0:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/g_WXkgUF13U" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-09-15T18:43:44.413+05:30</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-0vJDsZ9eOiM/TnH6B-VsDJI/AAAAAAAAD0k/Wvq5ZmvH9xk/s72-c/MSDTS_Log_thumb%25255B2%25255D.jpg?imgmax=800" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/09/troubleshooting-oracle-link-server.html</feedburner:origLink></item><item><title>Checking DB Mirroring Status</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/AV1YWW55xTo/checking-db-mirroring-status.html</link><category>High Availability</category><category>sql 2008</category><category>database mirroring</category><category>mirroring status</category><category>sql 2005</category><category>Book on SQL Server 2008</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Wed, 14 Sep 2011 00:16:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-2049433658944499507</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;span style="font-family: 'Trebuchet MS';"&gt;Often I see a question in community on how to quickly check the status of the database mirroring, sometime in busy environment and busy server launching database mirroring keep us waiting for a while, so is there a way we can check database mirroring status ?&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS';"&gt;Yes, of course we do have; execute below statement and you will have a status of the database mirroring for all the database you have configured mirroring on :&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;pre class="sql" name="code"&gt;SELECT DB_NAME(database_id),   
mirroring_role_desc,    
mirroring_state_desc    
FROM sys.database_mirroring    
WHERE mirroring_guid IS NOT NULL; &lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', sans-serif;"&gt;Let me know if you are looking some specific code, and I will try to post it here!!&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Trebuchet MS', sans-serif;"&gt;- Hemantgiri S. Goswami (http://www.sql-server-citation)&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-2049433658944499507?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=AV1YWW55xTo:-lIT_JuwJOo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=AV1YWW55xTo:-lIT_JuwJOo:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=AV1YWW55xTo:-lIT_JuwJOo:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=AV1YWW55xTo:-lIT_JuwJOo:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=AV1YWW55xTo:-lIT_JuwJOo:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=AV1YWW55xTo:-lIT_JuwJOo:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=AV1YWW55xTo:-lIT_JuwJOo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=AV1YWW55xTo:-lIT_JuwJOo:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=AV1YWW55xTo:-lIT_JuwJOo:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=AV1YWW55xTo:-lIT_JuwJOo:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=AV1YWW55xTo:-lIT_JuwJOo:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=AV1YWW55xTo:-lIT_JuwJOo:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=AV1YWW55xTo:-lIT_JuwJOo:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=AV1YWW55xTo:-lIT_JuwJOo:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/AV1YWW55xTo" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-09-14T12:57:09.256+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/09/checking-db-mirroring-status.html</feedburner:origLink></item><item><title>Accessing SSIS on a Remote Server</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/BUrGWw_M2uo/accessing-ssis-on-remote-server.html</link><category>sql developers</category><category>Sql server 2008</category><category>access denied for SSIS</category><category>ssis developer</category><category>SSIS on Remote</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Fri, 26 Aug 2011 22:20:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-7780272818224195066</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;span style="font-family: Trebuchet MS;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS; font-size: small;"&gt;In one of my recent assignment I was asked to help developers who were not able to work on SSIS on a remote computer, whenever they made an attempt to connect to SSIS on Remote server they were getting “Access is Denied” error. Researching bit on this I come across an article on MSDN which help me resolve this issue – this issue is all about a DCOM Permission.&amp;nbsp; &lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Trebuchet MS;"&gt;Here are the steps which helped me resolve this issue by granting necessary permission and adding developer user[s] or group for DCOM:&lt;/span&gt;&lt;br /&gt;
1) Open Component Services MMC Snap-in by Open Control Panel –&amp;gt; Administrative Tools –&amp;gt; Component Services &lt;br /&gt;
2) Expand Component Services node –&amp;gt; Expand Computers –&amp;gt; Expand My Computer and click DCOM Config &lt;br /&gt;
3) Select DCOM Config and it will display the sub list in the right pane, select MsDTSServer100 &lt;br /&gt;
&lt;a href="http://lh3.ggpht.com/-lBX_YY7RklU/Tlh-ot-ouOI/AAAAAAAAD0I/PaT_904WyP8/s1600-h/MsDTSServer100%25255B5%25255D.jpg"&gt;&lt;img alt="MsDTSServer100" border="0" height="344" src="http://lh5.ggpht.com/-nrZ1BhHjCW4/Tlh-pa-nb0I/AAAAAAAAD0M/h5VwEERNkSs/MsDTSServer100_thumb%25255B3%25255D.jpg?imgmax=800" style="background-image: none; border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="MsDTSServer100" width="591" /&gt;&lt;/a&gt;&lt;br /&gt;
4) Right click on MsDTSServer100 and select Security tab&lt;br /&gt;
&lt;a href="http://lh5.ggpht.com/-sGIOrXHODTg/Tlh-qUjrb-I/AAAAAAAAD0Q/SRl2j2c_UPI/s1600-h/MsDTSServer100_Properties%25255B5%25255D.jpg"&gt;&lt;img alt="MsDTSServer100_Properties" border="0" height="455" src="http://lh4.ggpht.com/-UirRQ1exJbY/Tlh-rQfGd8I/AAAAAAAAD0U/050N_VzNoHU/MsDTSServer100_Properties_thumb%25255B3%25255D.jpg?imgmax=800" style="background-image: none; border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="MsDTSServer100_Properties" width="598" /&gt;&lt;/a&gt;&lt;br /&gt;
5) As shown in the above snapshot assign proper permission to user[s] or user group by clicking on Edit button under (you have to select Customize before you click Edit button)&lt;br /&gt;
&lt;blockquote&gt;a) Launch and Activation Permissions&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a.1) Local Launch&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; a.2)&amp;nbsp; Remote Launch&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; a.3) Local Activation&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; a.4) Remote Activation&lt;br /&gt;
b) Access Permissions&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; b.1) Local Access&lt;br /&gt;
&amp;nbsp;&amp;nbsp; b.2) Remote Access&lt;br /&gt;
c) Configuration Permissions&lt;br /&gt;
&amp;nbsp;&amp;nbsp; c.1)&amp;nbsp; Full Control&lt;br /&gt;
&amp;nbsp;&amp;nbsp; c.2) Read&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; c.3) Special Permission&lt;/blockquote&gt;&lt;br /&gt;
6) Assign the appropriate permission on “My Computer” under Component Services&lt;br /&gt;
7) In MSDB database grant db_dtsoperator permission to user[s] or user group&lt;br /&gt;
8) Restart the Integration Services services, and you are done. &lt;br /&gt;
source : &lt;a href="http://msdn.microsoft.com/en-us/library/aa337083.aspx" title="http://msdn.microsoft.com/en-us/library/aa337083.aspx"&gt;http://msdn.microsoft.com/en-us/library/aa337083.aspx&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-7780272818224195066?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BUrGWw_M2uo:2yObZSWEodE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BUrGWw_M2uo:2yObZSWEodE:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BUrGWw_M2uo:2yObZSWEodE:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BUrGWw_M2uo:2yObZSWEodE:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BUrGWw_M2uo:2yObZSWEodE:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=BUrGWw_M2uo:2yObZSWEodE:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BUrGWw_M2uo:2yObZSWEodE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BUrGWw_M2uo:2yObZSWEodE:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=BUrGWw_M2uo:2yObZSWEodE:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BUrGWw_M2uo:2yObZSWEodE:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BUrGWw_M2uo:2yObZSWEodE:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=BUrGWw_M2uo:2yObZSWEodE:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BUrGWw_M2uo:2yObZSWEodE:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=BUrGWw_M2uo:2yObZSWEodE:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/BUrGWw_M2uo" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-08-27T10:56:55.346+05:30</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-nrZ1BhHjCW4/Tlh-pa-nb0I/AAAAAAAAD0M/h5VwEERNkSs/s72-c/MsDTSServer100_thumb%25255B3%25255D.jpg?imgmax=800" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/08/accessing-ssis-on-remote-server.html</feedburner:origLink></item><item><title>Winner of the contest</title><link>http://feedproxy.google.com/~r/SqlServerCitation/~3/aDQ8Mk77w6c/winner-of-contest.html</link><category>Replication</category><category>High Availability</category><category>Clustering</category><category>database mirroring</category><category>packt publication</category><category>SQL Server MVP</category><category>cluster resources</category><category>Log Shipping</category><category>Book on SQL Server 2008</category><author>noreply@blogger.com (Hemantgiri S. Goswami)</author><pubDate>Thu, 05 May 2011 05:04:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8332641.post-6198520314183525122</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif;"&gt;Dear Readers,&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif;"&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif;"&gt;I am very please to announce winner of the &lt;a href="http://www.sql-server-citation.com/2011/03/describe-ha-and-dr-strategy-and-win.html"&gt;contest&lt;/a&gt; about describing best HA &amp;amp; DR solution. The contest was successful, there are about&amp;nbsp; 5 entries I have get from various&amp;nbsp; sources like linkedin and email, I would like to thank all the participant and readers. The winner is &lt;a href="http://www.linkedin.com/pub/dave-thomas/a/747/595"&gt;Dave Thomas&lt;/a&gt;.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif;"&gt;My apologies, I suppose to declare winner on 25th April but could not able to make it.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;,sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8332641-6198520314183525122?l=www.sql-server-citation.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aDQ8Mk77w6c:QjQAze4DUJI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aDQ8Mk77w6c:QjQAze4DUJI:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aDQ8Mk77w6c:QjQAze4DUJI:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aDQ8Mk77w6c:QjQAze4DUJI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aDQ8Mk77w6c:QjQAze4DUJI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=aDQ8Mk77w6c:QjQAze4DUJI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aDQ8Mk77w6c:QjQAze4DUJI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aDQ8Mk77w6c:QjQAze4DUJI:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=aDQ8Mk77w6c:QjQAze4DUJI:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aDQ8Mk77w6c:QjQAze4DUJI:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aDQ8Mk77w6c:QjQAze4DUJI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?i=aDQ8Mk77w6c:QjQAze4DUJI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aDQ8Mk77w6c:QjQAze4DUJI:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/SqlServerCitation?a=aDQ8Mk77w6c:QjQAze4DUJI:nQ_hWtDbxek"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SqlServerCitation?d=nQ_hWtDbxek" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SqlServerCitation/~4/aDQ8Mk77w6c" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2011-05-05T17:34:23.418+05:30</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://www.sql-server-citation.com/2011/05/winner-of-contest.html</feedburner:origLink></item></channel></rss>

