I’d bet money its the Command table
If you get an update orphaned in there, it’ll react like this.
If you don’t have access to SQL Ent Client Tools, then you can download the free set from MS (wiht SQL2005 Express) or just connect via command line
with MSDE something like this should work for you
Start Run CMD
osql -S localhostRapportDB -d RapportDB -U Rapport -P ThinMgmt
;At the prompt type this to list any entries in the command table:
Select * from Command
GO
;This should delete those entries:
Delete from Command
GO
;If error returned complaining about another table run this:
Delete from CommandArg
GO
;Now run the other delete script
EXIT should disconnect from SQL and leave you back to command prompt
See if this fix your issue.
-k