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.
スクリプトを使用して、選択、挿入、更新、削除の権限を持つが、その1つのデータベースにしかアクセスできないユーザーをデータベースに追加する方法は何ですか?
CREATE USER [user] FOR LOGIN [user] EXEC sp_addrolemember N'db_datareader', N'your_db' EXEC sp_addrolemember N'db_datawriter', N'your_db' GO
SQLServer2005で新しいdbユーザーを作成します