From d7b14c0c4555435d4f25a715ec04d45f8c76177c Mon Sep 17 00:00:00 2001
From: Matthew Burgess
@@ -234,6 +261,10 @@
Example: Select all fields from the remoteIdentifier String
+alternateIdentifier String
+FLOW_CONFIG_HISTORY
+
+
+ Column Data Type
+ actionId int
+ actionTimestamp long
+ actionUserIdentity String
+ actionSourceId String
+ actionSourceName String
+ actionSourceType String
+ actionOperation String
+ configureDetailsName String
+ configureDetailsPreviousValue String
+ configureDetailsValue String
+ connectionSourceId String
+ connectionSourceName String
+ connectionSourceType String
+ connectionDestinationId String
+ connectionDestinationName String
+ connectionDestinationType String
+ connectionRelationship String
+ moveGroup String
+ moveGroupId String
+ movePreviousGroup String
+ movePreviousGroupId String
+purgeEndDate long
SQL Query Examples
PROVENANCE
table with time window:
SELECT * from PROVENANCE where timestampMillis > $provenanceStartTime and timestampMillis <= $provenanceEndTime
+ Example: Select connection-related fields from the FLOW_CONFIG_HISTORY
table:
+
SELECT connectionSourceName, connectionDestinationName, connectionRelationship from FLOW_CONFIG_HISTORY+