Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I keep getting this error everytime I try to delete a user from the database :

  1. Expand the database
  2. Expand Security
  3. Expand Users
  4. Right-click 'username' then select Delete

The following error occurs :

Drop failed for User 'username'. (Microsoft.SqlServer.Smo)

Additional Information:

An exception occurred while executing a Transact-SQL statement or batch.

CONDITIONAL failed because the following SET options have incorrect settings: 'ARITHABORT'. Verify that SET options are correct for use with indexed views and/or indexes on computed columns and/or query notifications and/or xml data type methods. (Microsoft SQL Server, Error: 1934)

Has anyone encountered this before?

share|improve this question

2 Answers

Check sp_configure to see what "user options" is set to. http://technet.microsoft.com/en-us/library/ms190763.aspx

I came across some things that also pointed to an audit trigger that could throw this error.

share|improve this answer
up vote 0 down vote accepted

I am not sure if this is supposed to be a fix, but it does work for the moment. Just run this on the DB :

SET ARITHABORT ON
DROP USERNAME
SET ARITHABORT OFF
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.