<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Database Explorer</title>
	<atom:link href="http://databaseexplorer.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://databaseexplorer.wordpress.com</link>
	<description>Database Explorer</description>
	<lastBuildDate>Sat, 24 Oct 2009 13:03:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='databaseexplorer.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Database Explorer</title>
		<link>http://databaseexplorer.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://databaseexplorer.wordpress.com/osd.xml" title="Database Explorer" />
	<atom:link rel='hub' href='http://databaseexplorer.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Table to Insert Incremental Values</title>
		<link>http://databaseexplorer.wordpress.com/2009/10/22/table-to-insert-incremental-values/</link>
		<comments>http://databaseexplorer.wordpress.com/2009/10/22/table-to-insert-incremental-values/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 16:40:00 +0000</pubDate>
		<dc:creator>databaseexplorer</dc:creator>
				<category><![CDATA[Data Warehousing in SQL Server]]></category>

		<guid isPermaLink="false">http://databaseexplorer.wordpress.com/2009/10/22/table-to-insert-incremental-values</guid>
		<description><![CDATA[Objective: To populate multiple incremental values in table.Create Table test (val float)insert into test values (0.001)declare @t floatselect @t = max(val) from testInsert into testselect val + @t from test OrDECLARE @idt floatSET @idt = 0WHILE (@idt &#60; 10)BEGINSELECT @idt = @idt + 0.001insert into tablename (columnname) select @idtEND or DECLARE @idt intSET @idt = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=236&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><u><span style="color:#ff0000;">Objective: To populate multiple incremental values in table.</span></u></strong><br /><strong><u><span style="color:#ff0000;"></span></u></strong><br />Create Table test (val float)<br />insert into test values (0.001)<br />declare @t float<br />select @t = max(val) from test<br />Insert into test<br />select val + @t from test</p>
<p><span style="color:#ff0000;">Or</span><br />DECLARE @idt float<br />SET @idt = 0<br />WHILE (@idt &lt; 10)<br />BEGIN<br />SELECT @idt = @idt + 0.001<br />insert into tablename (columnname) <br />select @idt<br />END</p>
<p>or</p>
<p>DECLARE @idt int<br />SET @idt = 0<br />WHILE (@idt &lt; 100)<br />BEGIN<br />SELECT @idt = @idt + 1<br />insert into tablename (columnname) <br />select @idt<br />END</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/databaseexplorer.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/databaseexplorer.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/databaseexplorer.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/databaseexplorer.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/databaseexplorer.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/databaseexplorer.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/databaseexplorer.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/databaseexplorer.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/databaseexplorer.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/databaseexplorer.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/databaseexplorer.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/databaseexplorer.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/databaseexplorer.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/databaseexplorer.wordpress.com/236/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=236&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://databaseexplorer.wordpress.com/2009/10/22/table-to-insert-incremental-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a3056022cb2e4ca66dbf9bef6a840eb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">databaseexplorer</media:title>
		</media:content>
	</item>
		<item>
		<title>&gt;Export Import Tool &#8211; Microsoft VSS to Vault Source Gear</title>
		<link>http://databaseexplorer.wordpress.com/2009/09/22/export-import-tool-microsoft-vss-to-vault-source-gear/</link>
		<comments>http://databaseexplorer.wordpress.com/2009/09/22/export-import-tool-microsoft-vss-to-vault-source-gear/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 16:12:00 +0000</pubDate>
		<dc:creator>databaseexplorer</dc:creator>
				<category><![CDATA[Source Safe]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=114</guid>
		<description><![CDATA[&#62;Objective: To import all files from Microsoft to Source Gear Install tools from source gear website http://www.sourcegear.com/vault/downloads2.html Installation will carry forward like below from VSS Import Tool Give the path where the file comes from. For example the network path from microsoft Visual source safe and their credentials The below screen shot is vault admin [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=114&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&gt;Objective: To import all files from Microsoft to Source Gear</p>
<p>Install tools from source gear website</p>
<p><a href="http://www.sourcegear.com/vault/downloads2.html">http://www.sourcegear.com/vault/downloads2.html</a></p>
<p><a href="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4ldskgrI/AAAAAAAAAls/FfJylhJL-Ao/s1600-h/1.png"><img style="cursor:hand;width:400px;height:387px;" src="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4ldskgrI/AAAAAAAAAls/FfJylhJL-Ao/s400/1.png" border="0" alt="" /></a>
<div><a href="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4ldskgrI/AAAAAAAAAls/FfJylhJL-Ao/s1600-h/1.png"></a>Installation will carry forward like below from VSS Import Tool<br /><a href="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4gzalTYI/AAAAAAAAAlk/KdWy3-0jDPI/s1600-h/002.png"><img style="cursor:hand;width:400px;height:310px;" src="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4gzalTYI/AAAAAAAAAlk/KdWy3-0jDPI/s400/002.png" border="0" alt="" /></a><br /><a href="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4gmbjy7I/AAAAAAAAAlc/5hmzr9MIL7M/s1600-h/003.png"><img style="cursor:hand;width:400px;height:303px;" src="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4gmbjy7I/AAAAAAAAAlc/5hmzr9MIL7M/s400/003.png" border="0" alt="" /></a><br /><a href="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4gY9oVrI/AAAAAAAAAlU/xzQCApt5SrI/s1600-h/004.png"><img style="cursor:hand;width:400px;height:308px;" src="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4gY9oVrI/AAAAAAAAAlU/xzQCApt5SrI/s400/004.png" border="0" alt="" /></a><br /><a href="http://2.bp.blogspot.com/_LJunTh_Zfu8/Srj4f29EhgI/AAAAAAAAAlM/o-55JQBit-E/s1600-h/005.png"><img style="cursor:hand;width:400px;height:309px;" src="http://2.bp.blogspot.com/_LJunTh_Zfu8/Srj4f29EhgI/AAAAAAAAAlM/o-55JQBit-E/s400/005.png" border="0" alt="" /></a><br /><a href="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4Ujcr5pI/AAAAAAAAAk8/X9ymxkiW4_8/s1600-h/006.png"><img style="cursor:hand;width:400px;height:309px;" src="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4Ujcr5pI/AAAAAAAAAk8/X9ymxkiW4_8/s400/006.png" border="0" alt="" /></a><br /><a href="http://2.bp.blogspot.com/_LJunTh_Zfu8/Srj4Udz6t5I/AAAAAAAAAk0/OI0KxQCHuiA/s1600-h/007.png"><img style="cursor:hand;width:325px;height:400px;" src="http://2.bp.blogspot.com/_LJunTh_Zfu8/Srj4Udz6t5I/AAAAAAAAAk0/OI0KxQCHuiA/s400/007.png" border="0" alt="" /></a><br /><a href="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4T3zlweI/AAAAAAAAAks/vPeNQNt9c2M/s1600-h/008.png"><img style="cursor:hand;width:400px;height:279px;" src="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4T3zlweI/AAAAAAAAAks/vPeNQNt9c2M/s400/008.png" border="0" alt="" /></a></div>
<div><a href="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4T3zlweI/AAAAAAAAAks/vPeNQNt9c2M/s1600-h/008.png"></a>Give the path where the file comes from. For example the network path from microsoft Visual source safe and their credentials<br /><a href="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4TpX_d2I/AAAAAAAAAkk/RyNgqSvZFvM/s1600-h/013.png"><img style="cursor:hand;width:400px;height:279px;" src="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4TpX_d2I/AAAAAAAAAkk/RyNgqSvZFvM/s400/013.png" border="0" alt="" /></a></div>
<div><a href="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4TpX_d2I/AAAAAAAAAkk/RyNgqSvZFvM/s1600-h/013.png"></a>The below screen shot is vault admin username and password<br /><a href="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4TRsTbVI/AAAAAAAAAkc/i4G3Tm_mf6A/s1600-h/014.png"><img style="cursor:hand;width:400px;height:279px;" src="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4TRsTbVI/AAAAAAAAAkc/i4G3Tm_mf6A/s400/014.png" border="0" alt="" /></a><br /><a href="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4EX2LXEI/AAAAAAAAAkU/szhMmp_3mMs/s1600-h/015.png"><img style="cursor:hand;width:400px;height:279px;" src="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4EX2LXEI/AAAAAAAAAkU/szhMmp_3mMs/s400/015.png" border="0" alt="" /></a><br /><a href="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4D0gBlOI/AAAAAAAAAkM/xjBt8ZYpWO0/s1600-h/016.png"><img style="cursor:hand;width:400px;height:279px;" src="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4D0gBlOI/AAAAAAAAAkM/xjBt8ZYpWO0/s400/016.png" border="0" alt="" /></a></div>
<div><a href="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4D0gBlOI/AAAAAAAAAkM/xjBt8ZYpWO0/s1600-h/016.png"></a>click on Continue when the error raises something like below:<br /><a href="http://1.bp.blogspot.com/_LJunTh_Zfu8/Srj4C2-vAwI/AAAAAAAAAkE/JkGSbQqx0P0/s1600-h/017.png"><img style="cursor:hand;width:400px;height:279px;" src="http://1.bp.blogspot.com/_LJunTh_Zfu8/Srj4C2-vAwI/AAAAAAAAAkE/JkGSbQqx0P0/s400/017.png" border="0" alt="" /></a><br /><a href="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4CSSkkaI/AAAAAAAAAj8/eZwD8cV3vMc/s1600-h/018.png"><img style="cursor:hand;width:400px;height:279px;" src="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4CSSkkaI/AAAAAAAAAj8/eZwD8cV3vMc/s400/018.png" border="0" alt="" /></a><br /><a href="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4Bw6CuWI/AAAAAAAAAj0/j6fRoJ4sx_s/s1600-h/019.png"><img style="cursor:hand;width:400px;height:279px;" src="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4Bw6CuWI/AAAAAAAAAj0/j6fRoJ4sx_s/s400/019.png" border="0" alt="" /></a></div>
<div></div>
<div>once examining the project, all microsoft VSS will be imported to Source Gear.</div>
<div></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/databaseexplorer.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/databaseexplorer.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/databaseexplorer.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/databaseexplorer.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/databaseexplorer.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/databaseexplorer.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/databaseexplorer.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/databaseexplorer.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/databaseexplorer.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/databaseexplorer.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/databaseexplorer.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/databaseexplorer.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/databaseexplorer.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/databaseexplorer.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=114&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://databaseexplorer.wordpress.com/2009/09/22/export-import-tool-microsoft-vss-to-vault-source-gear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a3056022cb2e4ca66dbf9bef6a840eb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">databaseexplorer</media:title>
		</media:content>

		<media:content url="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4ldskgrI/AAAAAAAAAls/FfJylhJL-Ao/s400/1.png" medium="image" />

		<media:content url="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4gzalTYI/AAAAAAAAAlk/KdWy3-0jDPI/s400/002.png" medium="image" />

		<media:content url="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4gmbjy7I/AAAAAAAAAlc/5hmzr9MIL7M/s400/003.png" medium="image" />

		<media:content url="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4gY9oVrI/AAAAAAAAAlU/xzQCApt5SrI/s400/004.png" medium="image" />

		<media:content url="http://2.bp.blogspot.com/_LJunTh_Zfu8/Srj4f29EhgI/AAAAAAAAAlM/o-55JQBit-E/s400/005.png" medium="image" />

		<media:content url="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4Ujcr5pI/AAAAAAAAAk8/X9ymxkiW4_8/s400/006.png" medium="image" />

		<media:content url="http://2.bp.blogspot.com/_LJunTh_Zfu8/Srj4Udz6t5I/AAAAAAAAAk0/OI0KxQCHuiA/s400/007.png" medium="image" />

		<media:content url="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4T3zlweI/AAAAAAAAAks/vPeNQNt9c2M/s400/008.png" medium="image" />

		<media:content url="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4TpX_d2I/AAAAAAAAAkk/RyNgqSvZFvM/s400/013.png" medium="image" />

		<media:content url="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4TRsTbVI/AAAAAAAAAkc/i4G3Tm_mf6A/s400/014.png" medium="image" />

		<media:content url="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4EX2LXEI/AAAAAAAAAkU/szhMmp_3mMs/s400/015.png" medium="image" />

		<media:content url="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj4D0gBlOI/AAAAAAAAAkM/xjBt8ZYpWO0/s400/016.png" medium="image" />

		<media:content url="http://1.bp.blogspot.com/_LJunTh_Zfu8/Srj4C2-vAwI/AAAAAAAAAkE/JkGSbQqx0P0/s400/017.png" medium="image" />

		<media:content url="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4CSSkkaI/AAAAAAAAAj8/eZwD8cV3vMc/s400/018.png" medium="image" />

		<media:content url="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj4Bw6CuWI/AAAAAAAAAj0/j6fRoJ4sx_s/s400/019.png" medium="image" />
	</item>
		<item>
		<title>&gt;Vault Source Gear Installation</title>
		<link>http://databaseexplorer.wordpress.com/2009/09/22/vault-source-gear-installation/</link>
		<comments>http://databaseexplorer.wordpress.com/2009/09/22/vault-source-gear-installation/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 16:02:00 +0000</pubDate>
		<dc:creator>databaseexplorer</dc:creator>
				<category><![CDATA[Source Safe]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=113</guid>
		<description><![CDATA[&#62;Objective: To install source gear in windows 2003 server http://www.sourcegear.com/vault/support/install/ Source Gear File for installing ver 4 Once installed, you can access through Program Files from Windows OS The below screen shot is the admin page where you can manage everything (For eg. Add users, import, export etc)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=113&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&gt;Objective: To install source gear in windows 2003 server</p>
<p><a href="http://www.sourcegear.com/vault/support/install/">http://www.sourcegear.com/vault/support/install/</a></p>
<p>Source Gear File for installing ver 4</p>
<p><a href="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj16m0fhRI/AAAAAAAAAjc/uPQbQJmeK0g/s1600-h/server1.png"><img style="cursor:hand;width:400px;height:151px;" src="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj16m0fhRI/AAAAAAAAAjc/uPQbQJmeK0g/s400/server1.png" border="0" alt="" /></a></p>
<p>Once installed, you can access through Program Files from Windows OS</p>
<p><a href="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj2BjT6uHI/AAAAAAAAAjk/W-iQts8QJhM/s1600-h/server002.png"><img style="cursor:hand;width:393px;height:400px;" src="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj2BjT6uHI/AAAAAAAAAjk/W-iQts8QJhM/s400/server002.png" border="0" alt="" /></a></p>
<p>The below screen shot is the admin page where you can manage everything (For eg. Add users, import, export etc)<br /><a href="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj2B1mG1JI/AAAAAAAAAjs/1rynvIMHjhc/s1600-h/server003.png"><img style="cursor:hand;width:400px;height:174px;" src="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj2B1mG1JI/AAAAAAAAAjs/1rynvIMHjhc/s400/server003.png" border="0" alt="" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/databaseexplorer.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/databaseexplorer.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/databaseexplorer.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/databaseexplorer.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/databaseexplorer.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/databaseexplorer.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/databaseexplorer.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/databaseexplorer.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/databaseexplorer.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/databaseexplorer.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/databaseexplorer.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/databaseexplorer.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/databaseexplorer.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/databaseexplorer.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=113&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://databaseexplorer.wordpress.com/2009/09/22/vault-source-gear-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a3056022cb2e4ca66dbf9bef6a840eb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">databaseexplorer</media:title>
		</media:content>

		<media:content url="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj16m0fhRI/AAAAAAAAAjc/uPQbQJmeK0g/s400/server1.png" medium="image" />

		<media:content url="http://3.bp.blogspot.com/_LJunTh_Zfu8/Srj2BjT6uHI/AAAAAAAAAjk/W-iQts8QJhM/s400/server002.png" medium="image" />

		<media:content url="http://4.bp.blogspot.com/_LJunTh_Zfu8/Srj2B1mG1JI/AAAAAAAAAjs/1rynvIMHjhc/s400/server003.png" medium="image" />
	</item>
		<item>
		<title>Export Import Tool &#8211; Microsoft VSS to Vault Source Gear</title>
		<link>http://databaseexplorer.wordpress.com/2009/09/22/export-import-tool-microsoft-vss-to-vault-source-gear-2/</link>
		<comments>http://databaseexplorer.wordpress.com/2009/09/22/export-import-tool-microsoft-vss-to-vault-source-gear-2/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 16:12:00 +0000</pubDate>
		<dc:creator>databaseexplorer</dc:creator>
				<category><![CDATA[Source Safe]]></category>

		<guid isPermaLink="false">http://databaseexplorer.wordpress.com/2009/09/22/export-import-tool-microsoft-vss-to-vault-source-gear-2</guid>
		<description><![CDATA[Objective: To import all files from Microsoft to Source Gear Install tools from source gear website http://www.sourcegear.com/vault/downloads2.html Installation will carry forward like below from VSS Import Tool Give the path where the file comes from. For example the network path from microsoft Visual source safe and their credentials The below screen shot is vault admin [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=235&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Objective: To import all files from Microsoft to Source Gear</p>
<p>Install tools from source gear website</p>
<p><a href="http://www.sourcegear.com/vault/downloads2.html">http://www.sourcegear.com/vault/downloads2.html</a></p>
<p><a href="http://databaseexplorer.files.wordpress.com/2009/09/1.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/1.png?w=300" border="0" alt="" /></a>
<div><a href="http://databaseexplorer.files.wordpress.com/2009/09/1.png"></a>Installation will carry forward like below from VSS Import Tool<br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/002.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/002.png?w=300" border="0" alt="" /></a><br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/003.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/003.png?w=300" border="0" alt="" /></a><br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/004.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/004.png?w=300" border="0" alt="" /></a><br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/005.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/005.png?w=300" border="0" alt="" /></a><br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/006.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/006.png?w=300" border="0" alt="" /></a><br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/007.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/007.png?w=243" border="0" alt="" /></a><br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/008.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/008.png?w=300" border="0" alt="" /></a></div>
<div><a href="http://databaseexplorer.files.wordpress.com/2009/09/008.png"></a>Give the path where the file comes from. For example the network path from microsoft Visual source safe and their credentials<br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/013.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/013.png?w=300" border="0" alt="" /></a></div>
<div><a href="http://databaseexplorer.files.wordpress.com/2009/09/013.png"></a>The below screen shot is vault admin username and password<br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/014.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/014.png?w=300" border="0" alt="" /></a><br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/015.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/015.png?w=300" border="0" alt="" /></a><br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/016.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/016.png?w=300" border="0" alt="" /></a></div>
<div><a href="http://databaseexplorer.files.wordpress.com/2009/09/016.png"></a>click on Continue when the error raises something like below:<br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/017.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/017.png?w=300" border="0" alt="" /></a><br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/018.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/018.png?w=300" border="0" alt="" /></a><br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/019.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/019.png?w=300" border="0" alt="" /></a></div>
<div></div>
<div>once examining the project, all microsoft VSS will be imported to Source Gear.</div>
<div></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/databaseexplorer.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/databaseexplorer.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/databaseexplorer.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/databaseexplorer.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/databaseexplorer.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/databaseexplorer.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/databaseexplorer.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/databaseexplorer.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/databaseexplorer.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/databaseexplorer.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/databaseexplorer.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/databaseexplorer.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/databaseexplorer.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/databaseexplorer.wordpress.com/235/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=235&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://databaseexplorer.wordpress.com/2009/09/22/export-import-tool-microsoft-vss-to-vault-source-gear-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a3056022cb2e4ca66dbf9bef6a840eb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">databaseexplorer</media:title>
		</media:content>

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/1.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/002.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/003.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/004.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/005.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/006.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/007.png?w=243" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/008.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/013.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/014.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/015.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/016.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/017.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/018.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/019.png?w=300" medium="image" />
	</item>
		<item>
		<title>Vault Source Gear Installation</title>
		<link>http://databaseexplorer.wordpress.com/2009/09/22/vault-source-gear-installation-2/</link>
		<comments>http://databaseexplorer.wordpress.com/2009/09/22/vault-source-gear-installation-2/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 16:02:00 +0000</pubDate>
		<dc:creator>databaseexplorer</dc:creator>
				<category><![CDATA[Source Safe]]></category>

		<guid isPermaLink="false">http://databaseexplorer.wordpress.com/2009/09/22/vault-source-gear-installation-2</guid>
		<description><![CDATA[Objective: To install source gear in windows 2003 server http://www.sourcegear.com/vault/support/install/ Source Gear File for installing ver 4 Once installed, you can access through Program Files from Windows OS The below screen shot is the admin page where you can manage everything (For eg. Add users, import, export etc)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=234&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Objective: To install source gear in windows 2003 server</p>
<p><a href="http://www.sourcegear.com/vault/support/install/">http://www.sourcegear.com/vault/support/install/</a></p>
<p>Source Gear File for installing ver 4</p>
<p><a href="http://databaseexplorer.files.wordpress.com/2009/09/server1.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/server1.png?w=300" border="0" alt="" /></a></p>
<p>Once installed, you can access through Program Files from Windows OS</p>
<p><a href="http://databaseexplorer.files.wordpress.com/2009/09/server002.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/server002.png?w=294" border="0" alt="" /></a></p>
<p>The below screen shot is the admin page where you can manage everything (For eg. Add users, import, export etc)<br /><a href="http://databaseexplorer.files.wordpress.com/2009/09/server003.png"><img src="http://databaseexplorer.files.wordpress.com/2009/09/server003.png?w=300" border="0" alt="" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/databaseexplorer.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/databaseexplorer.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/databaseexplorer.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/databaseexplorer.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/databaseexplorer.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/databaseexplorer.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/databaseexplorer.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/databaseexplorer.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/databaseexplorer.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/databaseexplorer.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/databaseexplorer.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/databaseexplorer.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/databaseexplorer.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/databaseexplorer.wordpress.com/234/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=234&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://databaseexplorer.wordpress.com/2009/09/22/vault-source-gear-installation-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a3056022cb2e4ca66dbf9bef6a840eb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">databaseexplorer</media:title>
		</media:content>

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/server1.png?w=300" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/server002.png?w=294" medium="image" />

		<media:content url="http://databaseexplorer.files.wordpress.com/2009/09/server003.png?w=300" medium="image" />
	</item>
		<item>
		<title>&gt;SQL Agent Jobs &#8211; Permission</title>
		<link>http://databaseexplorer.wordpress.com/2009/09/14/sql-agent-jobs-permission/</link>
		<comments>http://databaseexplorer.wordpress.com/2009/09/14/sql-agent-jobs-permission/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 16:07:00 +0000</pubDate>
		<dc:creator>databaseexplorer</dc:creator>
				<category><![CDATA[Permissions in SQL Server]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=112</guid>
		<description><![CDATA[&#62; SQLAgentReaderRole The SQLAgentReaderRole is a database role located in the msdb database. It is one of three new roles in this database aimed at allowing the database administrator the ability to assign more granular permissions when it comes to the administration of SQL Agent jobs. Assigning a user or group to be a member [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=112&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&gt;<br />
<h2><span class="Apple-style-span" style="color:#FF0000;"><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">SQLAgentReaderRole</span></span></span></h2>
<p><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">The SQLAgentReaderRole is a database role located in the msdb database. It is  one of three new roles in this database aimed at allowing the database  administrator the ability to assign more granular permissions when it comes to  the administration of SQL Agent jobs. Assigning a user or group to be a member  of this role allows the user to see any SQL Agent job located on the server  instance, even the jobs in which that user does not own. The user can see the  job, along with any history saved to the job. However, the group is not allowed  to execute the jobs. To add a user as a member of the SQLAgentReaderRole, you  can execute the following command:</span></span></p>
<pre><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">use msdb</span></span></pre>
<pre><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">EXECUTE sp_addrolemember</span></span></pre>
<pre><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">@rolename = 'SQLAgentReaderRole',</span></span></pre>
<pre><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">@membername = 'username'</span></span></pre>
<p><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">It is also worth mentioning the other two SQL Agent roles available in SQL  Server 2005. The SQLAgentUserRole allows users to create jobs and to manage the  jobs that they create. The SQLAgentOperatorRole allows users all of the rights  assigned to the SQLAgentReaderRole along with the permissions necessary to  execute local jobs that they do not own.</span></span></p>
<p><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">Further you can view some more details in this below blog:</span></span></p>
<p><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">http://blogs.techrepublic.com.com/datacenter/?p=428</span></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/databaseexplorer.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/databaseexplorer.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/databaseexplorer.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/databaseexplorer.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/databaseexplorer.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/databaseexplorer.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/databaseexplorer.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/databaseexplorer.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/databaseexplorer.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/databaseexplorer.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/databaseexplorer.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/databaseexplorer.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/databaseexplorer.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/databaseexplorer.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=112&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://databaseexplorer.wordpress.com/2009/09/14/sql-agent-jobs-permission/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a3056022cb2e4ca66dbf9bef6a840eb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">databaseexplorer</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Agent Jobs &#8211; Permission</title>
		<link>http://databaseexplorer.wordpress.com/2009/09/14/sql-agent-jobs-permission-2/</link>
		<comments>http://databaseexplorer.wordpress.com/2009/09/14/sql-agent-jobs-permission-2/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 16:07:00 +0000</pubDate>
		<dc:creator>databaseexplorer</dc:creator>
				<category><![CDATA[Permissions in SQL Server]]></category>

		<guid isPermaLink="false">http://databaseexplorer.wordpress.com/2009/09/14/sql-agent-jobs-permission-2</guid>
		<description><![CDATA[SQLAgentReaderRole The SQLAgentReaderRole is a database role located in the msdb database. It is one of three new roles in this database aimed at allowing the database administrator the ability to assign more granular permissions when it comes to the administration of SQL Agent jobs. Assigning a user or group to be a member of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=233&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2><span class="Apple-style-span" style="color:#FF0000;"><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">SQLAgentReaderRole</span></span></span></h2>
<p><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">The SQLAgentReaderRole is a database role located in the msdb database. It is  one of three new roles in this database aimed at allowing the database  administrator the ability to assign more granular permissions when it comes to  the administration of SQL Agent jobs. Assigning a user or group to be a member  of this role allows the user to see any SQL Agent job located on the server  instance, even the jobs in which that user does not own. The user can see the  job, along with any history saved to the job. However, the group is not allowed  to execute the jobs. To add a user as a member of the SQLAgentReaderRole, you  can execute the following command:</span></span></p>
<pre><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">use msdb</span></span></pre>
<pre><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">EXECUTE sp_addrolemember</span></span></pre>
<pre><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">@rolename = 'SQLAgentReaderRole',</span></span></pre>
<pre><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">@membername = 'username'</span></span></pre>
<p><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">It is also worth mentioning the other two SQL Agent roles available in SQL  Server 2005. The SQLAgentUserRole allows users to create jobs and to manage the  jobs that they create. The SQLAgentOperatorRole allows users all of the rights  assigned to the SQLAgentReaderRole along with the permissions necessary to  execute local jobs that they do not own.</span></span></p>
<p><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">Further you can view some more details in this below blog:</span></span></p>
<p><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">http://blogs.techrepublic.com.com/datacenter/?p=428</span></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/databaseexplorer.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/databaseexplorer.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/databaseexplorer.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/databaseexplorer.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/databaseexplorer.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/databaseexplorer.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/databaseexplorer.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/databaseexplorer.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/databaseexplorer.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/databaseexplorer.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/databaseexplorer.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/databaseexplorer.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/databaseexplorer.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/databaseexplorer.wordpress.com/233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=233&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://databaseexplorer.wordpress.com/2009/09/14/sql-agent-jobs-permission-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a3056022cb2e4ca66dbf9bef6a840eb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">databaseexplorer</media:title>
		</media:content>
	</item>
		<item>
		<title>&gt;Route Add</title>
		<link>http://databaseexplorer.wordpress.com/2009/09/10/route-add/</link>
		<comments>http://databaseexplorer.wordpress.com/2009/09/10/route-add/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 15:10:00 +0000</pubDate>
		<dc:creator>databaseexplorer</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=111</guid>
		<description><![CDATA[&#62; Static Route Add in the server: If you cannot ping or net use, then you may manually add the route in the server where you are targeting route ADD 10.1.1.0 MASK 255.255.255.0 192.168.1.8 10.1.1.0 or 10.1.1.12 &#8211; Destination IP or Destination Subnet or Target Server IP 255.255.255.0 &#8211; Target or Destination Server subnet mask [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=111&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&gt;
<div><span class="Apple-style-span" style="font-family:arial;"><b><span class="Apple-style-span" style="text-decoration:underline;"><span class="Apple-style-span" style="color:rgb(255,0,0);">Static Route Add in the server:</span></span></b></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><br /></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">If you cannot ping or net use, then you may manually add the route in the server where you are targeting</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">route ADD 10.1.1.0 MASK 255.255.255.0 192.168.1.8</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">10.1.1.0 or 10.1.1.12 &#8211; Destination IP or Destination Subnet or Target Server IP</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">255.255.255.0 &#8211; Target or Destination Server subnet mask</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">192.168.1.8 &#8211; Gateway IP Address &#8211; Target Server Gateway</p>
<p>Adding a TCP/IP Route to the Windows Routing Table</p>
<p>Adding routes to your machine is a useful testing tool for some of these situations.</p>
<p>Or another explanation is:</p>
<p>Syntax:</p>
<p>route ADD “network” MASK “subnet mask”  “gateway ip”</p>
<p>For example, if you were on the 192.168.1.0 network, and you had a gateway on 192.168.1.12 configured to access the 10.10.10.0/24 network, you would use a route add statement like this:</p>
<p>route ADD 10.10.10.0 MASK 255.255.255.0 192.168.1.12</p>
<p>Your routing table should now reflect that change, and all traffic to the 10.10.10.x range will now be sent over to the gateway machine.</p>
<p>The route add change will only stick across reboots if you add it with the -p flag, as in the following:</p>
<p>route -p ADD 10.10.10.0 MASK 255.255.255.0 192.168.1.12<br />route -p add 10.0.1.0 mask 255.255.255.0  10.0.0.2<br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">Please see below link as well</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">http://www.mydigitallife.info/2008/12/25/how-to-add-route-to-tcpip-routing-table-with-windows-routing-and-remote-access-console-or-dos-prompt/</span></span></div>
<div></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/databaseexplorer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/databaseexplorer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/databaseexplorer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/databaseexplorer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/databaseexplorer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/databaseexplorer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/databaseexplorer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/databaseexplorer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/databaseexplorer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/databaseexplorer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/databaseexplorer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/databaseexplorer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/databaseexplorer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/databaseexplorer.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=111&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://databaseexplorer.wordpress.com/2009/09/10/route-add/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a3056022cb2e4ca66dbf9bef6a840eb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">databaseexplorer</media:title>
		</media:content>
	</item>
		<item>
		<title>Route Add</title>
		<link>http://databaseexplorer.wordpress.com/2009/09/10/route-add-2/</link>
		<comments>http://databaseexplorer.wordpress.com/2009/09/10/route-add-2/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 15:10:00 +0000</pubDate>
		<dc:creator>databaseexplorer</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://databaseexplorer.wordpress.com/2009/09/10/route-add-2</guid>
		<description><![CDATA[Static Route Add in the server: If you cannot ping or net use, then you may manually add the route in the server where you are targeting route ADD 10.1.1.0 MASK 255.255.255.0 192.168.1.8 10.1.1.0 or 10.1.1.12 &#8211; Destination IP or Destination Subnet or Target Server IP 255.255.255.0 &#8211; Target or Destination Server subnet mask 192.168.1.8 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=232&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div><span class="Apple-style-span" style="font-family:arial;"><b><span class="Apple-style-span" style="text-decoration:underline;"><span class="Apple-style-span" style="color:rgb(255,0,0);">Static Route Add in the server:</span></span></b></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><br /></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">If you cannot ping or net use, then you may manually add the route in the server where you are targeting</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">route ADD 10.1.1.0 MASK 255.255.255.0 192.168.1.8</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">10.1.1.0 or 10.1.1.12 &#8211; Destination IP or Destination Subnet or Target Server IP</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">255.255.255.0 &#8211; Target or Destination Server subnet mask</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">192.168.1.8 &#8211; Gateway IP Address &#8211; Target Server Gateway</p>
<p>Adding a TCP/IP Route to the Windows Routing Table</p>
<p>Adding routes to your machine is a useful testing tool for some of these situations.</p>
<p>Or another explanation is:</p>
<p>Syntax:</p>
<p>route ADD “network” MASK “subnet mask”  “gateway ip”</p>
<p>For example, if you were on the 192.168.1.0 network, and you had a gateway on 192.168.1.12 configured to access the 10.10.10.0/24 network, you would use a route add statement like this:</p>
<p>route ADD 10.10.10.0 MASK 255.255.255.0 192.168.1.12</p>
<p>Your routing table should now reflect that change, and all traffic to the 10.10.10.x range will now be sent over to the gateway machine.</p>
<p>The route add change will only stick across reboots if you add it with the -p flag, as in the following:</p>
<p>route -p ADD 10.10.10.0 MASK 255.255.255.0 192.168.1.12<br />route -p add 10.0.1.0 mask 255.255.255.0  10.0.0.2<br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">Please see below link as well</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">http://www.mydigitallife.info/2008/12/25/how-to-add-route-to-tcpip-routing-table-with-windows-routing-and-remote-access-console-or-dos-prompt/</span></span></div>
<div></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/databaseexplorer.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/databaseexplorer.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/databaseexplorer.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/databaseexplorer.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/databaseexplorer.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/databaseexplorer.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/databaseexplorer.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/databaseexplorer.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/databaseexplorer.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/databaseexplorer.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/databaseexplorer.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/databaseexplorer.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/databaseexplorer.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/databaseexplorer.wordpress.com/232/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=232&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://databaseexplorer.wordpress.com/2009/09/10/route-add-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a3056022cb2e4ca66dbf9bef6a840eb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">databaseexplorer</media:title>
		</media:content>
	</item>
		<item>
		<title>&gt;How to fix orphaned SQL Server users</title>
		<link>http://databaseexplorer.wordpress.com/2009/09/10/how-to-fix-orphaned-sql-server-users/</link>
		<comments>http://databaseexplorer.wordpress.com/2009/09/10/how-to-fix-orphaned-sql-server-users/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 13:42:00 +0000</pubDate>
		<dc:creator>databaseexplorer</dc:creator>
				<category><![CDATA[Permissions in SQL Server]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=110</guid>
		<description><![CDATA[&#62; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; Brief: When you restore a MS SQL Server database on a different machine, you cannot access the database until you fix the permissions. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; Detail The problem is that the user in the database is an &#8220;orphan&#8221;. This means that there is no login id or password associated with the user. This is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=110&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&gt;
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><span class="Apple-style-span" style="color:#FF0000;">Brief:</span></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">When you restore a MS SQL Server database on a different machine, you cannot access the database until you fix the permissions.</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><span class="Apple-style-span" style="color:#FF0000;">Detail</span></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">The problem is that the user in the database is an &#8220;orphan&#8221;. This means that there is no login id or password associated with the user. This is true even if there is a login id that matches the user, since there is a GUID (called a SID in Microsoft-speak) that has to match as well.</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">All of these should be done as a database admin, with the restored database selected.</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">Firstly, make sure that this is the problem. This will lists the orphaned users:</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">EXEC sp_change_users_login &#8216;Report&#8217;</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">If you already have a login id and password for this user, fix it by doing:</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">EXEC sp_change_users_login &#8216;Auto_Fix&#8217;, &#8216;user&#8217;</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">If you want to create a new login id and password for this user, fix it by doing:</span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;"><br /></span></span></div>
<div><span class="Apple-style-span" style="font-family:arial;"><span class="Apple-style-span" style="font-size:small;">EXEC sp_change_users_login &#8216;Auto_Fix&#8217;, &#8216;user&#8217;, &#8216;login&#8217;, &#8216;password&#8217;</span></span></div>
<div></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/databaseexplorer.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/databaseexplorer.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/databaseexplorer.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/databaseexplorer.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/databaseexplorer.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/databaseexplorer.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/databaseexplorer.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/databaseexplorer.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/databaseexplorer.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/databaseexplorer.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/databaseexplorer.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/databaseexplorer.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/databaseexplorer.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/databaseexplorer.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=databaseexplorer.wordpress.com&amp;blog=7897340&amp;post=110&amp;subd=databaseexplorer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://databaseexplorer.wordpress.com/2009/09/10/how-to-fix-orphaned-sql-server-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a3056022cb2e4ca66dbf9bef6a840eb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">databaseexplorer</media:title>
		</media:content>
	</item>
	</channel>
</rss>
