Plzzzzzzzzzz help

i moved the form into application server , complies it there ,, now i want to access it from client machine through URL .
when i write a URL in address bar in internet explorer window then press go button to call that module from application server .
internet explorer show this message :
[ internet explorer has encountered a problem and needs to close .we are sorry for the inconvenience and there is three buttons , debug , send error report , dont send ]
and whatever button you pressed the window will be closed automatically and disappeared without any result returned

try any other browser and see if you can access your application, also send what URL you type in your browser window with port no.
try firefox or opera browsers.

Similar Messages

  • JComboBox Problem !!!!!!!!!!!!!!!! PLzzzzzzzzzz Help me out frnds...

    Hiiiiiii frmdsss...........im n deep trouble and need ur help immediately......im havin this prob with JComboBox....heres d code.....
    public void actionPerformed(ActionEvent ae)
              JButton source=(JButton)ae.getSource();
              //JComboBox source1=(JComboBox)ae.getSource();
              if(b1.equals(source))
                   cb1.setEnabled(true);
                   try
                        cb1.removeActionListener(this);
                        cb1.removeAllItems();
                        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                        con=DriverManager.getConnection("jdbc:odbc:MyDataSource","sa","");
                        stmt=con.createStatement();
                        rs=stmt.executeQuery("select prod_model from product where prod_type LIKE 'Mobile'");
                        while(rs.next())
                             cb1.addItem(String.valueOf(rs.getString(1)));
                        con.close();
                   }catch(ClassNotFoundException c)
                        System.out.println("Error "+c);
                   catch(SQLException e)
                        System.out.println("Exception"+e.toString());
                   cb1.addActionListener(this);
    if(ae.getSource() == cb1)
                   /*try
                   {          //cb1.removeActionListener(this);
                             //Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                             /*con=DriverManager.getConnection("jdbc:odbc:MyDataSource","sa","");
                             String selected_id=cb1.getSelectedItem().toString();
                             stmt=con.createStatement();
                             rs=stmt.executeQuery("SELECT * FROM PRODUCT WHERE prod_model LIKE 'S%'");
                             if(rs.next())
                                  JOptionPane.showMessageDialog(fr,"USER NAME IDENTIFIED","CONFIRMATION",JOptionPane.INFORMATION_MESSAGE);
                             con.close();          
                   /*catch(ClassNotFoundException c)
                        System.out.println("Error "+c);
                   catch(SQLException e)
                        System.out.println("EXception"+e.toString());
    It gives me a huge list of errors..........
    java.lang.ClassCastException
    at Order.actionPerformed(Order.java:86)
    at javax.swing.JComboBox.fireActionEvent(Unknown Source)
    at javax.swing.JComboBox.setSelectedItem(Unknown Source)
    at javax.swing.JComboBox.setSelectedIndex(Unknown Source)
    at javax.swing.plaf.basic.BasicComboPopup$ListMouseHandler.mouseReleased
    Source)
    at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.plaf.basic.BasicComboPopup$2.processMouseEvent(Unknown So
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)...
    PLzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz help me frnds.......i hve 2 submit this prjkt on Thursdy

    The forum is fore heping out othersAnd that is exactly what I did. You won't get much help in the future if you don't change your habbits. In fact I'm surprised you got help this time.
    It's your responsibility to make a question easy to read, not to make it difficult to read by (among other things):
    a) holding the repeat key down
    b) not spelling out words
    Heck you can't even post formatted code to make it easy for people to read. Do you write your code with every line left aligned? I doubt it and we don't want to read it either.
    So learn how to use the forum properly.

  • Help with xml  menu

    hai to all,
    i am struck with a problem. plzzzzzzzzzz help
    i have 6 menus where the text is displayed from a html file.i
    kept the text box in a movieclip.its fine working.
    now the problem arises.
    when the mouse is over the menu the respective xml will be
    loaded into the flash.
    this is for menu1_mc
    on (press, rollOver) {
    _root.main("menu1.xml");
    this is for menu2_mc
    on (press, rollOver) {
    _root.main("menu2.xml");
    the xml will be loaded depending upon the nodes one mc here
    "menuItem" will be duplicated and displayed.
    menu1 it is displaying fine.but
    for the menu2_mc it is displaying the contents of the menu2 +
    menu1 contents
    means for menu1 there r 10 menus. ok displaying, if for menu2
    there r 6 menus it is displaying the 6 menus with menu1's bottom 4
    menus.
    means the menu1 contents r not erasing or they should not
    displayed. any help plzzzzzzzzzzzzz
    here is the code:-
    function main(path) {
    var menu:XML = new XML();
    menu.ignoreWhite = true;
    menu.load(path);
    menu.onLoad = function() {
    items = this.firstChild.childNodes;
    for (a=0; a<=items.length-1; a++)
    _root.attachMovie("menuItem", "item"+a, a);
    _root["item"+a].nametxt.text = items[a].attributes.id;
    _root["item"+0]._y = 18;
    _root["item"+1]._y = 38;
    _root["item"+2]._y = 58;
    _root["item"+3]._y = 78;
    _root["item"+4]._y = 98;
    _root["item"+5]._y = 118;
    _root["item"+6]._y = 138;
    _root["item"+7]._y = 158;
    _root["item"+8]._y = 178;
    _root["item"+9]._y = 198;
    _root["item"+10]._y = 218;
    _root["item"+a]._x = 180;
    _root["item"+a].itemUrl = items[a].attributes.theurl;
    _root["item"+a].method = items[a].attributes.method;
    _root["item"+a].onRollOver = function() {
    this._x+=10;
    _root["item"+a].onRollOut = function() {
    this._x-=10;
    _root["item"+a].onRelease = function() {
    getURL(this.itemUrl, this.method);

    sir,here i am attaching fla and xml file which are in zip
    format. i am using flash mx 2004 version. but sir how to upload the
    zip file i can get. can u suggest me plz

  • Need help in my PROJect

    I would like to get the data from JDBC............ like this
    +6. What is the advantage of using import statements?+
    A .To avoid having to declare variables.
    B.To refer to a class without using prefixes.
    C.To avoid calling methods.
    D.To import the images you want to use.
    So i created tables for the each questoin (its an online examination project) i have to enter the questions for SAP,J2ee,.NET like this.........
    *._so creating a table for each question*_ .............means DB size is large and so many tables i have to create ...........
    creating Entire table for each language from where ............is there any method to getData of one particular question RANDOMLY.........(AS shown ABOVE)
    Thx in advance plzzzzzzzzzz help me.......................

    Hi Buddy,
    Again you question is like a pool of things. Please dont do it, make a proper format for your question then post it.
    So that the answer provider will bang right at target.
    You can implement things at Application Level surely. For random question stuff, If you want then assign one more column to your Table & in that assign level's for question(1-Hard, 2-Average,3-Easy ). And inside your random selection make one level based on previous question answered.
    Sachin Kokcha

  • Unable to load SWC fds.swc:Multiple points ???

    Hi,
    I downloaded project and integrated in the flex builder ,when
    i run MXML file i am getting error following errors :
    1)Unable to load SWC fds.swc:Multiple points
    2)1017:the definition of base class locale was not found
    3)could not resolve <mx:Application> to a component
    implementation.
    What to do for this ?????
    Plzzzzzzzzzz help me...Regarding this..

    Hi app_1,
    Your SWC might be for SDK 2.0.0 but your Flex Builder might
    be 2.0.1.
    Jeffrey

  • HT4623 whatsapp keeps on crashing

    my whatsapp messenger keeps on crashing plzzzzzzzzzz help 

    Glad to hear you believe your issue is resolved.  Keep an eye on things and keep backing up especially when you have no problems.  That way you have backups in case you run into future issues. 
    I know Facebook has caused problems with calendar entries, but hadn't seen this before.  Live and learn.  Maybe Twitter AND Facebook was just too much??? 
    Let us know how you are doing and keep coming back.  We need experiences like yours to expand the collective group knowledge base.  
    IrwinII
    Please remember to "Accept as Solution" the post which solved your thread. If I or someone else have helped you, please tell us you "Like" what we had to say at the bottom right of the post.

  • How can i Change the Size of the selected text in JTextPane using ConboBox

    plzz help...
    How can i Change the Size of the selected text in JTextPane using ConboBox ???
    i m using if(cb.getSelectedItem=="small")
    cb.setAction(new StyledEditorKit.FontSizeAction("double click", 12);)
    if(cb.getSelectedItem=="medium")
    cb.setAction(new StyledEditorKit.FontSizeAction("double click", 14);)
    if(cb.getSelectedItem=="large")
    cb.setAction(new StyledEditorKit.FontSizeAction("double click", 16);)
    this code is not working properly according to the action i set on comboBox.
    when i select medium the previously set action on comboBox works like small action work.
    when i select large the medium action starts .
    means its not working in correct time when i select item of combox n action of that item is not working at that time..
    plzz plzz help me:(

    Action action1 = new StyledEditorKit.FontSizeAction(
    "double click", 12);
    Action action2 = new StyledEditorKit.FontSizeAction(
    "double click", 14);
    Action action3 = new StyledEditorKit.FontSizeAction(
    "double click", 18);
    s2 = (String) cb7.getSelectedItem();
    if (s2.equals("Small")) {
    cb7.setAction(action1);
    e1.setSource(cb7);
    } else
    if (s2.equals("Medium")) {
    cb7.setAction(action2);
    e1.setSource(cb7);
    } else if (s2.equals("Large")) {
    cb7.setAction(action3);
    // e1.setSource(cb7);
    when i chooze any combobox item then according to that item i set the Action on ComboBox but that action is not working properly on the selected text in the JTextPane..means selected text in JText Pane is not changes its Size according to the comboBox selected ITEM.
    PLZ plzzzzzzzzzz help me:((.i will be thankfull to u.

  • Reconfigure the Oracle streams incase of Server move from 192 to 191

    Hi All,
    We have bi directioanl oracle streams setup between two databases.
    Recently, We have moved our server from cin192 to cin191. After server moved we checked the all the streams process.
    Capture process shows Wating for Dictionary Redo First SCN XXXXXXXXX on both the database.
    When i checked these SCN ,i got cin192 archive log.
    Can you please help how can i resolve these issue..
    Do we need to reconfigure the streams or we can assign new SCN to capture process without dropping anything with cin191 server archive log file...
    Means , How to point new server archive log file to capture process..
    Any help would be appreciated...
    It's urgent...Plzzzzzzzzzz Help.
    Thanks,
    Singh

    Hi Singh,
    If I would know what cin191 and cin192 are, I would probably be able to redirect you to the right forum.
    If you are looking for Oracle streams, I suggest you to try the Database - General forum: General Database Discussions
    If is Oracle replication what you are looking for, please check here: Replication
    This is the Berkeley DB High Availability forum ( http://www.oracle.com/technology/documentation/berkeley-db/db/ref/rep/intro.html )
    Bogdan

  • ComboBox Problem to change the size of selected text in JTextPane.

    hi 2 all!
    I have a problem in combo box actions, when i change the item in the combo its set is not set at that time but that action is performed when next action is taken, i have used combobox.setAction(new StyledEditorKit.FontSizeAction(" click", 12);) command to set the size of the selected text
    Plz suggest the solution also if possible,plz provide some code for this
    Action action1 = new StyledEditorKit.FontSizeAction(
                                                 "double click", 12);
                                       Action action2 = new StyledEditorKit.FontSizeAction(
                                                 "double click", 14);
                                       Action action3 = new StyledEditorKit.FontSizeAction(
                                                 "double click", 18);
    s2 = (String) cb7.getSelectedItem();
                                       if (s2.equals("Small")) {
                                            cb7.setAction(action1);
                                            e1.setSource(cb7);
                                                      } else
                                       if (s2.equals("Medium")) {
                                            cb7.setAction(action2);
                                            e1.setSource(cb7);
                                                                          } else if (s2.equals("Large")) {
                                            cb7.setAction(action3);
                                            // e1.setSource(cb7);
    when i chooze any combobox item then according to that item i set the Action on ComboBox but that action is not working properly on the selected text in the JTextPane..means selected text in JText Pane is not changes its Size according to the comboBox selected ITEM.
    PLZ plzzzzzzzzzz help me:((.i will be thankfull to u.
    thanx in advance..

    this code is not working properly according to the action i set on comboBox.Thats correct, the setAction() method is used to invoke an existing Action on the combo box, not create a new Action.
    What you need to do is have a single action that uses the information from the item that was selected to build a dynamic Action to change the font. Something like:
    public void actionPerformed(ActionEvent e)
         JComboBox comboBox = (JComboBox)e.getSource();
         int fontSize = Integer.parseInt( comboBox.getSelectedItem().toString() );
         Action fontAction = new StyledEditorKit.FontSizeAction("size", fontSize);
         fontAction.actionPerformed(null);
    }

  • Suddenly my phone's microSD card is not detected

    I have a Nokia 6300 which i have been using for more than a year. Suddenly last week my phone stopped detecting the microSD card (128 mb) which came along with phone. I tried taking out & re-inserting but it didnt help. I have also tried accessing it through Nokia Browser through my laptop but that has also not helped... I tried inserting in another phone but there also it is not detecting.
    Is it a virus attack? How can I make my phone detect the card?
    PLzzzzzzzzzz help me out. I have some important pics that I would miss out......

    It's certainly not a virus.
    It sounds like your card has become damaged or corrupted.
    Your only option for recovering data from this card is to use it in a card reader with a PC along with data recovery software.
    You can find plenty of free recover software by searching google.
    If the PC manages to read the card without any special software then it may be a hardware issue with the card reader in the phone.

  • Plz help I changed my gmail on my Apple ID but I can't download on the App Store the old gmail keeps coming up can enemy one help plzzzzzzzzzz.

    Plz help I changed my gmail on my Apple ID but the old one keeps commingled up what will I do plzzzzzzzz help

    First, are you sure you changed your email address associated with your Apple ID and did not creat a new Apple ID?
    Try signing out of your Apple ID on your iPad then sign back in. Use the Settings app.
    Settings > iTunes and App Store > tap on your Apple ID > sign out
    Then sign in to your Apple ID. What happens?

  • Help plzzzzzzzzzz : How to stretch the list of FM : 'DD_POPUP_WITH_LIST'

    Hi everyone,
    Does anyone can help me to stretch the list for this POPUP 'DD_POPUP_WITH_LIST', I used the following parameters:
                start_column = 50
                start_row       = 10
                end_column   = 90
                end_row         = 30
    But the breadth of the list is still small compared to the list of the fields that I want displayed.
    thanks in advance.
    Mustapha
    Edited by: Mustapha ABAPER on Apr 21, 2008 10:39 AM
    Edited by: Mustapha ABAPER on Apr 21, 2008 10:46 AM

    thanks Venkat,
    But if i use ur parameters, the pop up will be very small
    u can try this parameters in exection of this popup in SE37 to see the difrence
    START_COLUMN = 1
    START_ROW = 1
    END_COLUMN = 00
    END_ROW = 15
    best regards
    Mustapha

  • Urgent - (session bean calling Entity bean )Help Need for me - Plzzzzzzzzzz

    Hi
    I am created two beans one is Entity bean another one is session . the two beans deployed using diffrent jar files
    . I call the Entity bean methods using session bean
    But i couldn't locate the entity bean Home object through session bean(
    Sub is created but i couldn't get it that home obj stub)
    i get the following error messgae CorbaBad Operation
    i deployed two bean using same jar means my program is working
    Help meeeeeee

    I Send part of code to u
    public String logic1(rsp.ejbbm.ex.studVO s) {
              rsp.ejbbm.student.studentRemote r=null;
              String id = null;
              try {
    System.out.println("sdfsdfsdfs");
              Object obj = ctx.lookup("ejb/student");
              System.out.println("Lookup Succeded ");
              System.out.println("Object value" +obj.toString());
    /// HERE I GOT THE ERRO I COULDn'T Locate IT
    EJBHome obj1 =(EJBHome)javax.rmi.PortableRemoteObject.narrow(obj,rsp.ejbbm.student.studentHome.class);
              System.out.println("Object value" +obj1.toString());
              rsp.ejbbm.student.studentHome home=(rsp.ejbbm.student.studentHome)obj1;
              //studentHome hom=(studentHome)ctx.lookup("ejb/student");
         System.out.println("Object value" +obj.toString() );
         System.out.println("Lookup Converted ");
              home.create(s.getRollno(),s.getName());
              System.out.println("student Record isInserted in Oracle ");
              r= (rsp.ejbbm.student.studentRemote) home.findByPrimaryKey(s.getRollno());
              System.out.println("Student 5555 Name is "+ r.getName());
              id = r.getName();
              catch(Exception e ){
              System.out.println(e.toString());}
              return id;
    * @see javax.ejb.SessionSynchronization#afterBegin()
    public void afterBegin() {
    * @see javax.ejb.SessionSynchronization#afterCompletion(boolean)
    public void afterCompletion(boolean committed) {
    * @see javax.ejb.SessionSynchronization#beforeCompletion()
    public void beforeCompletion() {
    * See section 7.10.3 of the EJB 2.0 specification
    public void ejbCreate() {
              Properties p = new Properties();
              p.put("java.naming.factory.initial", "com.sun.jndi.cosnaming.CNCtxFactory");
              try{
         ctx = new InitialContext(p);
         catch(Exception e) {System.out.println("Create Exception "+e.toString());}
    }

  • Homewordk Help PLZZZZZZZZZZ

    I have been at this for about 5 hours now and I do not know what to do anymore. This homework is due in about 2 hours so I hope someone can help me figure this out. I am not looking for answer. I sincerely want to learn this language but I do need so help. Here is the homework question:
    The value ex can be approximated by the sum:
    1 + x + x2/2! + x3/3! + ... + xn/n!
    Write a program that takes a value x as input and outputs this sum for n taken to be each of the values 1 to 10, 50, and 100. Your program should repeat the calculation for new values of x until the user says she or he is through. The expression n! is called the factorial of n and is defined as
    n! = 1 * 2 * 3 * ... * n
    Use variables of type double to store the factorials or you are likely to produce integer overflow, that is integers larger than Java allows, (or arrange your calculation to avoid any direct calculation of factorials).
    The output is suppose to look something like this:
    Enter a value for x (or a blank line to quit):
    6
    n = 1: e^x = 7
    n = 2: e^x = 25
    n = 3: e^x = 61
    n = 4: e^x = 115
    n = 5: e^x = 179.8
    n = 6: e^x = 244.6
    n = 7: e^x = 300.143
    n = 8: e^x = 341.8
    n = 9: e^x = 369.571
    n = 10: e^x = 386.234
    n = 50: e^x = 403.429
    n = 100: e^x = 403.429
    Enter a value for x (or a blank line to quit):
    and this is what I have so far:
    import java.util.Scanner;
    import java.text.DecimalFormat; // It's okay if you don't use this.
    import java.lang.Math;
      Iteratively computes e^x for a given value x, outputing values at iteration
      1 to 10, 50, and 100
    public class Ex {
        public static void main(String[] args)  {
            // Make a Scanner to read data from the console
            Scanner console = new Scanner(System.in);
            // Make a NumberFormat object that we'll use when printing values
            // of n in the loop below (use of this format is optional)
            DecimalFormat nFormat = new DecimalFormat("000");
            // Read in a number for x
            System.out.println("Enter a value for x (or a blank line to quit):");
            String xString = console.nextLine();
            while ((xString != null) && (xString.length() > 0)) {
                double x = Double.parseDouble(xString);
                double fact = 1;
              for(int i = 2; i <= x; i++)     // loop
                             fact = fact * i;     // shorthand for: fact = fact * i;
                             System.out.println(fact);
                // Start over again
                System.out.println(
                    "Enter a value for x (or a blank line to quit):");
                xString = console.nextLine();
    }where do I go from here to sovle this problem?

    Have a look at the Math.pow() method. And for what it's worth, many of the most helpful folks around here deliberately overlook threads with subject lines like the one you used. You can get better, faster help by using a descriptive subject line and refraining from slang and abbreviations. Of course, you're free to ignore that advice as well, but it's in your best interest to make your questions interesting to answer and present them in a format that encourages rather than discourages help.
    ~

  • DbTier:RC-50004 Error occurred in ApplyDatabase:help me plzzzzzzzzzz

    HI,
    Am on 11.5.10.2
    DB 10gR2
    OS Red Hat Enterprise Linux AS release 4 (Nahant Update 6)
    When am trying to clone dbtier am facing this error :
    Beginning database tier Apply - Wed Jun 22 14:00:53 2011
    Log file located at /stageDB/proddb/10.2.0/appsutil/log/PROD_rofdbs5/ApplyDBTier_06221400.log
    RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    Before taking the source backup :
    i did the following
    1. Autoconfig - completed successfully.
    2.preclone
    3.Shutdown database (normal, innmediate) & stop listener
    4.Copy the soutce to target using scp -r root@hostname:/stageDB
    log file
    vi /stageDB/proddb/10.2.0/appsutil/log/PROD_rofdbs5/ApplyDBTier_06221400.logLoading ORACLE_HOME environment from /stageDB/proddb/10.2.0
    Logfile: /stageDB/proddb/10.2.0/appsutil/log/PROD_rofdbs5/06221400/NetServiceHandler.log
    Error generating tnsnames.ora from the database, temperory tnsnames.ora will be generated using templates
    Instantiating templates
    tnsnames.ora instantiated
    listener.ora instantiated
    adgentns.pl exiting with status 25600
    ERRORCODE = 25600 ERRORCODE_END
    log file
    /stageDB/proddb/10.2.0/appsutil/log/PROD_rofdbs5/06221400/NetServiceHandler.logClasspath : /stageDB/proddb/10.2.0/jdk/jre/lib/rt.jar:/stageDB/proddb/10.2.0/jdk/lib/dt.jar:/stageDB/proddb/10.2.0/jdk/lib/tools.jar:/stageDB/proddb/10.2.0/jdbc/lib/ojdbc14.jar:/stageDB/proddb/10.2.0/appsutil/java/xmlparserv2.zip:/stageDB/proddb/10.2.0/appsutil/java:/stageDB/proddb/10.2.0/jlib/netcfg.jar:/stageDB/proddb/10.2.0/jlib/ldapjclnt10.jar
    ===============================================================================
    NetServiceHandler 115.54 started for rofdbs5 at Wed Jun 22 14:00:59 GST 2011
    ===============================================================================
    [ Context Information ]
    Host : rofdbs5
    Domain : reyamidbs.com
    Out Dir : /stageDB/proddb/10.2.0/appsutil/out/PROD_rofdbs5/06221400
    Tier Type : DATABASE TIER
    Getting connection...
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : rofdbs5
    sDbDomain : reyamidbs.com
    sDbPort : 1521
    sDbSid : PROD
    sDbUser : apps
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@rofdbs5.reyamidbs.com:1521:PROD
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=rofdbs5.reyamidbs.com)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=PROD)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=rofdbs5.reyamidbs.com)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=PROD.reyamidbs.com)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    Could not get connection to the database.
    Exiting with status 100 to instantiate the tnsnames.ora template
    Creation of Directory - /stageDB/proddb/10.2.0/network/admin/PROD_rofdbs5 Succeeded.
    instantiate file:
    source : /stageDB/proddb/10.2.0/appsutil/template/ad8itns.ora
    dest : /stageDB/proddb/10.2.0/network/admin/PROD_rofdbs5/tnsnames.ora
    AutoConfig is exiting with status 0
    instantiate file:
    source : /stageDB/proddb/10.2.0/appsutil/template/ad8ilsnr.ora
    dest : /stageDB/proddb/10.2.0/network/admin/PROD_rofdbs5/listener.ora
    AutoConfig is exiting with status 0
    adgentns.pl exiting with status 25600
    ERRORCODE = 25600 ERRORCODE_END
    Thanks
    Edited by: 843272 on Jun 22, 2011 3:21 AM
    Edited by: 843272 on Jun 22, 2011 5:55 AM

    Log file located at /stageDB/proddb/10.2.0/appsutil/log/PROD_rofdbs5/ApplyDBTier_06221400.log
    RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failedThis error indicates that the database was not created successfully.
    Rapid Clone Failed While Running "Adcfgclone.pl dbTier": ORA-01194 and RC-00118 [ID 375389.1]
    Adcfgclone.pl DBTier is failing with error for dbms_backup_restore.zeroDbid(0) [ID 361157.1]
    Thanks,
    Hussein

Maybe you are looking for

  • How to track changes in Start date

    Hello Everyone, Currently I am facing a new issue (requirement from management) that they want to track the activity start date change and generate a trend report on that so we cna display it to client that this many activities changed this times. To

  • Again, has anyone experienced any issues concerning the auto vector mask option in Fireworks when trying to fade an image?

    I have a major issue that I have tried to resolve on many levels, to no avail. The auto vector mask pop up window is empty when I choose it to fade an image in fireworks. Can anyone please assist. Thanks.

  • Can't get Apple watch and iPhone 5S to communicate over wifi.  Any suggestions?

    one feature of the watch I'm very interested in is the ability for it to communicate over wifi to my phone.  Put the phone down or be charging it in another room and still use the watch. So far it works fine Bluetooth but I haven't had any success wi

  • IBooks for Mac - purchase books as gifts

    I know in the past it was not possible to purchase books as gifts. I've seen in iBooks for iOS it is now possible to send a book as a gift; it is shown as an option at the bottom of the Featured screen. With iBooks for Macs running Mavericks, can you

  • BC4J: Sync with DB problem

    This seems to be a BUG I have two identical schemas, except that in one I have test data which is used for product testing. Needless to say, I have two separate connections. Every time I am deploying a new version of the product I switch to the actua