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.
在 Advantage 数据库服务器中创建具有管理员权限的新用户的命令是什么?
使用 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');