I dont want to print all my pages. Indeed, the components of my report are :
1. table component
2. query component
3. group band (header)
4. group band (footer)
5. summary band
My master table is the data source for my query with sql instruction:
select login,
sum(temp) as temp, sum(taille)/1024 as taille
from 'cast.db' c
where c.login = :login
group by login
order by login
Is problem because of execution of this query in my report ?
tnank you very much!
1. table component
2. query component
3. group band (header)
4. group band (footer)
5. summary band
My master table is the data source for my query with sql instruction:
select login,
sum(temp) as temp, sum(taille)/1024 as taille
from 'cast.db' c
where c.login = :login
group by login
order by login
Is problem because of execution of this query in my report ?
tnank you very much!