Problem:
Application Engine Audits Result: Exception(s) Found (AE-16) Audit contents of PS_AELOCKMGR: Message ---------------------------------------------------- PS_AELOCKMGR contains 2row(s). There should be 1. 1 Total Rows
Solution:
In SQL Server Management Console, checked the contents of the S_AELOCKMGR table.
It returns:
AE_LOCK ------- N N
Delete the extra row using:
SET ROWCOUNT 1 DELETE FROM [FSDMO].[dbo].[PS_AELOCKMGR]
0 Comments.