Solutions :
Delete action for previously deleted package server '["Display=\\servername01\sms2003dp\"]MSWNET:["SMS_SITE=ABC"]\\servername01\sms2003dp\' for package 'ABC00002' will be ignored.Using SQL Server Management Studio, the Microsoft technician and I used the following queries to find if the DPs were still in our databases:
Delete action for previously deleted package server '["Display=\\servername02\sms2003dp\"]MSWNET:["SMS_SITE=ABC"]\\servername02\sms2003dp\' for package 'ABC00002' will be ignored.
SELECT * FROM PkgServers WHERE NALPath like '%servername01%'Once we confirmed these queries returned entries for the orphaned DPs (and ONLY the orphaned DPs) we checked to make sure we had a valid SMS backup. Once that was confirmed, we ran a delete query to clean things up:
SELECT * FROM PkgStatus WHERE PkgServer like '%servername01%'
DELETE FROM PkgServers WHERE NALPath like '%servername01%'And like that, I no longer have activity from non-existant DPs.
DELETE FROM PkgStatus WHERE PkgServer like '%servername01%'
Cheers!!!!!!!!!!
No comments:
Post a Comment