解決SQL Server資料庫的”User, group, or role already exists in the current database”問題

來源:互聯網
上載者:User

問題情境

在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?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.