Show TOC

user_createLocate this document in the navigation structure

Use

Immediately after a database has been created, there is one DBM operator only (the first DBM operator) and the database system administrator. To create further DBM operators for this database, use the user_create command. This defines the operator name and password. This new operator you have created does not have any server permissions so far however. Assign these explicitly to the operator using the user_put command.

Alternatively, when creating the operator, you can specify an existing DBM operator from which you copy all DBM operator properties except name and password.

See Conventions for User Names and Passwords.

Note

The database system automatically converts user names and passwords for DBM operators into uppercase letters.

Prerequisites

You have the server permission UserMgm.

Structure

user_create <dbm_operator>[,<password> | EXTERNAL_IDS=<external_ids>] [<template_user>]

Option

Description

<dbm_operator>

Name of the DBM operator to be created

<password>

Password of DBM operator to be created. Note that there must not be a blank between <dbm_operator>, the comma and <password>.

<external_ids>

If the new DBM operator shall be authenticated externally, a comma-separated list of external identifiers can be passed here. Not the blank before the token EXTERNAL_IDS.

<template_user>

DBM operator from which operator properties are to be copied

Result

OK

In the event of errors, see Reply Format.

Example

Call Database Manager CLI, log on as the operator OLEG with the password  MONDAY, connect to the database  DEMODB, and create the DBM operator  ELENA with the password  SUNDAY and the permissions of the operator  OLEG:

> dbmcli -u OLEG,MONDAY -d DEMODB user_create ELENA,SUNDAY OLEG

OK

More Information