Reply To: Delete Images in WDM 4.5.3

#13987
karaziel
Member
  • Total Post: 74
  • Back Stage Pass
  • ★★★★

Could be orphaned entries in the database. WDM tracks everything in the database. In this case scheduled updates are stored in the ‘Command’ table.
Try deleting any entries in the ‘Command’ table. This should free up any restraints on deleting your package.

This is a little more difficult if you are using MSDE, as you’ll have to do it from command line:

example:
osql -S localhostRapportDB -d RapportDB -U Rapport -P ThinMgmt_451 -q “delete from command”

-k