Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
In some scenarios, users need to get the changelog to do some auditing work, such as determining the number of updates and inserts.
We can provide audit_log system table, users can get the rowkind information column.
INSERT INTO T VALUES ('1', '2', '3'); INSERT INTO T VALUES ('1', '4', '5'); SELECT * FROM T$audit_log; users can get: - "+I", "1", "2", "3" - "-U", "1", "2", "3"; - "+U", "1", "4", "5"