本文介绍了在 win 7 上从 Aginity 工作台找到 IBM netezza sql 数据库上的表大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在 Win 7 上的 Aginity Workbench 中找到 IBM netezza sql 数据库上的表大小.

I need to find a table size on IBM netezza sql database from Aginity workbench on win 7.

我用过这个

 SELECT  * FROM _V_TABLE
 where tablename = 'my_table_name'

但是,没有关于表大小的信息.

But, no information about table size.

我在 Aginity 中右键单击了表名,但没有任何结果.

I right-clicked the table name in Aginity, but, nothing came out.

任何帮助将不胜感激.

谢谢

推荐答案

试试这个查询.

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

这篇关于在 win 7 上从 Aginity 工作台找到 IBM netezza sql 数据库上的表大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 04:44