In the Metadata import task, the task Import of available vendors is running and it can't be stopped. Even a reboot of the Notification Server doesn't stop it.
ITMS 8.x
Patch Management Solution 8.x
This is a rare occurrence. The Current and Last Statuses in the Windows Updates PreImport Worker State field was stuck as running, likely caused by an interruption in the background services and processes when the task was initially started.
Caution: Make a backup of the Symantec CMDB database prior to running the below update query.
To stop the task, first run this query and copy the State column contents to a text editor:
select name, cast(state as XML) as 'State' from item where guid = 'f8d384de-d891-4f1d-8a0f-7f9c92794a9f'
Look for these two tags:
<LastStatus>1</LastStatus><CurrentStatus>1</CurrentStatus>
Change the values for LastStatus and CurrentStatus to 3, and leave the rest of the result unchanged.
<LastStatus>3</LastStatus><CurrentStatus>3</CurrentStatus>
Copy the full edited result into this query and run the query:
update item set state = 'PASTE THE EDITED RESULT HERE BETWEEN THE SINGLE QUOTES' where guid = 'f8d384de-d891-4f1d-8a0f-7f9c92794a9f'
NOTE: Changes were made in the ITMS 8.6 RU3 code to ensure this doesn't happen.