Skip to main content

Posts

Showing posts with the label Error code 110-Concurrent number of AOS for this application Exceeds the licensed number in axapta service

Error code 110-Concurrent number of AOS for this application Exceeds the licensed number in axapta service

Problem: If you are facing Error code 110-"Concurrent number of AOS for this application Exceeds the licensed number" in axapta service  starting then you can apply below solution. Solution: You can go to sql server where you database attached. select the database open query editor then find the record from table dbo.sysserversessions  where status is active. You need to update that status to inactive it means set the value to zero. like this. update dbo.sysserversessions set status = 0 where status = 1 I hope your problem will be resolve by this.