It might be helpful, for maintenance purposes, to have a list of points that have the “Historic” option enabled. Below are two queries that can be used to generate such lists for DNP3 points and Modbus – Advanced points respectively:
SELECT
ID, FULLNAME
FROM
CDNP3POINT
WHERE
( "Historic" = TRUE )
ORDER BY
"FullName" ASC
----------------------------------------------
SELECT
ID, FULLNAME
FROM
CADVMODBUSPOINT
WHERE
( "Historic" = TRUE )
ORDER BY
"FullName" ASC
Please note that similar queries can be used to generate lists for other drivers. Proper tables for each driver can be found by using the Database Schema. More information on how to use the Database Schema can be found int the manual.