Skip to Main Content

Infrastructure Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Support Contract for Oracle Linux

marljerome-makatimedOct 23 2015 — edited Nov 6 2015

Hi All,

I am proposing an initiative in our company to standardize our Linux installations. Of course, this includes the choice of Linux distro to use. Right now, we're currently running a mix of different distros for our applications. Factors we are considering are the cost and the stability of the OS. Following some time of evaluation, we have shortlisted the following distros as the possible candidates for this initiative:

* Oracle Linux

* CentOS

* SLES

We have an existing support contract with Novell for SLES so I think it makes sense to add them into consideration. However, we are leaning towards considering a viable free alternative to reduce costs. With that, I would like to know what is Oracle's official stand regarding Oracle Linux's support.


a) Is it required to purchase an Oracle Linux support contract if I want to use OL on a production environment?

b) Does running Oracle database on Oracle Linux require addition licensing and/or support cost?

I would appreciate it if you can point me to some official references regarding this topic as well.

Thank you in advance.

This post has been answered by Avi Miller-Oracle on Oct 23 2015
Jump to Answer

Comments

mNem
Answer

with t (vCampo1) as

(

select

'<?xml version="1.0" encoding="UTF-8"?>

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">

<S:Body>

<ns2:ConsultaEEHResponse xmlns:ns2="http://jeta.servicios.ws/">

<return>

<codigoError>6</codigoError>

<mensaje>El Banco se encuentra Inactivo para Recaudo.</mensaje>

<resultado>false</resultado>

</return>

</ns2:ConsultaEEHResponse>

</S:Body>

</S:Envelope>'

from dual

)

select a.*

from t,

XMLTABLE(

    xmlnamespaces(

      'http://schemas.xmlsoap.org/soap/envelope/' as "S",

      'http://jeta.servicios.ws/'                 as "ns2"

    ),

     '/S:Envelope/S:Body/ns2:ConsultaEEHResponse/return'

     passing xmltype(vCampo1)

     columns

     codigoError varchar2(5) PATH 'codigoError',

     mensaje varchar2(200) PATH 'mensaje',

     Resultado varchar2(5) PATH 'resultado'

)a

;

Marked as Answer by jeffreehy-JavaNet · Sep 27 2020
jeffreehy-JavaNet

Yes. Thank you very much, I try similar way, but I missed one ")" so a got compilation error. Some time you got the answer in front of you but got blind. Appreciate your help.

1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Dec 4 2015
Added on Oct 23 2015
18 comments
3,251 views