Failed to find DP properties for DP with ID - XXX

  • 17 March 2021
  • Sean Huggans

Helped a SysAdmin today troubleshoot an issue that was driving them crazy. distmgr.log in their environment was throwing a "Thread_ProcessDPActions() failed with error code - 0x80004005" error constantly, preceded by and entry that stated "Failed to find DP properties for DP with ID - ". I tried a couple different things here, so including them all in case it helps someone, but feel free to skip to the end as the fix was really very simple.

At first, I thought it may be a stuck database entry somewhere that was never cleaned up, so I ran the following query in order to try and find which tables and views had the DPID column name present:

SELECT COLUMN_NAME AS 'ColumnName'
,TABLE_NAME AS 'TableName'
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME LIKE 'DPID%'
ORDER BY TableName
,ColumnName;

Then, using the output list, I ran each table and view name returned inside the following query:

SELECT * FROM [] WHERE DPID = order by DPID

Since this returned nothing, I decided to check the distmgr.box inbox, and there it was, a XXX.CF4 file where XXX matched the number of the DP that could not be found in the error.

Simply deleting this file stopped the error from occurring, and from constantly using the first available distribution thread in the environment.

Code: 
Query1:
SELECT      COLUMN_NAME AS 'ColumnName'
            ,TABLE_NAME AS  'TableName'
FROM        INFORMATION_SCHEMA.COLUMNS
WHERE       COLUMN_NAME LIKE 'DPID%'
ORDER BY    TableName
            ,ColumnName;
 
Query 2:
SELECT * FROM [<TableOrViewName>] WHERE DPID = <XXX> order by DPID

Vendor Links

Error | visuaFUSION Systems Solutions Blog

Error message

  • Warning: Cannot modify header information - headers already sent by (output started at /mnt/home/visuafus/public_html/bahusa.net/includes/common.inc:2861) in drupal_send_headers() (line 1551 of /mnt/home/visuafus/public_html/bahusa.net/includes/bootstrap.inc).
  • Error: Call to undefined function mail() in DefaultMailSystem->mail() (line 79 of /mnt/home/visuafus/public_html/bahusa.net/modules/system/system.mail.inc).

Error

The website encountered an unexpected error. Please try again later.