简体   繁体   English

在win 7上从Aginity工作台找到IBM netezza sql数据库上的表大小

[英]find the table size on IBM netezza sql database from Aginity workbench on win 7

I need to find a table size on IBM netezza sql database from Aginity workbench on win 7. 我需要在win 7上从Aginity workbench在IBM netezza sql数据库中找到一个表大小。

I used this 我用过这个

 SELECT  * FROM _V_TABLE
 where tablename = 'my_table_name'

But, no information about table size. 但是,没有关于表大小的信息。

I right-clicked the table name in Aginity, but, nothing came out. 我在Aginity中右键单击了表名,但是没有任何结果。

Any help would be appreciated. 任何帮助,将不胜感激。

thanks 谢谢

Try this query. 试试这个查询。

select used_bytes/pow(1024,3) as used_gb, *
from _v_table_storage_stat
where tablename = 'my_table_name'

In Aginity (v2.1.181.6948), right click on your database. 在Aginity(v2.1.181.6948)中,右键单击您的数据库。 Select 'Show Tables Size'. 选择“显示表格大小”。 The new window that appears will have table names, owner, created, bytes allocated, bytes used, etc. 出现的新窗口将包含表名,所有者,已创建,已分配的字节数,使用的字节数等。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在win 7的IBM netezza Aginity工作台中查找数据库大小的错误 - error of finding size of database in IBM netezza Aginity workbench on win 7 Win7上Aginity工作台在IBM netezza SQL数据库上执行SQL查询时出错 - Error of SQL query on IBM netezza SQL database from Aginity workbench on Win7 将SQL数据库从一台服务器复制到IBM netezza Aginity工作台上的另一台服务器 - copy a SQL database from one server to another server on IBM netezza Aginity workbench 如何从Aginity工作台检查在IBM Netezza SQL中创建表的数据和时间 - How to check the data and time that a table was created in IBM Netezza SQL from Aginity workbench 如果从Aginity工作台将47G数据文件导入到IBM netezza数据库,则会发生错误 - error if importing a 47G data file to IBM netezza database from Aginity workbench 在IBM netezza aginity工作台中更改表名的错误 - error of changing a tablename in IBM netezza aginity workbench 在IBM betezza aginity sql数据库工作台中导出大表时如何添加列名 - how to add column names when exporting a large table in IBM betezza aginity sql database workbench 在Win 7上从IBM netezza数据库导出sql数据表到txt文件的错误 - error of exporting a sql data table from IBM netezza database to a txt file on win 7 在IBM netezza数据库的SQL表中查找部分重复的行 - find partial duplicated rows in a SQL table in IBM netezza database 在 Netezza Aginity 中显示板条箱表 - SHOW CRATE TABLE in Netezza Aginity
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM