Welcome to dbFreaks.com!
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Error: 18456 Severity: 14 State:11

 
   Database Help (Home) -> Security RSS
Next:  Filename goes missing from titlebar  
Author Message
mmmatrix

External


Since: Dec 17, 2008
Posts: 1



(Msg. 1) Posted: Wed Dec 17, 2008 9:43 am
Post subject: Error: 18456 Severity: 14 State:11
Archived from groups: microsoft>public>sqlserver>security (more info?)

Hi, We recently deployed an application using SQL 2005. We have encountered
intermitten issues with people access the application. Within the MS SQL logs
we see the error "Error: 18456 Severity: 14 State:11". Which thru my searches
have lead me to beleive that the have been authenticated but state 11 means
they are unable to access the database for some reason.

All the Users are in a Group, let call is Group A. We have created a Login
for Group A and assigned the default database to Application A. We have
granted read and write privledges to Application A.

In the error message under data I see the following:
0000: 18 48 00 00 0e 00 00 00 .H......
0008: 05 00 00 00 4c 00 41 00 ....L.A.
0010: 42 00 31 00 00 00 07 00 B.1.....
0018: 00 00 6d 00 61 00 73 00 ..m.a.s.
0020: 74 00 65 00 72 00 00 00 t.e.r...

Any Help would be appreciated.

In the error

 >> Stay informed about: Error: 18456 Severity: 14 State:11 
Back to top
Login to vote
Russell Fields

External


Since: Jan 10, 2008
Posts: 608



(Msg. 2) Posted: Wed Dec 17, 2008 2:29 pm
Post subject: Re: Error: 18456 Severity: 14 State:11 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I don't know if this is your problem, but here is something to know.

If a User is in more than one Group that has access to a SQL Server and each
Group has its own default database, then it is undefined which default
database a particular User will use. If the User has a directly assigned
default database, that the User's default will always be used.

If your application directly connects to a database without depending on the
default database, then you should not get this error.

The intermittence could be a number of things, including the possibility
that the "other default" database is sometimes off-line and sometimes
on-line. To check a particular User's possible default databases you could
run a query like this one:

EXECUTE AS LOGIN='DOMAIN\USER'

SELECT name AS LoginName, dbname AS DefaultDB FROM master.dbo.syslogins
WHERE IS_MEMBER(name) = 1

REVERT

--
RLF


"mmmatrix" wrote in message

> Hi, We recently deployed an application using SQL 2005. We have
> encountered
> intermitten issues with people access the application. Within the MS SQL
> logs
> we see the error "Error: 18456 Severity: 14 State:11". Which thru my
> searches
> have lead me to beleive that the have been authenticated but state 11
> means
> they are unable to access the database for some reason.
>
> All the Users are in a Group, let call is Group A. We have created a Login
> for Group A and assigned the default database to Application A. We have
> granted read and write privledges to Application A.
>
> In the error message under data I see the following:
> 0000: 18 48 00 00 0e 00 00 00 .H......
> 0008: 05 00 00 00 4c 00 41 00 ....L.A.
> 0010: 42 00 31 00 00 00 07 00 B.1.....
> 0018: 00 00 6d 00 61 00 73 00 ..m.a.s.
> 0020: 74 00 65 00 72 00 00 00 t.e.r...
>
> Any Help would be appreciated.
>
> In the error

 >> Stay informed about: Error: 18456 Severity: 14 State:11 
Back to top
Login to vote
pher

External


Since: Jan 21, 2008
Posts: 7



(Msg. 3) Posted: Fri Dec 19, 2008 4:25 am
Post subject: Re: Error: 18456 Severity: 14 State:11 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

We also had this Kerberos error.
Check your SPN's. There is a good explanation here:
http://www.sqlservercentral.com/articles/Security/65169
Make sure that the delegation is set up properly in your Active Directory.
Remove those SPN's that are no longer needed (if any).

pher


"mmmatrix" wrote in message

> Hi, We recently deployed an application using SQL 2005. We have
> encountered
> intermitten issues with people access the application. Within the MS SQL
> logs
> we see the error "Error: 18456 Severity: 14 State:11". Which thru my
> searches
> have lead me to beleive that the have been authenticated but state 11
> means
> they are unable to access the database for some reason.
>
> All the Users are in a Group, let call is Group A. We have created a Login
> for Group A and assigned the default database to Application A. We have
> granted read and write privledges to Application A.
>
> In the error message under data I see the following:
> 0000: 18 48 00 00 0e 00 00 00 .H......
> 0008: 05 00 00 00 4c 00 41 00 ....L.A.
> 0010: 42 00 31 00 00 00 07 00 B.1.....
> 0018: 00 00 6d 00 61 00 73 00 ..m.a.s.
> 0020: 74 00 65 00 72 00 00 00 t.e.r...
>
> Any Help would be appreciated.
>
> In the error
 >> Stay informed about: Error: 18456 Severity: 14 State:11 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Error: 18456, Severity: 14, State: 16. - We're seeing ton of these error on our test server. Before this meesage appears, we're seeing following thing: Login failed domain\username [client:<ip_address>] Any help appreciated. Thanks,

Error when Logging on - Error: 18456, Severity: 14, State:.. - Hi All, I am getting the following error in the ERRORLOG File when I am trying to connect to SQL Server 2005 Express Edition from the command line. 2007-03-23 07:30:05.54 Logon Error: 18456, Severity: 14, State: 16. 2007-03-23 07:30:05.54 Logon ...

Error: 15466, Severity: 16, State: 1. - Hello, Master database was recently loaded from backup from a server that had multiple catastrophic disk failures. No Backups of SMK. Am receiveing Error: 15466, Severity: 16, State: 1. in the errorlog on SQL Server start up. Have tried ALTER SERVICE...

How to add VIEW SERVER STATE permissions - I need to have one of the DBO's run some code on a SQL2005 server database that will recommend indexes on a particular database that they have DBO rights to. However I found out that I need to give them “View Server State” permission to run this....

Howto troubleshoot login failure - State 11? - I have a problem where a logon account is denied access to SQL Server 2005. The server log: Login failed for user 'Domain\User' [Client: xx.xx.xx.xx] Error: 18456, Severity: 14, State: 11 How do I troubleshoot this? The account is a member of a Window...
   Database Help (Home) -> Security All times are: Pacific Time (US & Canada)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]