Windows Ninja
Windows Ninja

Reputation: 259

How would I go about rebuilding an object in an Oracle XE database?

I need to rebuild the following object in an Oracle database...can somebody tell me how I would go about doing this?

Thanks in advance.

OBJECT ID = 576

OBJECT_NAME

OBJECT_TYPE

SMON_SCN_TIME_TIM_IDX INDEX

Upvotes: 2

Views: 1181

Answers (2)

Gary Myers
Gary Myers

Reputation: 35401

What's your scope for downtime on the database ?

Playing with any SYSTEM / SYS object (especially on an unsupported database like XE) is dangerous.

Since XE is limited to 4GB in volume, I'd consider taking the DB offline / export / fresh install / import as a solution.

Upvotes: 0

dpbradley
dpbradley

Reputation: 11925

You need to connect as SYS (or equivalent privileges) and do this:

alter index smon_scn_time_tim_idx rebuild;

Upvotes: 1

Related Questions