如何清除PL/SQL中的缓存

每次查询前清空缓存
10g以上:
alter system flush buffer_cache;
9i:
ALTER SESSION SET EVENTS 'immediate trace name flush_cache';

原文地址:https://www.cnblogs.com/toowang/p/5138491.html