The spool is released, i.e. not using space, but it's reducing the user's available spool because the size is not correct.
In fact there's another source for wrong CurrentSpace, Orphan spools, which have allocated space, but these are rare.
You can find any left-over spool using:
/*** Phantom Spool ***/
select
databasename
,sum(currentspool) as LeftOver
,'update spool space for ' || trim(databasename) || ';'
from dbc.diskspace
where databasename not in
(select username from dbc.sessioninfo)
group by 1
having LeftOver > 0
Dieter
The spool is released, i.e. not using space, but it's reducing the user's available spool because the size is not correct.
In fact there's another source for wrong CurrentSpace, Orphan spools, which have allocated space, but these are rare.
You can find any left-over spool using:
Dieter