...
Open Microsoft SQL Server Management Studio
Connect to and open the BOSS database
Right Click on the VIEW directory and select the New View... option
Close the Add Table window
Copy the following query in to the view:[cce lang="sql"]
SELECT TOP (1000) Date, Action, Module, Result
FROM dbo.EventLog
WHERE (Result LIKE '%Running%' OR
Result LIKE '%Starting%' OR
Result LIKE '%finish%' OR
Result LIKE '%bill run%') AND (Module = 'Billing') AND Result NOT LIKE '%thread%'
ORDER BY ID DESC
[/cce]Code Block SELECT TOP (1000) DATE, Action, Module, RESULT FROM dbo.EventLog WHERE (RESULT LIKE '%Running%' OR RESULT LIKE '%Starting%' OR RESULT LIKE '%finish%' OR RESULT LIKE '%bill run%') AND (Module = 'Billing') AND RESULT NOT LIKE '%thread%' ORDER BY ID DESC
Click the Execute SQL button [ ! ] or [CTRL]+R, to run the query
Save the View (no special characters or spaces, under scores can be used in place of spaces). Remember the name of the view as you will need to enter this value in EngageIP Billing
...