Adds a new user login name to a Replication Server.
create user user set password {passwd | null}
The new user’s Replication Server login name. Login names must conform to the rules for identifiers.
The user’s password. It can be up to 30 characters long and can include letters, numerals, and symbols. Case is significant. If the password contains spaces, enclose the password in quotation marks. When you create or alter a user login name, you must specify a password or “null.” A null password lets a user log in without being prompted for a password.
Creates a new user login name “louise” with the password “EnnuI”:
create user louise set password EnnuI
create user creates a new login name for a user.
Users can change their own passwords with the alter user command.
Case is significant for user login names and passwords.
create user requires “sa” permission.