是否可以使用JDBC在Java应用程序中访问Oracle表级统计信息?我对值NUM_ROWS和AVG_ROW_LEN特别感兴趣,目的是为查询估计最佳内存缓冲区大小和访存大小。

最佳答案

如果您不关心数据库独立性

SELECT num_rows, avg_row_len
  FROM all_tables
 WHERE owner = '<<owner of the table>>'
   AND table_name = '<<name of the table>>'

10-06 07:00