How To Validate Oracle Spatial in the DBA_REGISTRY (11gR2)

This solution is in reference to Oracle Metalink (Doc ID 1100898.1)

To rerun the Oracle Spatial validation procedure, run the following as SYSDBA

set serveroutput on 
exec sys.VALIDATE_SDO();

Query the dba_registry to verify Oracle Spatial has been set to VALID

Select comp_name, version, status from dba_registry where comp_id = ‘SDO’;

Leave a comment