无法重新组织表 "ty_wf_ex_local_process_info" 的索引 "idx_prc_act_id" (分区 1),因为已禁用页级锁定. ALTER INDEX idx_prc_act_id ON [dbo].[ty_wf_ex_local_process_info] SET ( ALLOW_PAGE_LOCKS = ON )
ORA-01502: 索引或这类索引的分区处于不可用状态 原因: 出现这个问题,可能有人move过表,或者disable 过索引.1. alter table xxxxxx move tablespace xxxxxxx 命令后,索引就会失效.2. alter index index_name unusable,命令使索引失效.解决办法:1. 重建索引才是解决这类问题的完全的方法. alter index index_name rebuild (online); 或者alter
首先看官方文档上的解释: Managing External Tables Oracle Database allows you read-only access to data in external tables. External tables are definedas tables that do not reside in the database, and can be in any format forwhich an access driver is provided. By