Summary
You can set a SQL Server login as the owner of the database tables associated with your Laserfiche repository. However, this can prevent you from moving documents and configuring auditing.
Cause
Currently, Laserfiche expects the owner of the AuditEvent table to be "dbo". If the table's owner is another database user, then you may encounter an Error 7050 when moving entries or configuring auditing.
Workaround
Set "dbo" as the owner of the AuditEvent table.
To change the owner of a database object using osql
cmd
osql -E -S ComputerName\Laserfiiche
Note: If you are using the full version of Microsoft SQL Server, then you should only specify the name of the computer where the SQL Server resides.
USE YourDatabaseName
EXEC sp_changeobjectowner 'CurrentOwner.AuditEvent', 'dbo'
GO