I just noticed a strange behaviour when downloading reports:
the following report definition will return an empty report:
SELECT MatchType,MatchTypeWithVariant, KeywordTextMatchingQuery, AdGroupId, CampaignId,Query
FROM SEARCH_QUERY_PERFORMANCE_REPORT
WHERE MatchTypeWithVariant IN [NEAR_EXACT,NEAR_PHRASE]
DURING 20041011, 20140820
however when adding a performance metric it correctly returns the data.
For example adding the impressions as:
SELECT MatchType,MatchTypeWithVariant, KeywordTextMatchingQuery, AdGroupId, CampaignId,Query, Impressions
FROM SEARCH_QUERY_PERFORMANCE_REPORT
WHERE MatchTypeWithVariant IN [NEAR_EXACT,NEAR_PHRASE]
DURING 20041011, 20140820
is this an expected behavior?
Thanks