<?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; Case Sensitive Database and Database User &#8211; Fix: Error: 15151 &#8211; Cannot find the user , because it does not exist or you do not have permission.</title>
	<atom:link href="http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #017 &#124; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-426037</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #017 &#124; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 23 Feb 2013 01:31:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-426037</guid>
		<description><![CDATA[[...] Case Sensitive Database and Database User Interesting Question from Blog Reader: - Here is the scenario. I have two databases: AdventureWorks and MyAdventureWorks. I have a user called SQLAuthority in both  databases. Now when I try to grant access the user in one database it works fine, but when I try to do the same thing in another database, it gives me an error. I am stunned as both the users are same. As a matter of fact, I had just created those users recently, and now I am not able to gain necessary permission. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Case Sensitive Database and Database User Interesting Question from Blog Reader: - Here is the scenario. I have two databases: AdventureWorks and MyAdventureWorks. I have a user called SQLAuthority in both  databases. Now when I try to grant access the user in one database it works fine, but when I try to do the same thing in another database, it gives me an error. I am stunned as both the users are same. As a matter of fact, I had just created those users recently, and now I am not able to gain necessary permission. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: damiengoor</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-420930</link>
		<dc:creator><![CDATA[damiengoor]]></dc:creator>
		<pubDate>Tue, 12 Feb 2013 11:11:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-420930</guid>
		<description><![CDATA[Good to know. However I experience some strange behaviours with various SQL Server installations. At least I find it inconsistant. My connection string is

server=ServerName;database=SS1

If I try database ‘ss1′ connection would fail which is fine as the DB is case sensitive. When I run

SELECT name AS “Database” FROM master..sysdatabases

SS1 appears in upper case.
However, when I run any query and that I want to specify the database prefixing the table name, it requires the SS1 to be ss1.

Example:

SELECT VBELN FROM SS1.VBAK;// returns [Invalid object name &#039;SS1.VBAK&#039;]

SELECT VBELN FROM ss1.VBAK;// runs fine

On another install case insensitive this one, I have to remove the database reference completely in order to have the query running.

What are the reasons for these differences? Thanks for any help.]]></description>
		<content:encoded><![CDATA[<p>Good to know. However I experience some strange behaviours with various SQL Server installations. At least I find it inconsistant. My connection string is</p>
<p>server=ServerName;database=SS1</p>
<p>If I try database ‘ss1′ connection would fail which is fine as the DB is case sensitive. When I run</p>
<p>SELECT name AS “Database” FROM master..sysdatabases</p>
<p>SS1 appears in upper case.<br />
However, when I run any query and that I want to specify the database prefixing the table name, it requires the SS1 to be ss1.</p>
<p>Example:</p>
<p>SELECT VBELN FROM SS1.VBAK;// returns [Invalid object name 'SS1.VBAK']</p>
<p>SELECT VBELN FROM ss1.VBAK;// runs fine</p>
<p>On another install case insensitive this one, I have to remove the database reference completely in order to have the query running.</p>
<p>What are the reasons for these differences? Thanks for any help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aMSDeveloper</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-384521</link>
		<dc:creator><![CDATA[aMSDeveloper]]></dc:creator>
		<pubDate>Sat, 01 Dec 2012 04:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-384521</guid>
		<description><![CDATA[Can someone tell me when to consider collation (case sensitivity) of SQL Server? I have not come across a scenario where case sensitive SQL Server is preferred over case insensitive. Please Help.]]></description>
		<content:encoded><![CDATA[<p>Can someone tell me when to consider collation (case sensitivity) of SQL Server? I have not come across a scenario where case sensitive SQL Server is preferred over case insensitive. Please Help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abdul Samathu</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-276881</link>
		<dc:creator><![CDATA[Abdul Samathu]]></dc:creator>
		<pubDate>Tue, 17 Apr 2012 06:23:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-276881</guid>
		<description><![CDATA[Thanks Pinal, I got some valuable information today.....]]></description>
		<content:encoded><![CDATA[<p>Thanks Pinal, I got some valuable information today&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kaushik</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-261017</link>
		<dc:creator><![CDATA[kaushik]]></dc:creator>
		<pubDate>Fri, 09 Mar 2012 07:53:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-261017</guid>
		<description><![CDATA[Really great sir,]]></description>
		<content:encoded><![CDATA[<p>Really great sir,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sneha321</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-254043</link>
		<dc:creator><![CDATA[Sneha321]]></dc:creator>
		<pubDate>Sun, 19 Feb 2012 03:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-254043</guid>
		<description><![CDATA[Chris,

I think you have not got the point of this blog post. It is not about Pinal&#039;s knowledge but rather a good example of true mentor and story teller.

How easily he tells us a story, which we can all related to ourself and my co-workers. After reading this post, I will never ever forget this issue.

He is great great educator. A small request to you - please stay positive to life. 

Pinal - keep up a good work.]]></description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>I think you have not got the point of this blog post. It is not about Pinal&#8217;s knowledge but rather a good example of true mentor and story teller.</p>
<p>How easily he tells us a story, which we can all related to ourself and my co-workers. After reading this post, I will never ever forget this issue.</p>
<p>He is great great educator. A small request to you &#8211; please stay positive to life. </p>
<p>Pinal &#8211; keep up a good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh narim</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-253936</link>
		<dc:creator><![CDATA[Ganesh narim]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 19:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-253936</guid>
		<description><![CDATA[Chris,

May be people can forget small,small things some time even they are experts in resolving big ones,this post is for  &#039;jeff&#039; who is new to this field, &#039;pinal&#039; explained the actual problem in the way of what normal person thinks in this situation like &#039;Jeff&#039;, 
If  &quot; Pinal &quot; says like this &quot;Oh!! this is very very easy problem why this guy jeff not having this much of knowledge who hired him..???&quot;

What we think if we see this words in this post..?????

So the aim is to explain the problem in such a way of easy understanding for every one.!!!!

I&#039;m sorry if did anything wrong here...!!!

Thank you Chris.]]></description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>May be people can forget small,small things some time even they are experts in resolving big ones,this post is for  &#8216;jeff&#8217; who is new to this field, &#8216;pinal&#8217; explained the actual problem in the way of what normal person thinks in this situation like &#8216;Jeff&#8217;,<br />
If  &#8221; Pinal &#8221; says like this &#8220;Oh!! this is very very easy problem why this guy jeff not having this much of knowledge who hired him..???&#8221;</p>
<p>What we think if we see this words in this post..?????</p>
<p>So the aim is to explain the problem in such a way of easy understanding for every one.!!!!</p>
<p>I&#8217;m sorry if did anything wrong here&#8230;!!!</p>
<p>Thank you Chris.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-253929</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 18:38:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-253929</guid>
		<description><![CDATA[Nakul,

Absolutely excellent comment. I think in future we should put up a poll that about it. I think those who are confused due to case sensitive nature of database, will be not confused any more if everything is case sensitive.

However, there are some clear needs of the case sensitive database as well and collation have special place in the database.]]></description>
		<content:encoded><![CDATA[<p>Nakul,</p>
<p>Absolutely excellent comment. I think in future we should put up a poll that about it. I think those who are confused due to case sensitive nature of database, will be not confused any more if everything is case sensitive.</p>
<p>However, there are some clear needs of the case sensitive database as well and collation have special place in the database.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-253928</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 18:35:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-253928</guid>
		<description><![CDATA[Thanks for your concern. The goal of the post is to share experience.]]></description>
		<content:encoded><![CDATA[<p>Thanks for your concern. The goal of the post is to share experience.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-253885</link>
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 15:20:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-253885</guid>
		<description><![CDATA[Recently I have read in one of your blogpost that you are now MS employee.
 MS must be shamed after seeing this post from you that by seeing this simple error you not able to judge that this is only and only the case of case sensitivity or in technical term database collation.

Did someone took your interview before hiring you in MS?

I know you are the author of this blog and you will not let other know about it. But my intention is not to make aware about you, but to make you aware about your knowledge.]]></description>
		<content:encoded><![CDATA[<p>Recently I have read in one of your blogpost that you are now MS employee.<br />
 MS must be shamed after seeing this post from you that by seeing this simple error you not able to judge that this is only and only the case of case sensitivity or in technical term database collation.</p>
<p>Did someone took your interview before hiring you in MS?</p>
<p>I know you are the author of this blog and you will not let other know about it. But my intention is not to make aware about you, but to make you aware about your knowledge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-253839</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 11:29:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-253839</guid>
		<description><![CDATA[Ganesh,

Love your dedication my friend. Your support make me go day by day.]]></description>
		<content:encoded><![CDATA[<p>Ganesh,</p>
<p>Love your dedication my friend. Your support make me go day by day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganesh narim</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-253826</link>
		<dc:creator><![CDATA[Ganesh narim]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 10:57:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-253826</guid>
		<description><![CDATA[Hi pinal sir,
I&#039;m too like chandra, I used to start a day with your post, i put bookmark to your blog in my toolbar&#039;s both laptop and office desk so there is no chance to miss     your post even a single day...!!!!]]></description>
		<content:encoded><![CDATA[<p>Hi pinal sir,<br />
I&#8217;m too like chandra, I used to start a day with your post, i put bookmark to your blog in my toolbar&#8217;s both laptop and office desk so there is no chance to miss     your post even a single day&#8230;!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nakul Vachhrajani</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-253754</link>
		<dc:creator><![CDATA[Nakul Vachhrajani]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 07:08:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-253754</guid>
		<description><![CDATA[The afternoon is off to a great start for me! I was half-way through the post, looking at the pair of screenshots and almost immediately thought - &quot;hmmm...AdventureWorks seems to be a case-sensitive database, and the script uses a different case for the user name.&quot; As a I scrolled down, that&#039;s exactly what it was!

Anyway, case sensitive collations may end up being a lot of trouble for someone who has never worked with them. At work, the databses that I work with are case-insensitive; whereas the AdventureWorks sample database is case-sensitive which sometimes takes me on a wild-goose chase.

I sometimes wonder whether all databases should be made case sensitive or not? To think of it, doing so would make lives of code reviewers so much easier (one would be forced to use Intellisense when developing scripts, rather than remember the exact case of an object name).]]></description>
		<content:encoded><![CDATA[<p>The afternoon is off to a great start for me! I was half-way through the post, looking at the pair of screenshots and almost immediately thought &#8211; &#8220;hmmm&#8230;AdventureWorks seems to be a case-sensitive database, and the script uses a different case for the user name.&#8221; As a I scrolled down, that&#8217;s exactly what it was!</p>
<p>Anyway, case sensitive collations may end up being a lot of trouble for someone who has never worked with them. At work, the databses that I work with are case-insensitive; whereas the AdventureWorks sample database is case-sensitive which sometimes takes me on a wild-goose chase.</p>
<p>I sometimes wonder whether all databases should be made case sensitive or not? To think of it, doing so would make lives of code reviewers so much easier (one would be forced to use Intellisense when developing scripts, rather than remember the exact case of an object name).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nirav Gajjar</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-253745</link>
		<dc:creator><![CDATA[Nirav Gajjar]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 06:14:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-253745</guid>
		<description><![CDATA[I found the same problem in previous week and i had wasted my half day to find error. My mind was out of coverage at that time, eventually my college just tried by changing the case and it solved.
I was smiled at my self and looking at the screen

This article becomes very helpful for other.
Thanks Mr. Pinal]]></description>
		<content:encoded><![CDATA[<p>I found the same problem in previous week and i had wasted my half day to find error. My mind was out of coverage at that time, eventually my college just tried by changing the case and it solved.<br />
I was smiled at my self and looking at the screen</p>
<p>This article becomes very helpful for other.<br />
Thanks Mr. Pinal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-253734</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 05:45:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-253734</guid>
		<description><![CDATA[Thanks Chandra - love your comment and we are motivated.]]></description>
		<content:encoded><![CDATA[<p>Thanks Chandra &#8211; love your comment and we are motivated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CHANdra Sekhar B</title>
		<link>http://blog.sqlauthority.com/2012/02/18/sql-server-case-sensitive-database-and-database-user-fix-error-15151-cannot-find-the-user-because-it-does-not-exist-or-you-do-not-have-permission/#comment-253711</link>
		<dc:creator><![CDATA[CHANdra Sekhar B]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 03:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=17430#comment-253711</guid>
		<description><![CDATA[Gud One sir!!! Now a days i read SQLAuthority articles everyday in place of News Paper... :)]]></description>
		<content:encoded><![CDATA[<p>Gud One sir!!! Now a days i read SQLAuthority articles everyday in place of News Paper&#8230; :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
