0

What is the command to make a new user with administrator privileges in the Advantage Database Server?

James Kerrane
  • 33
  • 1
  • 7

1 Answers1

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