You can create an SQL responder to record details of alerts in the RulePoint database or any other target database.
Consider the example of Stock table from the SQL Source services in which you have a Stock table with the Symbol, Price, Volume, and RecordTime information.
SQL Responder for a source with a parameterized query
You can use the following SQL query to insert information into the Stock table:
insert into Stocks(symbol, price) values('TEST','81')
This SQL query inserts a row in the Stock table with values for Symbol and Price columns.
SQL Responder for a source with query using limit
You can constrain the SQL query by inserting the values for selected columns of the table.
insert into Stocks(symbol, price) values('LIMIT','13')
This SQL query inserts values to the Symbol and Price column of the Stock table.