Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Oracle 数据库中重建以下对象...有人可以告诉我如何去做吗?
提前致谢。
对象 ID = 576
OBJECT_NAME
OBJECT_TYPE
SMON_SCN_TIME_TIM_IDX 索引
您需要以 SYS(或同等权限)身份连接并执行以下操作:
alter index smon_scn_time_tim_idx rebuild;
您对数据库的停机时间范围是多少?
使用任何 SYSTEM / SYS 对象(尤其是在 XE 等不受支持的数据库上)都是危险的。
由于 XE 的容量限制为 4GB,我会考虑将数据库脱机/导出/全新安装/导入作为解决方案。