Query my block size oracle

filippo picture filippo · Feb 1, 2011 · Viewed 41.6k times · Source

Is there a way I can tell the block size of my Oracle database if I don't have access to the v$parameter view?

Thanks!

f.

Answer

Tony Andrews picture Tony Andrews · Feb 1, 2011

You could do this:

select distinct bytes/blocks from user_segments;