Question

I would like to know how to check out what is the biggest float value in terms of used bytes in a specific column.

Oracle DB Version is 10.2.

Was it helpful?

Solution

VSIZE

VSIZE returns the number of bytes in the internal representation of expr.

select max(vsize(mycolumn)) from mytable;

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top