Hello,
I am seeing a large amount of errors in my event logs from netflow that state the following:
Event Type: Error
Event Source: NetFlowService
Event Category: None
Event ID: 0
Date: 2/21/2008
Time: 1:49:29 PM
User: N/A
Computer:
Description:
Exception: error occurred during packet processing. Object reference not set to an instance of an object.
I did a search and it is a bug apparently and the solution was the following:
here is a bug fix in the works for this, but in the meantime, running this query should get the messages to stop.
INSERT INTO PortsProtocols
SELECT ServicePorts.Port, -1 FROM ServicePorts
WHERE ServicePorts.Port NOT IN
(
SELECT PortId FROM PortsProtocols WHERE PortId=ServicePorts.Port
)
GO
What exactly does "run this query" mean? In the database manager?