ORA-03293: Cluster to be truncated is a HASH CLUSTER
Cause: Only INDEX CLUSTERS can be truncated.
Action: Drop and recreate the HASH CLUSTER instead of using truncate.
错误ORA-03293表明要截断的簇是Hash Cluster,这是不允许的。
1)确保您为Hash Cluster在正确的表空间上分配了适当的存储空间;
2)如果不使用Hash Cluster,您可以使用DROP CLUSTER指令将其删除;
3)要截断哈希表,您必须将其更改为非哈希表;
4)或者,您可以重新分配表空间,以缩小哈希表的大小。