We have a dynamically generated query that runs every day with a new number in it.
Day 1 - Hash X
SELECT T.ID,
1000 (dynamically generated) AS ETL_RUNID
FROM TABLENAME T
Day 2 - Hash Y
SELECT T.ID,
1001 (dynamically generated) AS ETL_RUNID
FROM TABLENAME T
Every day that number increments by one. This causes us to lose historical tracking because DPA does not recognize them as similar queries since it's not parameterized.
Is there anyway that I can associate these daily queries together and make them appear to DPA that they are the same query? Even if it's something I have to manually run on the repository database I would be OK with that.
Thanks!