Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/oracle/9.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/date/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Oracle “中显示的列是什么?”;“估计表大小”;蟾蜍?有人能解释一下吗?_Oracle_Toad - Fatal编程技术网

Oracle “中显示的列是什么?”;“估计表大小”;蟾蜍?有人能解释一下吗?

Oracle “中显示的列是什么?”;“估计表大小”;蟾蜍?有人能解释一下吗?,oracle,toad,Oracle,Toad,我使用的是toad“估计表大小”,它显示了许多列: AVG Row Len (states) Est Size (states) Max Row Len (DDL) Est Size (DDL) AVG Row Len (scan) Est Size (Scan) 有人能解释一下这些专栏吗? 大小和长度之间有什么区别?蟾蜍帮助中的一些要点: Avg Row Len(扫描)基于表中当前的数据计算Avg Row Len (即,您需要使用故障诊断仪进行扫描)

我使用的是toad“估计表大小”,它显示了许多列:

   AVG Row Len (states) 
   Est Size (states)
   Max Row Len (DDL)
   Est Size (DDL)
   AVG Row Len (scan) 
   Est Size (Scan)
有人能解释一下这些专栏吗?
大小和长度之间有什么区别?

蟾蜍帮助中的一些要点:


Avg Row Len(扫描)基于表中当前的数据计算Avg Row Len (即,您需要使用故障诊断仪进行扫描)

Avg Row Len(统计数据)提取Oracle上次收集表上统计数据时存储的Avg行长度(基于收集统计数据时表中的数据)

Max Row Len(DDL)根据列的类型和数量提取最大行长度

如果这些方法都不适用,您可以在平均行Len(用户)中输入自己的号码。
例如,如果您有样本数据,但您知道样本数据的字段中的值太小,那么您可以进行扫描,然后将略大于Avg Row Len(扫描)的数字放入Avg Row Len(用户)中.

我找不到任何特定的文档,但如果所有行都被填充到最大大小,我希望DDL size是表的大小。要获得正确的估计值,您需要按下扫描按钮,然后将更新Est大小(扫描),从而更好地了解表的实际大小

Thanx ajmalmhd04感谢您的帮助回答:)您知道蟾蜍如何计算Est大小(DDL)列吗?@zinab taher Yow将从中获得许多关于估算的要点