HOW TO
Instructions provided describe how to re-synch SQL Server logins with the database users after restoring a database from backup. This process is always required when an SDE schema database is restored from a backup (.bak), or attached from a previously detached database (.mdf). In these scenarios, the SDE user within the geodatabase is not in synch with the login for that instance of SQL Server.
If the SDE login is not added and synched with the user within that database, the connection fails with Bad Login User or the service does not start.
The stored procedure (SP_CHANGE_USERS_LOGIN) can be run to correct this problem by mapping an existing database user to their corresponding SQL Server login. This should be run against all databases in which the ‘SDE’ user requires access to manage the database. This also must be run for any SQL Server authenticated database users that own data. When starting the service, the ‘SDE’ user is the only user required.
use <database_name> go EXEC sp_change_users_login 'Update_One', 'sde', 'sde' go
After the command is completed the following is reported:
'The command(s) completed successfully.' MSDN: sp_change_users_login (Transact-SQL)
Note: The stored procedure 'sp_change_users_login' is in maintenance mode and may be deprecated by Microsoft. Use the following workflow for Microsoft SQL Server 2008 and later:
use <database_name> go ALTER USER sde WITH login = sde go
Verify fix:
Attempting to make a connection to the database or within ArcCatalog as the SDE or USER login verifies that the login and user are properly synched.
The following queries can also be run to query the syslogins table in the master database and compare this with the sysusers table found within the individual user database. To verify if the SID columns match, use the following query:
use master go select * from syslogins where name='sde' go use <database_name> go select * from sysusers where name='sde' go
Article ID: 000008079
Get help from ArcGIS experts
Download the Esri Support App
You can also download the app to access the chatbot anytime! Download it now.