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.
アドバンテージ データベース サーバーで管理者権限を持つ新しいユーザーを作成するコマンドは何ですか?
SQLを使用すると、次のことができます
--Create User EXECUTE PROCEDURE sp_CreateUser('username', 'password', 'comment'); --Add the user to the DB:Admin group EXECUTE PROCEDURE sp_AddUserToGroup('username','DB:Admin');