Hi,

JFYI:

I found out, that oracle 11.2 Databases got a new "feature" which makes some 
trouble with spacewalk.

This "feature" cause oracle sequences to not start with "1"; they start with 
"2". See http://stackoverflow.com/questions/4153807/oracle-sequence-starting-
with-2-instead-of-1

Some monitoring code expect special columns with id 1 which fail if id 1 
column does not exist.

E.g:
java/code/src/com/redhat/rhn/domain/monitoring/satcluster/SatClusterFactory.java
    private static final PhysicalLocation PHYSICAL_LOCATION =
        lookupPhysicalLocation(new Long(1));

A quick fix is, to disable this feature in oracle with:

 alter system set deferred_segment_creation=FALSE;

but a real fix would be better.

-- 
Regards

        Michael Calmer

--------------------------------------------------------------------------
Michael Calmer
SUSE LINUX Products GmbH, Maxfeldstr. 5, D-90409 Nuernberg
T: +49 (0) 911 74053 0
F: +49 (0) 911 74053575  - e-mail: michael.cal...@suse.com
--------------------------------------------------------------------------
SUSE LINUX Products GmbH, GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer
HRB 16746 (AG Nürnberg)

Attachment: signature.asc
Description: This is a digitally signed message part.

_______________________________________________
Spacewalk-devel mailing list
Spacewalk-devel@redhat.com
https://www.redhat.com/mailman/listinfo/spacewalk-devel

Reply via email to