oracle:
alter system flush buffer_cache;
(Buffer Cache缓存了已经访问过的数据块,以便更快地访问它们。)
alter system flush shared_pool;
(Shared Pool Cache缓存了Oracle中的SQL语句和元数据)
kingbase:
vacuum; 或者vacuum 表名
oracle:
alter system flush buffer_cache;
(Buffer Cache缓存了已经访问过的数据块,以便更快地访问它们。)
alter system flush shared_pool;
(Shared Pool Cache缓存了Oracle中的SQL语句和元数据)
kingbase:
vacuum; 或者vacuum 表名