Issue:
Licenses page stuck at Loading Data

Cause:
knmLicenseUsage table is missing on the Database. Hence page is loaded and will be stuck in loading Data
Resolution:
Create a table by using below query:
USE [ksubscribers]<br>SET ANSI_NULLS ON<br>SET QUOTED_IDENTIFIER ON<br>CREATE TABLE [Inventory].[knmLicenseUsage](<br> [id] [numeric](26, 0) NULL,<br> [partitionId] [numeric](26, 0) NULL<br>) ON [PRIMARY]