We have many packages that continue to generate hundreds of thousands of status message for SMS_DISTRIBUTION_MANAGER. Every 10 seconds they generate a new message.
SMS Distribution Manager successfully processed package "Shepards Brief Suite" (package ID = CN1002AA).
I've done the following.
I have Removed the package from the secondary site. the Package Status says it is gone.
Source Verstion = 0
Targeted = 0
Installed = 0
Yet when I go to the SMSPKD$ on the secondary site I still see the CN1002AA folder and it is full of source files including the .MSI.
I then went into the SQL Server. I ran the following queries.
USE SMS_CN1
SELECT * FROM PkgServers where NALPath = '["Display=\\PITVMSCCM\"]MSWNET:["SMS_SITE=P12"]\\PITVMSCCM\' and pkgID LIKE 'CN1002AA'
USE SMS_P02
SELECT * FROM PkgServers where NALPath = '["Display=\\PITVMSCCM\"]MSWNET:["SMS_SITE=P12"]\\PITVMSCCM\' and pkgID LIKE 'CN1002AA'
it found 1 record on each server (central and primary) I then ran this query
USE SMS_CN1
DELETE FROM PkgStatus where PkgServer LIKE 'PITVMSCCM' and ID LIKE 'CN1002AA'
USE SMS_P02
DELETE FROM PkgStatus where PkgServer LIKE 'PITVMSCCM' and ID LIKE 'CN1002AA'
All of this was done yesterday afternoon. I come into today 18 hours later and the Package Status for package ID CN1002AA it still generating status messages every 10 seconds.
Why and how do I get rid of this?
mqh7