CreateUser
Create a user.
Execute
EXEC CreateUser Name='Test', Email='[email protected]', FullName='test', Password='test123', Description='testDescription'
Input
| Name | Type | Required | Description |
| Name | String | True | The name of the user. |
| FullName | String | False | The full name of the user. |
| String | False | The email of the user. | |
| Password | String | False | The password of the user. |
| Description | String | False | The description of the user. |
| IsNamedUser | Boolean | False | The user connection type.
The default value is true. |
| ForcePasswordChange | Boolean | False | To force the user to change the password.
The default value is true. |
| PasswordExpire | Boolean | False | To enable password expiry.
The default value is false. |
| AllowChangePassword | Boolean | False | Enable or disable password change.
The default value is true. |
Result Set Columns
| Name | Type | Description |
| Id | Integer | The Id of the created user. |
| Success | Boolean | Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details. |
| Details | String | Details of execution failure. NULL if success=true. |