Adding a user SuperOffice administrator user to the database

uid	= Userid for the user to add
pwd	= Password for the user to add
group	= SOADMIN for userlevel 0 and SOUSER for any other

Watcom and Sybase SQL Anywhere:

	PARAMETERS uid, pwd, group;
	
	GRANT CONNECT TO {uid} IDENTIFIED BY {pwd};
	GRANT MEMBERSHIP IN GROUP {group} TO {uid};

Oracle:

	REMARK Script for SQL*Plus for creating an Oracle user for use
	REMARK as a SuperOffice administrator (userlevel 0)

	PROMPT Enter userid for new SuperOffice administrator;
	ACCEPT UID PROMPT 'Userid: '
	ACCEPT PWD PROMPT 'Password: '
	ACCEPT GROUP PROMPT 'Group: '

	CREATE USER "&UID" IDENTIFIED BY "&PWD";
	GRANT CONNECT TO "&UID";
	GRANT "&GROUP" TO "&UID";

Sybase and Microsoft SQL Server:

	PARAMETERS uid, database, group;

	exec sp_addlogin {uid}, {pwd}, {database}
	exec sp_adduser {uid}, {uid}, {group}
