Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction

Velocity Alarms are crucial for monitoring important events across your Velocity system but sometimes the number alarms can get out of hand, and all alarms must cleared. Having excessive number of alarms can also negatively impact Velocity client application performance.

...

  1. Open SQL Server Management Studio

  2. Connect

  3. Expand databases folder

  4. Right-Click Velocity Database > Select New Query

  5. Execute the following query. Once the query is completed executing, the message box will state you how may rows were affected.

Code Block
USE Velocity

...


DELETE TOP(1000000) FROM AlarmActive

 

  1. Execute the above query until you have deleted all active alarms, and the message box states zero rows affected.

...