Compute Sum Label 'Total' Of No_Kb On Report
Compute Sum Label 'Total' Of No_Mb On Report
Select Table_Name,
-----------------------------------------------------
Num_Rows,
-----------------------------------------------------
Avg_Row_Len,
-----------------------------------------------------
Num_Rows * Avg_Row_Len
As
No_Bytes,
-----------------------------------------------------
Round(Num_Rows * Avg_Row_Len/1024,2)
As
No_Kb,
-----------------------------------------------------
Round(Num_Rows * Avg_Row_Len/1024/1024,2)
As
No_Mb
-----------------------------------------------------
From User_Tables;
Avg
Table Num Row
Name Rows Len NO_BYTES NO_KB NO_MB
------------ ----- ---- ---------- ---------- ----------
DEPT 4 20 80 .08 0
EMP 14 37 518 .51 0
BONUS 0 0 0 0 0
SALGRADE 5 10 50 .05 0
---------- ----------
Total .64 0
How to get URL of commentator
-
We sometimes get questions about how to get the web address/URL of a
commentator in our blog. Blogger.com has not provided any way to do that.
However, the...
7 years ago
No comments:
Post a Comment