Summary
After migrating a repository, Workflow Distribution Manager does not finish loading. It may stop responding while displaying "User Integrity."
More Information
Repository migration may erroneously create an invalid user ID in the WorkUsers table.
This issue will not occur when migrating a repository using the Laserfiche 6 to 7 Migration wizard provided with Laserfiche 7.1.1. If you are already experiencing this issue, please see the resolution provided below.
Resolution
This issue can be resolved by removing the invalid user ID from the WorkUsers table using either Enterprise Manager or osql.
To remove an invalid user ID using Enterprise Manager
To remove an invalid user ID using osql
cmd
osql -E -S SQLInstance -d DatabaseName
SQLInstance is the name assigned to the desired instance of SQL Server. This term should be replaced by the name of the computer hosting SQL Server. If you are using MSDE (i.e. Laserfiche Server (Team) or Standalone), then you should also append "\Laserfiche" (e.g. Computer\Laserfiche).1>
Delete From WorkUsers where UserID=0;
GO