What is my problem?I cant figure out the prob

I install oracle 11g release 2 in my windows 7 pc, but when i almost finish my installation then it will pop out this error message.
Error in execution of additional utility tools.
Can anyone help me?

Pl do a search in this forum - this question has been discussed and answered many times :-) For example - DB 11gR2 for Windows ??
HTH
Srini

Similar Messages

  • I can't download any apps, it keeps telling me "There is a billing problem with a previous purchanse"!  I've checked all my account info and can't figure out the prob??

    I can't download any apps, it keeps telling me "There is a billing problem with a previous purchanse"!  I've checked all my account info and can't figure out the prob??

    Contact Itunes support and ask them

  • Cant figure out the IP address of the domain controller

    I just started at a new company and would like to change my domain password but cannot because I cant communicate with the domain controller.  I can see it when I do a net view, but I cannot ping it because my DNS server is set to the local router IP
    address rather than the DC IP address and the name simply won't resolve.
    I suspect if I manually change my DNS server to point to the IP of the DC, my problem will go away.  I asked the local IT guy and he says 'nobody has ever asked to change their domain password before' ???!?!?!????? nor does he have any idea about the
    IP and he would have to submit a ticket to the overseas IT desk (where the DC physically resides) and they would change my password manually.
    Any ideas?

    Robr2,
    I agree with others about the ONLY DNS that must be set on ALL machines is ONLY the DC's IP address. That's it. Not the router, or the ISP's DNS. This is one of the most common configuration errors that will cause
    MAJOR problems with DC to client communcations.
    Here's a full explanation with a great analogy:
    Active Directory's Reliance on DNS, and why you should never use an ISP's DNS address or your router as a DNS address, or any other DNS server that does not host the AD zone name
    Published by Ace Fekay, MCT, MVP DS on Aug 17, 2009 at 7:35 PM  1058  2
    http://msmvps.com/blogs/acefekay/archive/2009/08/17/ad-and-its-reliance-on-dns.aspx
    Ace Fekay
    MVP, MCT, MCITP EA, MCTS Windows 2008/R2, Exchange 2007 & Exchange 2010, Exchange 2010 EA, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
    This post is provided AS-IS with no warranties or guarantees and confers no rights.

  • Cant figure out the problem

    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    public class myProject extends JFrame implements ActionListener{ 
            JButton search=new JButton("Search");
            public DefaultListModel df=new DefaultListModel();
            public JList list1=new JList(df);
             check c=new check();
         public myProject(){       
              search.addActionListener(this);
         public void design(){ 
            JPanel jp1=new JPanel();
            jp1.add(search);
             getContentPane().setLayout(new BorderLayout());
             getContentPane().add(list1,BorderLayout.CENTER);
             setVisible(true);
             getContentPane().add(jp1,BorderLayout.SOUTH);            
             setSize(450,180);
         public static void main(String []args){
           myProject j=new myProject();         
              j.design();    
       public void actionPerformed(ActionEvent event) {
            myProject j=new myProject();
            if(event.getSource()==search){
                list1.removeAll();
              Object p[]={"hi","hello"
                df.addElement(p[0]);
                df.addElement(p[1]);
                c.testing();        
    public class check {
      myProject  mp;
        public check() {
        public void testing(){
               mp=new myProject();
             mp.df.addElement("how");
    }I wrote this two class the output is
    hi
    hello
    these two are printed in JList why not "how"??
    is my code writing style ok?? i always get messed up with object
    plz suggest me a better way of writing this code
    thanks in advance

    Basically you have to tell the instance of the check class that you create what instance of the project class it is that it should be checking. One place to do this is in the constructor of the check class. (eg if it is to meant to check one project only).
    Moving the code that initialises the buttons and stuff into the projects constructor, and putting your main()'s contents into an invokeLater() it would look like:
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.DefaultListModel;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class MyProject extends JFrame implements ActionListener{ 
        private JButton search;
        private DefaultListModel df;
        private JList list1;
        private ProjectChecker c;
        public MyProject(){       
            search = new JButton("Search");
            df = new DefaultListModel();
            list1 = new JList(df);
            c = new ProjectChecker(this);
            search.addActionListener(this);
        public void design(){ 
            JPanel jp1=new JPanel();
            jp1.add(search);
            getContentPane().setLayout(new BorderLayout());
            getContentPane().add(list1,BorderLayout.CENTER);
            getContentPane().add(jp1,BorderLayout.SOUTH);            
            setVisible(true);
            setSize(450,180);
        public void actionPerformed(ActionEvent event) {
            if(event.getSource() == search) {
                list1.removeAll();
                Object p[]={"hi", "hello"};
                df.addElement(p[0]);
                df.addElement(p[1]);
                c.testing();        
        public DefaultListModel getListModel() {
            return df;
        public static void main(String []args){
                SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
                        MyProject j = new MyProject();         
                        j.design();    
    }and
    public class ProjectChecker {
        private MyProject proj;
        public ProjectChecker(MyProject proj) {
            this.proj = proj;
        public void testing(){
            proj.getListModel().addElement("how");
    }Notice how a couple of "new MyProject()" lines have been removed.

  • Cant figure out the error

    public void datfileout()
    try
    BufferedWriter outstream = new BufferedWriter(new FileWriter("character.txt"));//declares variable that reads in from file
    for(int x=0;x<holdinfo.size();x++)
    outstream.write((String)holdinfo.get(x));//writes names to file
    outstream.newLine();//starts a new line
    outstream.close(); //closes file
    catch (Exception e)
    System.err.println("Caught exception " + e.toString());//checks for an error
    this is what i have attempted to put in an applet but it seems just to freeze every time i go in this method what should i do?

    Your code works for me :
    * Applet_Test.java
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    public class Applet_Test extends JApplet {
        public void init() {
            datfileout();
            System.out.println("Applet_Test is OK");
        ArrayList holdinfo = new ArrayList();{
            holdinfo.add("Test 1");
            holdinfo.add("Test 2");
            holdinfo.add("Test 3");
        public void datfileout() {
            try {
                BufferedWriter outstream = new BufferedWriter(new FileWriter("character.txt"));
                for(int x=0;x<holdinfo.size();x++) {
                    outstream.write((String)holdinfo.get(x));//writes names to file
                    outstream.newLine();//starts a new line
                outstream.close(); //closes file
            } catch (Exception e) {
                System.err.println("Caught exception " + e.toString());//checks for an error
    }

  • I am trying to create a photo book, i cant figure out the file that is corrupting the whole book- help??

    it tells my "image 025 is corrupt", although i cant seem to find anything in my book named 025!
    I cant continue the order!
    gggrrrr so close to finishing!
    please help me someone!!!

    You can still have a photo for a text page background.  Go to the layout pane for the text page and click on the photo background icon:
    Then drag the photo you want as the background into the page.
    OT

  • I cant figure out the notes....

    i was trying top set up the notes on my ipod but the fetures guide dosent explain a lot unless you have a mac..... and i dont so can someone "dumb" it down for me...... because it says in the feture guide to use windows explorer, the only eplorer i could think of is the internet explorer( i know im wrong) but i use firefox and i said to **** with enternet explorer

    Make sure iPod is plugged in.
    Start->My Computer->iPod (or drive F)->Notes|
    Open notepad or something similar, write whatever it is that want on your iPod in it->File (in Notepad)->Save As-> name the file whatever you want it to be->either save in the notes folder I mentioned above, or save it somewhere else & cut & paste it the notes folder.

  • HT6154 New Battery replaced for iphone4, got a diagnostic and its NOT the battery it drains horrible by itself, i barely use my phone. HELP im about to erase everything to figure out the prob!

    Drains really bad, i've tried everything like deleting apps, turning off stuff, turning off notifications, downloaded the app battery monitor etc nothing is working.

    Unless Apple replaced your battery, and it appears they didn't, you're pretty much on your own now. Have you tried going back to whoever replaced your battery? That's gonna be your only choice now, because if a third-party replaced your battery, Apple won't touch your phone now.

  • HT1414 In updating my iTunes,I got a message "Service Apple Mobile Device failed to start. verify that you have sufficent priviliges to start system services". Cant figure out what to do

    In updating my iTunes,I got a message "Service Apple Mobile Device failed to start. verify that you have sufficent priviliges to start system services". Cant figure out what to do

    So many people are having this problem! Doehunter's instructions here worked for me!  Hope this helps. https://discussions.apple.com/message/23824640#23824640

  • I have a samsung intensity ll.How do i get rid of a small box with AA off of my main screen?Cant figure out what setting it is.

    How do i get rid of a small box with AA in it on my main screen? cant figure out what setting it is on my samsung intensity ll ?

    Good deal      (the AA stands for Auto Answer, by the way; and I like your avatar  )

  • I cant figure out what my user icon is a picture of!!!

    i just reinstalled tiger and i cant figure out what my new icon is a picture of. Any suggestions?
    http://i112.photobucket.com/albums/n183/xxxSinkEmFastxxx/Picture2-3.png

    All user pictures are located in /Library/User Pictures/. Figuring out which is which, is left as an exercise. More than likely, a flower or nature thingy. They'll all open in Preview.

  • I purchased a song off of itunes and it said it downloaded successfuI but when i go to listen to that song it only plays 2 seconds of the song and i cant figure out how to download it again. What can i do.

    I purchased a song off of itunes and it said it downloaded successfully, but when i try to listen to that song it only plays 2 seconds of that song and i cant figure out how to download that song again. What can i do.

    Delete it, click here, and follow the instructions.
    (88741)

  • I connected to itunes and it says i have 2.11 GB of space taken up under OTHER , i cant figure out what is taking up so much space can anyone help?

    i connected to itunes and it says i have 2.11 GB of space taken up under OTHER , i cant figure out what is taking up so much space can anyone help?

    I believe the new IOS 8 system takes up 1.3 Gb on it's own.   Then plus anything else you may have loaded.

  • I upgraded to the new version "4" and it will not load any websites..."unable to locate server" is all i get and cannot figure out the problem ....had to delete and go back to an earlier version whichi understand is unsafe...what to do?

    # Question
    I upgraded to the new version "4" and it will not load any websites..."unable to locate server" is all i get and cannot figure out the problem ....had to delete and go back to an earlier version which i understand is unsafe...what to do?

    That was probably caused by your Firewall blocking the newly installed version of Firefox.
    No known security issues with Firefox 3.6.17, which was just released this past week.

  • Hi. I cant figure out, what I will get in the creative cloud.

    Hi. I cant figure out, what I will get in the creative cloud. ?? Do I get it all ?? if not wich programs are in it. ? I hope, i can get an answar fast :-)

    Cloud Plans https://creative.adobe.com/plans
    -Special Photography Plan includes Photoshop & Lightroom & Bridge & Mobile Lightroom
    -Special Photography Plan includes 2Gig of Cloud storage (not the 20Gig of the full plan)
    -http://helpx.adobe.com/creative-cloud/faq/mobileapps.html
    -http://helpx.adobe.com/photoshop/kb/differences-photoshop-creative-cloud-photography.html
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html
    -what is in the entire Cloud http://www.adobe.com/creativecloud/catalog/desktop.html
    -http://www.adobe.com/products/catalog/mobile._sl_id-contentfilter_sl_catalog_sl_mobiledevi ces.html

Maybe you are looking for