Hello
Please help!
How to list all tables on the tablespace?
How to count number of rows per table along with the space information?
Is there a utility where you can specify your tables to export all the data from these tables in comma delimited format?
I don't need to export all tables from the tablespace, but to be able to choose from the list.
This did not do the much…
select substr(name,1,45) table_name,card record_count from
sysibm.systables where creator = 'MASYS' and type = 'T'
Thanks!
Please help!
How to list all tables on the tablespace?
How to count number of rows per table along with the space information?
Is there a utility where you can specify your tables to export all the data from these tables in comma delimited format?
I don't need to export all tables from the tablespace, but to be able to choose from the list.
This did not do the much…
select substr(name,1,45) table_name,card record_count from
sysibm.systables where creator = 'MASYS' and type = 'T'
Thanks!