UNCACHE TABLE
描述
UNCACHE TABLE
从内存和/或磁盘缓存中删除给定表或视图的条目和相关数据。底层条目应该已经通过之前的 CACHE TABLE
操作带入缓存。如果未指定 IF EXISTS
,则对不存在的表执行 UNCACHE TABLE
会引发异常。
语法
UNCACHE TABLE [ IF EXISTS ] table_identifier
参数
-
table_identifier
指定要取消缓存的表或视图名称。表或视图名称可以选择使用数据库名称进行限定。
语法:
[ database_name. ] table_name
示例
UNCACHE TABLE t1;