Is it possible to retrieve a full audit of all read / write activities on a table ?SummaryIs it possible to retrieve a full audit of all read / write activities on a table ?ReleaseALLInstructionsAny read activities/transactions can be found via Transactions module (table name is syslog_transaction) But all the transactions like opening the table record (for e.g task record), updating or deleting, all those transactions will be captured in Transactions module and it would be difficult to differentiate exactly the read activities. Also this transaction table "syslog_transaction" is added by default in the Table Rotation list. The administrator specifies the time parameter (duration) of the process and the number of tables (rotations) within. After the rotation writes the last table in a rotation, the rotation overwrites the first table in the rotation.After the specific duration and the rotations, the old data will be deleted. Hence it is not possible to extract the old data after the specified dates.And regarding the write operations like any updates happened on the records of a table can be found in sys_audit table. This is called as Auditing. This will track record changes on auditing-enabled tables.The Now Platform tracks inserts changes to audited records in the Sys Audit (sys_audit).So depending on the auditing fields, you can track the updates in Sys Audit (sys_audit) table.Related LinksPlease go through Table rotation , Auditing and Enable auditing for a table for more details.