oracle会话增长很多,这些会话都是可以释放的,且都执行了下面的sql语句:
     SELECT NULL AS table_cat,
         o.owner AS table_schem,
         o.object_name AS table_name,
         o.object_type AS table_type,
         NULL AS res
    FROM all_objects o
    WHERE o.owner LIKE :1 ESCAPE '/'
         AND o.object_name LIKE :2 ESCAPE '/'
         AND o.object_type IN ('xxx', 'TABLE')
    ORDER BY table_type, table_schem, table_name请问这是什么情况?能不能解决这个问题,以减少执行的频率或次数(必须保证正常)?oraclehibernate会话数多增长快sql