Hi ,
My organization uses Adobe marketing cloud as a web analytics tool. We currently get data after logging into the website and collecting figures manually. But I understand that we can achieve the same using clickstream data that is provided by adobe to my organization.
Could someone please help me out how to do this. I did a lot of research and came up with the below query that I ran on the clickstream data but the figures did not match. Infact the result that I got was way higher than what we get from Omniture.
The query is designed to run on teradata.
Select post_visit_hi_id,post_visit_low_id from clickstream
where geo_cntry_cd='xyz' and gmt_hit_dttm>='2015-01-01 00:00:00' and gmt_hit_dttm<='2015-01-31 23:59:59'
group by post_visit_hi_id,post_visit_low_id
The intention was to get unique visitors for a month. The result varied significantly. Help will be greatly appreciated.
Aim is to be able to generate unique visitors using clickstream data so that more cuts on the data can be generated.