简体   繁体   中英

How do you create a new user with admin permissions in ADS?

在Advantage Database Server中以管理员身份创建新用户的命令是什么?

With SQL you can do the following

--Create User
EXECUTE PROCEDURE sp_CreateUser('username', 'password', 'comment');

--Add the user to the DB:Admin group
EXECUTE PROCEDURE sp_AddUserToGroup('username','DB:Admin'); 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM