Summary
When you attempt to start the Laserfiche Server service, you may receive the following error message:
Error 1067: 'The process terminated unexpectedly'
Cause
There may be an invalid entry in the IndexQueue table.
Resolution
Manually clear out the IndexQueue SQL table.
To clear out the IndexQueue table 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).
DatabaseName is the name of the SQL database associated with a Laserfiche repository. If you are using MSDE (i.e. Laserfiche Server (Team) or Standalone), then it is important that you specify the main SQL database and not one of the expansion databases.
1>
delete from indexqueue
This step removes all documents currently scheduled to be indexed by the Laserfiche Server.
GO