Hi,
Make sure the CAT_Live field in tblKartrisCategories doesn't allow NULL values, if it allows NULL values (which means the table has been altered), then try to run the below SQL into your database:
DISABLE TRIGGER trigKartrisCategories_DML ON dbo.tblKartrisCategories;
UPDATE dbo.tblKartrisCategories SET CAT_Live = 1 WHERE CAT_Live IS NULL;
ENABLE TRIGGER trigKartrisCategories_DML ON dbo.tblKartrisCategories;
After running the above SQL, modify the table so it will not allow NULL values for that field, then try to log-in into the back-end.