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]
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
CREATE TABLE [Inventory].[knmLicenseUsage](
[id] [numeric](26, 0) NULL,
[partitionId] [numeric](26, 0) NULL
) ON [PRIMARY]