SAP SYBASE IQ Partitioned Tables
This section help find list of Partitioned
tables in IQ
List
of all the Partitioned tables in IQ
SQL1>
select
b.table_name,b.table_type,a.create_time,a.update_time,z.dbspace_name from
sysiqtable a, systable b, sysfile z where z.file_id=b.file_id and
a.table_id=b.table_id and a.table_id in (select distinct table_id from
syspartitions)
Details of particular
table which is partitioned
SQL2> select
partition_id,partition_values,partition_name from syspartitions where table_id
in (select table_id from systable where table_name='<table_name>')
how to obtain storage sizes at each partition here for that partitioned table ?
ReplyDelete