Is this possible? Or at least I'm looking to have a list of the size of all rows in a table.
相关问题
- Can I skip certificate verification oracle utl_htt
- how to calculate sum time with data type char in o
- keeping one connection to DB or opening closing pe
- System.Data.OracleClient not working with 64 bit O
- How can I get rid of dynamic SQL
相关文章
- node连接远程oracle报错
- oracle 11g expdp导出作业调用失败,提示丢包。
- 执行一复杂的SQL语句效率高,还是执行多少简单的语句效率高
- Oracle equivalent of PostgreSQL INSERT…RETURNING *
- How to add rows in middle of a table with jQuery?
- Difference between FOR UPDATE OF and FOR UPDATE
- Understanding the difference between Collection.is
- display CENTERED row of images
if you're interested in the average row length, you could analyze the table (with the DBMS_STATS package), then query
ALL_TABLES.avg_row_len
.for the long_raw_length_function, see this Get the LENGTH of a LONG RAW
Here below is the query I have modified to get the table row length when you don't have any data. This can help you with Capacity planning for Environment setup: