Oracle xml DB and text features are not installed

HI,
I installed Sql developer 3.0 ,oracle 11g and jdk 7 on centos 5.when iam running sql developer its showing error message oracle xml DB and text features are not installed.
pls anyone help me out.
thanks
srinivas
Edited by: srinivas on Oct 17, 2011 4:49 AM

may be help you
Re: Connection Error - Oracle XMLDB and Text Features are not installed.

Similar Messages

  • The new track and mask features are not showing on my version of premiere cc. It says it's uptodate.

    The new track and mask features are not showing on my version of premiere cc. It says it's uptodate.

    Please double-check the exact version as displayed in the About box. The new release is an entirely separate version referred to CC 2014.0; it is not merely an update to CC7. That means that if you launch CC7.2.2 and go Help>Updates, it will report that the program is up to date.
    If you're on CC7.2.2, then the easiest way to install CC2014.0 is to launch the Creative Cloud app and scroll down the Apps tab looking for "Premiere Pro CC (2014)."
    Note that once CC2014 is installed, you will need to use a new app icon to launch it; the old icon will continue to launch CC7.

  • I have tried installing Livetype 3 times and the Effects are not installed.

    I have tried installing Livetype 3 times and the Effects are not installed. The animated text behaviors are not available. What might I be doing wrong?

    I have tried installing Livetype 3 times and the
    Effects are not installed. The animated text
    behaviors are not available. What might I be doing
    wrong?
    I have the exact same problem! I sent the discs into my local Apple Center so they could check the discs. A month later I get them back by mail and an e-mail that says "there is no problem with the discs, therefore it must be a problem with you system". Not very helpful, and it took forever before they got time to check the discs. Pretty ****** off by now...
    EDIT: It is probably worth mentioning that I get an error when installing LiveType 1B at about 4% of installing, that says "there were errors installing, please try again". I am installing the LiveType content on my LaCie 250GB USB external hard drive, although I have already tried installing the content on the built in hard drive as well..
    Message was edited by: NitRam Den Gale

  • The labels and text fileld are not hiden by jXDatePicker

    Hello
    When i click on the drop-down jXDatePicker, labels and thet fields (taht are under jXDatePicker in the form ) show over the calendar- the ables and text filelds are displayed onto the calendar.
    Is there some ideas what could be the problem and how can i fix it
    10x all

    generally indicates using heavyweight components
    java.awt.Label instead of javax.swing.JLabel
    TextField instead of JTextField
    etc

  • Chart and text items are not synchron

    hi all,
    i am a newbie in apex 4.0.
    i have two regions. the first shows a chart, based on pl/sql-code. second shows text items for possible filter an the current statement of the chart.
    when user clicks on a bar in the chart then
    1. i set the the first text item as filter,
    2. a pl/sql-code runs, build a sql statement, assign the sql statement string to the second text item and
    3. returns the statement for the chart.
    it works fine. the chart refresh. and the data i can see are correct.
    but the text items in the other region doesn't refresh.
    when i press "refresh"-button at browser level everything is fine. chart and text items fits together.
    what can I do to refresh all regions when the chart changes the sql-statment / User clicks?
    Is there any way to read out the current statement of a chart?
    thx in advance
    jogi
    Edited by: Jogi on 09.05.2011 12:31

    Bernd: the reason I asked about views is that you don't have any error messages. This might indicate that (a) you have no items in the view, or (b) there's something wrong with view-role-user assignment.
    To check for (a), please go to the published procurement catalog, and go to Views tab. Check that your View is Active. Click on your View ID link to display view details. You should see a list of characteristics assigned to your view in Assign Characteristics sub-tab (the list should not be blank!). Go to Assign Items sub-tab. Navigate in your schema to find items that are supposed to be assigned to your view. You should see "Yes" in the "Assigned" column for those products. If you don't, then you simply don't have any items in your view.
    Another thing I'd like you to check: when the user calls your procurement catalog for search, do you see the name of the catalog displayed just below the drop-down "Select Categories Hierarchically"?
    Cheers,
    Serguei

  • Oracle XML DOM parser - attribute values are not printing on the screen ??

    Hi Everyone,
    I am just trying to use oracle DOM parser to paerse one of my xml file, java file can be compiled and run agianst a xml file, But I cannot see any attribute values printing on the screen..
    Appreciate if anyone can help, where I have gone wrong please?
    Below is the java file:
    // menna puthe DOMSample eka - duwanawa 19/12/2005
    import java.io.*;
    import java.net.*;
    import org.w3c.dom.*;
    import org.w3c.dom.Node;
    import oracle.xml.parser.v2.*;
    public class DOMSample {  //public class eka ***
    static public void main(String[] argv){  // main method eka ###
    try {
    if (argv.length != 1){
    // Must pass in the name of the XML file...
    System.err.println("Usage: java DOMSample filename");
    System.exit(1);
    // Get an instance of the parser
    DOMParser parser = new DOMParser();
    // Generate a URL from the filename.
    URL url = createURL(argv[0]);
    // Set various parser options: validation on,
    // warnings shown, error stream set to stderr.
    parser.setErrorStream(System.err);
    parser.showWarnings(true);
    // Parse the document.
    parser.parse(url);
    // Obtain the document.
    Document doc = parser.getDocument();
    // Print document elements
    System.out.print("The elements are: ");
    printElements(doc);
    // Print document element attributes
    System.out.println("The attributes of each element are: ");
    printElementAttributes(doc);
    catch (Exception e){
    System.out.println(e.toString());
    } // main method eka ###
    static void printElements(Document doc) {
    NodeList nl = doc.getElementsByTagName("*");
    Node n;
    for (int i=0; i<nl.getLength(); i++){
    n = nl.item(i);
    System.out.print(n.getNodeName() + " ");
    System.out.println();
    static void printElementAttributes(Document doc){
    NodeList nl = doc.getElementsByTagName("*");
    Element e;
    Node n;
    NamedNodeMap nnm;
    String attrname;
    String attrval;
    int i, len;
    len = nl.getLength();
    for (int j=0; j < len; j++){
    e = (Element)nl.item(j);
    System.out.println(e.getTagName() + ":");
    nnm = e.getAttributes();
    if (nnm != null){
    for (i=0; i<nnm.getLength(); i++){
    n = nnm.item(i);
    attrname = n.getNodeName();
    attrval = n.getNodeValue();
    System.out.print(" " + attrname + " = " + attrval);
    System.out.println();
    static URL createURL(String filename) {  // podi 3 Start
    URL url = null;
    try {
    url = new URL(filename);
    } catch (MalformedURLException ex) { /// BBBBBB
    try {
    File f = new File(filename);
    url = f.toURL();
    } catch (MalformedURLException e) {
    System.out.println("Cannot create URL for: " + filename);
    System.exit(0);
    } // BBBBBB
    return url;
    } // podi 3 End
    } //public class eka ***
    // End of program
    output comes as below:
    Isbn:
    Title:
    Price:
    Author:
    Message was edited by:
    chandanal

    Hi Chandanal,
    I edited your code slightly and I was able to get the correct output.
    I changed the following line:
    for (int j=0; j >< len; j++)to:
    for (int j=0; j < len; j++)I have included the complete source below:
    // menna puthe DOMSample eka - duwanawa 19/12/2005
    import java.io.*;
    import java.net.*;
    import org.w3c.dom.*;
    import org.w3c.dom.Node;
    import oracle.xml.parser.v2.*;
    public class DOMSample {
        //public class eka ***
        public static void main(String[] argv) {
            // main method eka ###
            try {
                if (argv.length != 1) {
                    // Must pass in the name of the XML file...
                    System.err.println("Usage: java DOMSample filename");
                    System.exit(1);
                // Get an instance of the parser
                DOMParser parser = new DOMParser();
                // Generate a URL from the filename.
                URL url = createURL(argv[0]);
                // Set various parser options: validation on,
                // warnings shown, error stream set to stderr.
                parser.setErrorStream(System.err);
                parser.showWarnings(true);
                // Parse the document.
                parser.parse(url);
                // Obtain the document.
                Document doc = parser.getDocument();
                // Print document elements
                System.out.print("The elements are: ");
                printElements(doc);
                // Print document element attributes
                System.out.println("The attributes of each element are: ");
                printElementAttributes(doc);
            } catch (Exception e) {
                System.out.println(e.toString());
        // main method eka ###
        static void printElements(Document doc) {
            NodeList nl = doc.getElementsByTagName("*");
            Node n;
            for (int i = 0; i < nl.getLength(); i++) {
                n = nl.item(i);
                System.out.print(n.getNodeName() + " ");
            System.out.println();
        static void printElementAttributes(Document doc) {
            NodeList nl = doc.getElementsByTagName("*");
            Element e;
            Node n;
            NamedNodeMap nnm;
            String attrname;
            String attrval;
            int i, len;
            len = nl.getLength();
            for (int j = 0; j < len; j++) {
                e = (Element)nl.item(j);
                System.out.println(e.getTagName() + ":");
                nnm = e.getAttributes();
                if (nnm != null) {
                    for (i = 0; i < nnm.getLength(); i++) {
                        n = nnm.item(i);
                        attrname = n.getNodeName();
                        attrval = n.getNodeValue();
                        System.out.print(" " + attrname + " = " + attrval);
                System.out.println();
        static URL createURL(String filename) {
            // podi 3 Start
            URL url = null;
            try {
                url = new URL(filename);
            } catch (MalformedURLException ex) {
                /// BBBBBB
                try {
                    File f = new File(filename);
                    url = f.toURL();
                } catch (MalformedURLException e) {
                    System.out.println("Cannot create URL for: " + filename);
                    System.exit(0);
            // BBBBBB
            return url;
        // podi 3 End
    } //public class eka ***-Blaise

  • Objects (lines) and text boxes are not able to be made bigger or smaller

    first of all: For no reason at all, all of my text boxes are now set up as threaded text.  I dont know how that turned on.  When i go to "type"
    and try to select "threaded text" it wont allow me to select it - it is not highlighted.  So I have no clue
    how to turn this off.  Now I can not stretch my text boxes to suit whats in them - ie: make them bigger or smaller, ie:  there are only two boxes to drag - one at either side of text box and they wont allow me to drag them to make the box bigger - only to move the entire box (before there were 4 boxes to manipulate the size of the text box - one on each corner - now there are only two)    and this seems to apply
    to many other objects now.  when i draw a line, I have to make sure that line is the exact right size because once i draw it - it wont allow me to make it bigger or smaller - it only allows me to move it to a different place - i dont understand what is happening

    thanks for writing back
    i am pretty sure it is area type because in type i can see "area type options"
    i dont know how to turn bounding boxes on or off so I can not answer that question.
    yes i should be able to resize the bounding text box by dragging and ive always been able to do that.  however I can no longer do that.  the usual bounding text box that i am accustomed to has little teeny boxes all around the entire box - in each corner - so i can drag each corner easily
    this set up that has currenly taken over my illustrator program has only TWO little teeny weeny boxes that when selected wont allow me to drag them to resize at all.  when i double click on one of these two little teeny boxes it gives me the thread text tool... which i dont want and have never even used before
    i just want my text boxes and everything else to go back to normal so i can drag them to resize them again
    does that make more sense or have i explained it better?
    thanks for your help!  Kim

  • My ring and text tones are not working?

    Both my ring tone and text alert tone are not working. I'm only made aware I have a call or text message through the phone's vibration. I have checked all the 'Sound' settings and all appears to be fine and ringer volume slid to high.
    Do I need to reboot this phone for them to work as I'm not sure how to do this? I'm using iPhone 4 version 5.0.1
    Would I loose all my files and apps on my iPhone after rebooting?
    Appreciate any clear help and advice on this popular subject that is available.
    Best wishes
    Sizo65

    Thank so much Ingo2711, your suggestion has solved my problem. I am so new to the iPhone I didn't realise it had a handy little mute button and it was infact switched onto 'mute'.
    And thank you for the rebooting advice too.
    Best wishes
    Sizo65

  • "Unfortunately, Messaging has stopped" error keeps popping up and text messages are not being received on Droid Maxx I got less than 2 weeks ago.

    I upgraded to a Droid Maxx about 2 weeks ago and all seemed well. Last Friday, I started receiving an "Unfortunately, Messaging has stopped" error message randomly--sometimes when I was writing a text, sometimes when I would open other apps, there was no rhyme or reason to when it would occur. Now it also appears that I am not receiving some of my texts. I called Verizon Support who told me that they are experiencing this problem on several devices and that she was going to forward me to someone for help. 20 minutes later, no one had picked up and I had to leave. So I thought I would try here to see if Verizon has come up with a fix for this, if I should get another phone, or if they are working on a software update or something. Help, I really liked this phone until now!

    Hello,
    I am using the messaging app that was preloaded with the phone, the green face icon. I do not have an "Android Keyboard" app, but I have cleared the cache on the "Messaging" app, several times. I have also gone to the Verizon store where an associate did a soft reboot, telling me that would work. A very short time later, the error message started appearing again--so this did not work either.
    The error message comes very sporadically. Sometimes several in a few minutes, other times not for hours.

  • Facetime and Text msgs are NOT working

    My dad bought me new iPhone 4s and I have activated it today. I am unable to use Facetime eventhough wifi is there and connected with phone. I am unable to send text msg to excluding 2 phones of my parents which are in same contract/plan/service. I am unable to send Text to any other service provider's phones and also to sprint service which I am using. Whats going on with brand new phone ? Please help me out.. Tried almost Reseting all settings to Factory settings, Placing my own number to some info thing etc. etc. nothing is working..

    can you check if ur facetime and imessage has complete the activation?
    your current SIM card provides you with international sms function?
    if not maybe u can try with a diff SIM?

  • When texting one contact bubbles are blue instead of green, and texts sent are not being received, how do i sort this? cheers

    when texting a friend, bubbles are blue instead of green and they dont receive the message. this is only happening with one contact,why's this happening and what can i do to sort it? cheers

    Blue bubbles are using for iMessages, so problem with receiving is in iMessage.

  • I just recently upgraded from a 3gs to a 4s and since i upgraded text messages are not coming in or going out unless i'm texting another iphone?

    I just recently upgraded from a 3gs to a 4s and since I upgraded text messages are not coming in or going out unless I'm texting another iphone?

    http://support.apple.com/kb/TS2755

  • Since upgrading to iOS7 some text messages are not being sent, iMessage on my Ipad and MacBook doesn't have my phone number registered and my reminder colour on my Iphone keeps changing ... among other things

    Since upgrading to iOS7 some text messages are not being sent on my iPhone 5, iMessage on my Ipads and MacBook doesn't have my phone number registered and my reminder colour on my Iphone keeps changing ... among other things. Any suggestions to fix these faults?

    Make sure People Sending you via iMessage are sending their messages on your PHONE number not on your EMAIL addresses . My sister had the same problem, thats how i managed to solve it!

  • New features, e.g., blur path and select focus, are not showing up in my PS drop down menus

    Although I've downloaded the CC PS 2014 updates the new features, e.g., blur path and select focus, are not showing up in my PS drop down menus - anybody know why and what I need to do?
    <moved from downloading,installing,setting up - kglad>

    Are you sure you understand the Cloud License concept?
    You are entitled to keep Photoshop CC and install Photoshop CC 2014, so CC 2014 is not connected with additional costs and the time it takes to install the new version of Photoshop should not be that much of a imposition, should it?

  • From when i installed 10.8.3 combo, the frequency of my video (samsung 2233sn) changes so that the dock disappears at the bottom and the letters are not focus-free feature stays in focus at mostviewing. Luigi

    From when i installed 10.8.3 combo, the frequency of my video (samsung 2233sn) changes so that the dock disappears at the bottom and the letters are not focus-free feature stays in focus at mostviewing. Luigi

    From when i installed 10.8.3 combo, the frequency of my video (samsung 2233sn) changes so that the dock disappears at the bottom and the letters are not focus-free feature stays in focus at mostviewing. Luigi

Maybe you are looking for

  • HP Pavilion dv6 7134nr in-built speakers are broken

    I am encountering a major problem. In early March of this year, my in-built laptop speakers broke. I know this, because everytime I use my laptop, I hear a tapping sound from the top right of my keyboard near the beats audio logo. I was told by Micro

  • AS2 & OFTPS

    Hi All, Could any one please clarify 1.The differnces between AS2 & OFTPS adapters and in which scenarios we prefer OFTPS compared to AS2 2.If we are using AS2 sender adapter to pick data two different mail boxes on different servers, Is there a poss

  • Create exe file in forte?

    I am new in Forte. looking for some help to create an exe file from my java class file, so I can run the program by running the exe file. any help would be appreciated.

  • ORA-01882: timezone region not found  in Windows 2003 Server System

    Hi, I am using windows server 2003 and the IDE jdeveloper 11.1.1.1.0. I have this error ORA-01882: timezone region not found . To resolve it, I added -Duser.timezone=GMT in my project properties. It doesn't work in windows server 2003. I tried the sa

  • Apart from thr FM "SO_OBJECT_SEND"    is theer any other FM for mailing

    Hi I am using the function module "SO_OBJECT_SEND"  and i am passing the following in this FM CALL FUNCTION 'SO_OBJECT_SEND'     EXPORTING       folder_id                  = w_folder_id       object_hd_change           = w_object_hd_change       obje