Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザー BUILTIN\Users の db_owner フィールドを true に変更する必要があります。
SQL Server 2008 で実行する必要がある SQL は何ですか?
ありがとう
これを試して:
EXEC sp_addrolemember 'db_owner', 'BUILTIN\Users'
一般に、Windows ログインの形式は次のようになります。
EXEC sp_addrolemember 'db_owner', '<computer>\<user>'
MSDN リンク