Solved
Problems Querying Data Feed From Adobe
- August 28, 2023
- 1 reply
- 1014 views
My company is moving from ga to adobe analytics and am trying to replicate some structure and reports .
After reading the documentation ,am trying to create a visit_id and visitor_id since it needs for some analysis later on.
i used this to logic for the visit_id :
SELECT
post_visid_high||post_visid_low||visit_num||visit_start_time_gmt as visit_id
------
AND exclude_hit = 0
AND hit_source NOT IN (5,7,8,9)
and am having empty fields due the missing 'visit_start_time_gmt'

Any ideas ?