問題情境
在SQL Server資料庫遷移時,在另外一台伺服器上恢複Database Backup檔案之後,需要重新建立之前資料庫上的使用者帳戶。在建立登入使用者時,需要在User Mapping中給該使用者針對具體的資料庫進行授權,由於恢複出來的資料庫中存在同名的使用者帳戶,建立時會出現"User, group, or role already exists in the current database"的錯誤提示。詳細錯誤資訊如下:
TITLE: Microsoft SQL Server Management Studio
------------------------------
Create failed for User 'testuser'. (Microsoft.SqlServer.Smo)
------------------------------
ADDITIONAL INFORMATION:
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
------------------------------
User, group, or role 'testuser' already exists in the current database. (Microsoft SQL Server, Error: 15023)
之前的解決方案
在建立使用者帳戶(或者授權)之前,先在對應的資料庫中刪除該同名的使用者帳戶。
最新的解決方案
先建立使用者帳戶,不進行授權,然後通過下面的SQL語句將該使用者帳戶關聯至對應的資料庫使用者。優點是避免了重新授權的操作。
USE {目標資料庫}EXEC sp_change_users_login 'Update_One', '{目標資料庫已存在的使用者名稱}', '{建立的登入使用者名稱}'
方法來源
SQL Server Forums - How to assign a login to an existing user?