A cognos query turns out be a heavy CPU consumer which I tuned using Volatile tables. I'd like to know from someone who is familiar with implementing Volatile tables in Teradata via Cognos whether this is easily do-able . I did something like that in the past using JI's or materialized table but in the given situation VT's are the only option Original Q is something like this :
sel
Case statements,
Sum ( Fct.C1)
Sum ( FCt.C2)
Case when ( Dim.C3 in < value list of 3000+) then ______
each of these column is part o the cubes and these are written by "framework manager" component as ICD files that contain the SQL
What I want to do is manually modify these ICD's to stick in the VT creation code and but still keep the Column list SAME
Create VT1 as ( sel ...)
Create Vt2 as ( sel ...)
Select <same column list >
from VT1 Join Conditions VT2 Join others
How can this be implemented and what challenges need to be addressed.