The alerts database tables hold event information that is forwarded to the ObjectServer. You can use filters and views to define which of this event information is displayed in your event lists.
A filter controls which alerts (or database records) can be seen, and a view controls which columns (or database fields) are visible for those alerts. You can perform information requests on the database tables using Structured Query Language (SQL).
The following example shows a SELECT statement that is performed on the alerts.status table:
select Node as NODE, Summary as Detail from alerts.status
where Node ='link1'
The SELECT clause is constructed within the View Builder, which is used to create and edit views. The WHERE clause is constructed within the Filter Builder, which is used to create and edit filters.