What is the command to make a new user with administrator privileges in the Advantage Database Server?
Asked
Active
Viewed 137 times
1 Answers
4
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');

Edgar
- 943
- 4
- 4