You may need to get the block size of a datafile before running dbv (DBVERIFY) on it. The following will do this in sqlplus:
set wrap off
select t.name tablespace, file#, d.name datafile, block_size BS from v$datafile d join v$tablespace t using (ts#);





