Difference between revisions of "Maximum number of licences has been reached message"

From support-works
Jump to navigation Jump to search
(Created page with "If you encounter this particular error message when attempting to login it is likely that all available licences have been reserved to one or more Service desk groups that t...")
 
Line 2: Line 2:
 
one or more Service desk groups that the user is not a member of.  
 
one or more Service desk groups that the user is not a member of.  
  
Resolution : Set the reserved licence within the swgroups table to 0
+
Resolution : Set the reserved licence within the swgroups table to 0.  To do this carry out the following:
 +
 
 +
 
 +
# Run the Interactive SQL program. (Start > Programs > Hornbill Core Services > Interactive SQL.)
 +
# Enter the following.
 +
#: <code>use ''sw_systemdb''; </code>
 +
#: <code>update swgroups set reservedlicenses = '';</code>
 +
# Be sure to include the semi colon at the end of each statement above otherwise the command will not execute.

Revision as of 16:15, 20 August 2015

If you encounter this particular error message when attempting to login it is likely that all available licences have been reserved to one or more Service desk groups that the user is not a member of.

Resolution : Set the reserved licence within the swgroups table to 0. To do this carry out the following:


  1. Run the Interactive SQL program. (Start > Programs > Hornbill Core Services > Interactive SQL.)
  2. Enter the following.
    use sw_systemdb;
    update swgroups set reservedlicenses = ;
  3. Be sure to include the semi colon at the end of each statement above otherwise the command will not execute.