<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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: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>Comments on: SQL SERVER &#8211; Stored Procedure to Know Database Access Permission to Current User</title>
	<atom:link href="http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Mon, 13 Feb 2012 15:11:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Hardeep Singh</title>
		<link>http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/#comment-39925</link>
		<dc:creator><![CDATA[Hardeep Singh]]></dc:creator>
		<pubDate>Tue, 08 Jul 2008 20:37:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/#comment-39925</guid>
		<description><![CDATA[Hi Sergio Santos,
I hope I got your problem correctly. The reason is that its very simple. checkout the query below:


update temp_table
set amt = t.amt
from 
(
	select amt from [DB2].[dbo].[OtherAmtTracking] where otheramttrackingid = 2
) as t
where otheramttrackingid = 3


I hope this helps you!! If this is not what you are asking for...then post your problm with some more details.

Thanks!!]]></description>
		<content:encoded><![CDATA[<p>Hi Sergio Santos,<br />
I hope I got your problem correctly. The reason is that its very simple. checkout the query below:</p>
<p>update temp_table<br />
set amt = t.amt<br />
from<br />
(<br />
	select amt from [DB2].[dbo].[OtherAmtTracking] where otheramttrackingid = 2<br />
) as t<br />
where otheramttrackingid = 3</p>
<p>I hope this helps you!! If this is not what you are asking for&#8230;then post your problm with some more details.</p>
<p>Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sérgio Santos</title>
		<link>http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/#comment-35084</link>
		<dc:creator><![CDATA[Sérgio Santos]]></dc:creator>
		<pubDate>Tue, 15 Apr 2008 08:20:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/#comment-35084</guid>
		<description><![CDATA[Hi pinaldave,

Well, i have a little question about store procedures...
I want that with only one store procedure, im able to copy some elements of one database, to another... but i never worked with 2 diferent db so im &#039;kinda stuck&#039;...  ^^

Both databases are in the same SQL Server 2005...

How can i update one database with the values of the other database?! 



Thank&#039;z.
Best Regards.]]></description>
		<content:encoded><![CDATA[<p>Hi pinaldave,</p>
<p>Well, i have a little question about store procedures&#8230;<br />
I want that with only one store procedure, im able to copy some elements of one database, to another&#8230; but i never worked with 2 diferent db so im &#8216;kinda stuck&#8217;&#8230;  ^^</p>
<p>Both databases are in the same SQL Server 2005&#8230;</p>
<p>How can i update one database with the values of the other database?! </p>
<p>Thank&#8217;z.<br />
Best Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javier Rodriguez</title>
		<link>http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/#comment-15411</link>
		<dc:creator><![CDATA[Javier Rodriguez]]></dc:creator>
		<pubDate>Tue, 16 Oct 2007 10:53:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/#comment-15411</guid>
		<description><![CDATA[Hi,

I have one question for you. I´m sure that you know the answer...jejej
Is possible create Access Database from a Store Procedure in SQL Server 2005?

Thanks in advance!
Best Regards,]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have one question for you. I´m sure that you know the answer&#8230;jejej<br />
Is possible create Access Database from a Store Procedure in SQL Server 2005?</p>
<p>Thanks in advance!<br />
Best Regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/#comment-14654</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Wed, 03 Oct 2007 01:05:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/#comment-14654</guid>
		<description><![CDATA[Hi Fabian Maynez,

You need to secure original file using local machine security.

Regards,
Pinal Dave ( http://www.SQLAuthority.com )]]></description>
		<content:encoded><![CDATA[<p>Hi Fabian Maynez,</p>
<p>You need to secure original file using local machine security.</p>
<p>Regards,<br />
Pinal Dave ( <a href="http://www.SQLAuthority.com" rel="nofollow">http://www.SQLAuthority.com</a> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabian Maynez</title>
		<link>http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/#comment-14387</link>
		<dc:creator><![CDATA[Fabian Maynez]]></dc:creator>
		<pubDate>Fri, 28 Sep 2007 02:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/23/sql-server-stored-procedure-to-know-database-access-permission-to-current-user/#comment-14387</guid>
		<description><![CDATA[Hello, I wonder if you know a way to protect my database (mydatabase.mdf) of being open in other computer..

thanks]]></description>
		<content:encoded><![CDATA[<p>Hello, I wonder if you know a way to protect my database (mydatabase.mdf) of being open in other computer..</p>
<p>thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

