In ClustrixDB there is currently no way to get historical information about statements from within a transaction after the statement has run, unless you have full query logging enabled.
To enable full query logging set the following two global variables:
sql> SET GLOBAL session_log_slow_queries = 1;
sql> SET GLOBAL session_log_slow_threshold_ms = 0;
You can learn more about query logging on our documentation site: Query Logging
0 Comments