To find total permanent space taken by a table on all AMPs.
select databasename, tablename, sum(currentperm)
from dbc.tablesize where databasename = 'raja'
and tablename = 'testing' group by databasename , tablename;
DataBaseName TableName Sum(CurrentPerm)
---------------- ------------ - ------------------
raja testing 1,536
here 'testing' is the table name and raja the user/database name.
To find total permanent space taken by a table on each AMP.
select databasename, tablename, currentperm,Vproc from dbc.tablesize where databasename ='raja' and tablename = 'testing' ;
DataBaseName TableName Sum(CurrentPerm) Vproc
---------------- ------------ ------------------- ------
raja testing 1,024 0
raja testing 512 1
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment