List the tables in the data lake from an XG Firewall.
-- List ALL XG FW Tables
SELECT DISTINCT log_type, log_component, COUNT(dist_key) entries
FROM xgfw_data
GROUP BY log_type, log_component
ORDER By log_type, log_component ASC
Sample results...