I have a calculation query and i dont want it to show up on the report.
<<i need to hide this query>>
select SQL_CALC_FOUND_ROWS count(1) as 'Unsuccessful WC Attempts'
from dm.table cc;
<<this query shows the results i need>>
SELECT FOUND_ROWS() as 'Unsuccessful WC Attempts';
ALSO
I tried to use
select 'dbr.hidecolumns', 1;
but a little piece of header still holds the spot on the report.
After I posted this i tried this:
select 'dbr.hidecolumns', 1;
select 'dbr.hideheader';
<<query I wanted to hide>>
and the query is now hidden!