Jul 30, 2004 #1 woodyinoz IS-IT--Management Jan 8, 2002 215 GB Hi all, Is there a way of finding out a table size in SQLBase? Thanks, Woody
Jul 30, 2004 #2 OliverA Programmer Jun 25, 2004 11 DE Hello, try this good tool: http://www.iceteagroup.com/Products/SqlEngineer.htt In the app. there is a funtionality to calculate the table size or do it with the sql statement: SELECT NAME, CREATOR, @ROUND(PAGECOUNT/1024,2) As Size FROM SYSADM.SYSTABLES WHERE SYSTEM = 'N' AND TYPE = 'T' ORDER BY PAGECOUNT DESC Oliver Upvote 0 Downvote
Hello, try this good tool: http://www.iceteagroup.com/Products/SqlEngineer.htt In the app. there is a funtionality to calculate the table size or do it with the sql statement: SELECT NAME, CREATOR, @ROUND(PAGECOUNT/1024,2) As Size FROM SYSADM.SYSTABLES WHERE SYSTEM = 'N' AND TYPE = 'T' ORDER BY PAGECOUNT DESC Oliver