I have a query that is throwing the unknown error…and has been for hours. How do I address this?
;WITH dateInstances AS (
SELECT
EntryMonth
,InstanceCount
FROM cached_query_407999
WHERE EntryDate >= date(‘now’,’-1 month’)
GROUP BY instanceName
)
select * from dateInstances
I am able to run the actual query for “407999” and get results. Other queries work. What would be causing this?