OnContact User Administration

OnContact Administration: New User > Login OnContact Administration: New User > System OnContact Administration: New User > E-mail

Automatically Fill Username at Login
License Limit

If there are too many users defined in the OnContact users database (i.e. more than 30 users), then the following message shows up when connecting to OnContact:

The number of users defined to the application exceeds what is allowed by the 
software license. Please contact your administrator.

To fix this, connect to the SQL database (using SQL Administration), and perform the following queries:

To view all users:

SELECT *
FROM dbo.onca_user

To deactivate the offending user (eg 'missy'):

UPDATE dbo.onca_user
SET active='N'
WHERE dbo.onca_user.user_code = 'missy'

To fix a password:

UPDATE dbo.onca_user
SET dbo.onca_user.password_value = 'ZxL4Pwi7iNi5RpIYFPH9VxyU3fs='
WHERE dbo.onca_user.user_code = 'missy'
MS SQL Management (Only for Manual Queries and Data Migration)

MS SQL: User creation for OnContact database

MS SQL: Security > Logins for OnContact database MS SQL: Security > Logins for OnContact database MS SQL: Security > Logins for OnContact database MS SQL: Security > Logins for OnContact database MS SQL: Security > Logins for OnContact database