I am moving my web/app portion of lansweeper to a new server and keeping the same back end database. The move procedure http://www.lansweeper.com/kb/17/move-lansweeper-to-different-server.html
step 11 has a flaw now that the database has a few new tables for the deployment features. The reference constraint in that other table is preventing a change in the below referenced tables. I believe the reference constraint needs to be dropped and then re-added. I will also open a support request on this one but this issue being in the forum may help someone else.
use lansweeperdb
GO
update tsysasservers set servername='servernamenew' where servername='servernameold'
GO
update tblassets set scanserver='servernamenew' where scanserver='servernameold'
GO
Msg 547, Level 16, State 0, Line 4
The UPDATE statement conflicted with the REFERENCE constraint "FK_tsysPackageExecution_tsysASServers". The conflict occurred in database "lansweeperdb", table "dbo.tsysPackageExecution", column 'ScanServer'.
The statement has been terminated.
(0 row(s) affected)