Hi Armtenka,
Please, run the following scripts for look temp tables and owner's.
__________________________________________________ ____
{
dbaccess sysmaster 2>/dev/null << EOF
SELECT substr(n.dbsname,1,15) type,
substr(n.owner,1,15) users,
substr(n.tabname,1,18) table,
substr(dbinfo('DBSPACE', i.ti_partnum),1,15) dbspace,
round(i.ti_nptotal*2,0) kb
FROM systabnames n, systabinfo i
WHERE (bitval(i.ti_flags, 32) = 1
OR bitval(i.ti_flags, 64) = 1
OR bitval(i.ti_flags, 128) = 1)
AND i.ti_partnum = n.partnum
into temp ggtmp with no log;
SELECT type[1,12], users, table, dbspace[1,12], kb
from ggtmp
order by 1,2,3,4
EOF
} |more
__________________________________________________ ____
Gustavo.