The following block is giving an exception.why?

DECLARE
TYPE typ_tab_oid IS TABLE OF ncs_domain.sco_item_results.OID%TYPE;
v_tab typ_tab_oid;
CURSOR cur_oid
IS
SELECT OID
FROM ncs_domain.sco_item_results sir
WHERE sir.is_total = 'Y';
v_error_code number(10);
v_error_mesg varchar2(4000);
BEGIN
OPEN cur_oid;
LOOP
FETCH cur_oid
BULK COLLECT INTO v_tab LIMIT 1000;
FORALL i IN 1 .. v_tab.COUNT
DELETE FROM ncs_domain.sco_item_results_bkp sir
WHERE sir.OID = v_tab (i);
EXIT WHEN cur_oid%NOTFOUND;
END LOOP;
CLOSE cur_oid;
EXCEPTION
WHEN OTHERS
THEN
v_error_code:=sqlcode;
v_error_messg:=sqlerrm;
insert into my_error_log values()
raise_application_error (-20001, v_error_code||''||v_error_messg);
END;
exception that i am getting is ora-30036: unable to extend segment by 8 in undo tablespace........
why??
also prior to script i had no index on the column is_total of table ncs_domain.sco_item_results
when i ran the scipt it gave the output in approx 3 hrs.
once i created bitmap index on the column is_total and it is taking 5 hrs.
SAD Part is that even after 5hrs i get an exception that no space in undo tablespace(mentioned above).
How do i handle this exception.??I am a user.Dont have any sys previliges also.
Can saomebody help in improving the perfomace of the script..
The script is basically deleting approx 10,000,000 records.

Hi.
Following is the sript of the table.
It already includes nologging clause.
CREATE TABLE SCO_ITEM_RESULTS_BKP
OID VARCHAR2(32 CHAR) NOT NULL,
TEST_ID NUMBER(22,10),
STUDENT_OID VARCHAR2(32 CHAR),
TEST_TYPE VARCHAR2(32 CHAR),
CUSTOMER_ID NUMBER(9) NOT NULL,
SCORED_DATE DATE,
STATUS VARCHAR2(50 CHAR),
SCORE_VALUE VARCHAR2(10 CHAR),
SCORE_MIN VARCHAR2(10 CHAR),
SCORE_MAX VARCHAR2(10 CHAR),
NUM_ATTEMPTS NUMBER(22,4),
ITEM_ID NUMBER(22,10),
ASSIGNMENT_OID VARCHAR2(32 CHAR),
AUTH_LEVEL_ENTITY_ID NUMBER(10),
SESSION_ID NUMBER(22,10),
CREATEDBY_OID VARCHAR2(32 CHAR),
UPDATEDBY_OID VARCHAR2(32 CHAR),
CREATEDATE DATE,
UPDATEDATE DATE,
ORIGINTYPECD_OID VARCHAR2(32 CHAR),
OWNER_ORGUNIT_OID VARCHAR2(32 CHAR),
APPLICATION_VERSION VARCHAR2(32 CHAR) NOT NULL,
INACTIVESTATUS CHAR(1 CHAR) NOT NULL,
ISDELETED CHAR(1 CHAR) NOT NULL,
JOB_ID VARCHAR2(32 CHAR),
TESTRESULTS_OID VARCHAR2(32 CHAR),
FORM_ID NUMBER(10),
IS_TOTAL CHAR(1 CHAR),
STUDENT_PERSON_OID VARCHAR2(32 CHAR)
TABLESPACE BASE_DATA
PCTUSED 0
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
MINEXTENTS 1
MAXEXTENTS 2147483645
PCTINCREASE 0
BUFFER_POOL DEFAULT
NOLOGGING
NOCACHE
NOPARALLEL
MONITORING;
Edited by: user8731258 on Nov 25, 2009 8:16 PM

Similar Messages

  • Every time I launch the browser the popup blocker option is unchecked. Why does the pop up blocker keep getting unchecked every time browser is launched?

    Every time I launch the browser the popup blocker option is unchecked. Why does the pop up blocker keep getting unchecked every time browser is launched?

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Java Plug-in 1.6.0_05 for Netscape Navigator (DLL Helper)
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)

  • The following sample program got empty display , why?

    import pool.ConnectionPool;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import javax.sql.*;
    public class Update extends HttpServlet {   
        Statement stmt = null;
        ResultSet rs = null;
        Connection conn = null;
    ConnectionPool connectionPool = null;
    * Creates a connection pool.
    public void init() throws ServletException
    String jdbcDriver = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    String dbURL ="jdbc:microsoft:sqlserver://localhost:1433; DatabaseName=pubs";
    try
    //instantiate the connection pool object by passing the
    //jdbc driver, database URL, username, and password
    connectionPool = new ConnectionPool(jdbcDriver, dbURL,
    "test","1234");
    //specify the initial number of connections to establish
    connectionPool.setInitialConnections(5);
    //specify number of incremental connections to create if
    //pool is exhausted of available connections
    connectionPool.setIncrementalConnections(5);
    //specify absolute maximum number of connections to create
    connectionPool.setMaxConnections(20);
    connectionPool.createPool(); //create the connection pool
    catch(Exception e)
    System.out.println("Error: " + e);
    /** Destroys the servlet.
        public void destroy() {
        public void doGet(
        HttpServletRequest request,
        HttpServletResponse response)
        throws IOException, ServletException {  
           }// end of DoGet
      public void doPost(HttpServletRequest req, HttpServletResponse res)
        throws ServletException, IOException {
         res.setContentType("text/html");
        PrintWriter out = res.getWriter();
        PreparedStatement ps = null;
          try{
                String myName= req.getParameter("uname");             
                 String password =req.getParameter("oldpassword");
                 String Npassword =req.getParameter("pas1");          
                String ErrMsg = "";
                  //get free connection from pool
             conn =connectionPool.getConnection();
                 stmt = conn.createStatement(
                           ResultSet.TYPE_SCROLL_SENSITIVE,
                           ResultSet.CONCUR_READ_ONLY);
             rs = stmt.executeQuery("select * FROM users where Name='"+myName+"' and password='"+password+"'" );
                  int count =0;//how many rows we can find.
                  while (rs.next()){
                      count++;
               if(count<1){
                         ErrMsg ="UserName and Password are not there, can't update !";
                        HttpSession userSession = req.getSession(true);           
                        userSession.setAttribute("ErrMsg", ErrMsg);
                          RequestDispatcher disp;
                        disp = getServletContext().getRequestDispatcher("/secure/UpdateError.jsp");
                        req.setAttribute("ErrMsg",ErrMsg);
                       disp.forward(req, res);
             else{
                conn.setAutoCommit(false);
                       Statement stmt = conn.createStatement();
                 String sql ="UPDATE users SET password='"+Npassword+"' where Name='"+myName+"'and password='"+password+"'";
                         ps = conn.prepareStatement(sql);            
                          ps.executeUpdate();                    
               conn.commit();
               conn.setAutoCommit(true);
             //get current session, create if it doesn't exits
               HttpSession userSession = req.getSession(true);
               userSession.setAttribute("Name", myName);
               userSession.setAttribute("Password", Npassword);
           RequestDispatcher disp;
           disp = getServletContext().getRequestDispatcher("/secure/update.jsp");
           req.setAttribute("Name", myName);
           req.setAttribute("password", Npassword);
           disp.forward(req, res);
          }// end else
        }//end try
       catch(SQLException e) {
         finally {
          try {
            if(rs != null)
              rs.close();
              rs = null;
            if(stmt != null)
              stmt.close();
              stmt = null;
            if(conn != null)
              conn.close();
              conn = null;
          } //end try
        catch (SQLException e) {}   
      }//end finally
    } // end doPost
    public String getServletInfo()
        return "A Simple Servlet";
    }// end of ContrUpdate
           jsp
    <%@ page buffer="16kb"%>
    <html>
    <head>
    <title>NewMember</title>
    <body >
    <center>
    <h3> Welcome Back,<%= request.getAttribute("Name")%></h3>
    <h3> you are new information on our Login table are... you can use these userName and Password to login</h3>
    <table width="63%" border="1" align="center" >
    <tr>
    <th  bgcolor="#ffffcc" width="26%">UserName: </th>
    <td><%= request.getAttribute("Name") %></td>
    </tr>    
    <tr>
      <th bgcolor=#ffffcc width="26%">Password: </th>
       <td><%= request.getAttribute("password") %> </td>
    </tr>
    </table>
    </center>
    </body>
    </html>

    There are a lot of try and forget blocks.
    catch (SQLException e) {}   
      }within your code.
    You should at least log the Exception, better would be to rethrow the Exception and display an ErrorPage.
    You may not close the connection within the finally block
    if(rs != null)
              // when a Exception occurs here neither the statement nor the
             // connection will be closed.
              rs.close();
              rs = null;
            if(stmt != null)
              stmt.close();
              stmt = null;
            if(conn != null)
              conn.close();
              conn = null;
            }If the creation of the Connection Pool fails your doPost Method will throw a NullPointerException becauseconnectionPool is null.
    Your init Method should throw an Exception in this case.
    You use a PreparedStatement but you don't use Parameters
       String sql ="UPDATE users SET password='"+Npassword+"' where     Name='"+myName+"'and password='"+password+"'";
                         ps = conn.prepareStatement(sql);            
                          ps.executeUpdate();                 
    // should be
       final String sql ="UPDATE users SET password=? where Name=? and password=?";            
                         ps = conn.prepareStatement(sql);            
                         ps.setSring(1, Npassword);
                         ps.setString(2,myName);
                         ps.setString(3, password);
                          ps.executeUpdate();                 

  • I've updated to FF26 and get the follow error message "Secure Connection Failed" why is that?

    ever since I've updated to FF26 some of the sites won't come up and show the following error message:
    Secure Connection Failed
    An error occurred during a connection to www.facebook.com. SSL peer rejected a handshake message for unacceptable content. (Error code: ssl_error_illegal_parameter_alert)
    The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
    Please contact the website owners to inform them of this problem. Alternatively, use the command found in the help menu to report this broken site.
    it does not happens all the time but most of the times.
    this also occurs on google.com, twitter.com and many more.
    what to do?

    Do you have the option to turn off the feature of Kaspersky scanning your SSL traffic? Usually that can be turned off (e.g., in ESET and BitDefender).

  • Wuc-15 form must contain the following bean

    hi
    i am trying to use the client_text_io api's in a form but i keep getting the wuc-15 error (your form must contain the following bean for this function to be available - oracle.forms.webutil.file.FileFunctions). i do have the webutil object group in the form, i added it after attaching the library but i did go back and recompile all the pl/sql code just in case. forms90_path does include webutil/forms.
    the only thing that i can see that might be a problem is that because of utf8 issues i have to use the sun jdk. i have the following block in my formsweb.cfg file to force the form to use the sun jdk instead of jinitiator
    [jdk_plugin]
    basehtmljinitiator=basejpi.htm
    basehtmlie=basejpi.htm
    baseHTMLjpi=basejpi.htm
    jpi_download_page=http://java.sun.com/j2se/1.4.2/download.html
    jpi_classid=clsid:CAFEEFAC-0014-0002-0004-ABCDEFFEDCBA
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-142-windows-i586.cab#Version=1,4,2,0
    jpi_mimetype=application/x-java-applet;version=1.4.2
    i have left it this way since when i change the basehtml entries to use the webutil templates i get thrown back into jinitiator. is this causing the wuc-15 error? if it is how do i use the webutil templates with the sun jdk?
    thanks
    penny svetlik

    the forms90_path variable contains less than 100 characters.
    i ran the form with increased trace level but did not get anything additional in the way of errors (just the usual 'unable to attach library' error in the alert box). here is the trace information. by the way why do the findlocalhost and getipaddress calles repeat 8 times?
    Registered modality listener
    Registered modality listener
    Referencing classloader: sun.plugin.ClassLoaderInfo@17431b9, refcount=1
    Referencing classloader: sun.plugin.ClassLoaderInfo@12884e0, refcount=1
    Loading applet ...
    Initializing applet ...
    Starting applet ...
    Loading applet ...
    Initializing applet ...
    Starting applet ...
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/webutil.jar with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar with no proxy
    Loading http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar from cache
    Loading http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/webutil.jar from cache
    Certificates for http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/webutil.jar is read from JAR cache
    Certificates for http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar is read from JAR cache
    Modality pushed
    Modality pushed
    Modality popped
    Modality popped
    User selected: 0
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/splash.gif
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/oracle_logo.gif
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/bgnd.gif
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/forms/registry/Registry.dat with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/forms/registry/default.dat with no proxy
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/f90servlet?config=jdk_plugin&form=C:\OraHome1\forms90\webutil\Webutil_demo\WU_TEST.fmx&buffer_records=NO&debug_messages=NO&array=YES&query_only=NO&quiet=NO&RENDER=YES&acceptLanguage=en-us,en;q=0.5&ifcmd=startsession with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae?ifcmd=getinfo&ifhost=epn-svetlikp-3&ifip=156.40.35.44 with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    Forms Applet version is : 902122
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    Loaded image: jar:http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/f90all.jar!/oracle/forms/icons/frame.gif
    2004-Apr-08 08:43:50.544 WUI[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.604 WUI[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.654 WUF[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.684 WUF[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.724 WUH[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.764 WUH[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.784 WUS[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.804 WUS[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:50.835 WUT[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:50.855 WUT[VBeanCommon.getIPAddress()] 156.40.35.44
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/jacob.jar with no proxy
    Loading http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/jacob.jar from cache
    Certificates for http://epn-svetlikp-3.nci.nih.gov:8888/forms90/webutil/jacob.jar is read from JAR cache
    2004-Apr-08 08:43:51.415 WUO[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:51.435 WUO[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:51.495 WUL[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:51.505 WUL[VBeanCommon.getIPAddress()] 156.40.35.44
    2004-Apr-08 08:43:51.536 WUB[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Apr-08 08:43:51.556 WUB[VBeanCommon.getIPAddress()] 156.40.35.44
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/ewt/alert/resource/AlertBundle_en_US.class with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy
    2004-Apr-08 08:43:54.630 WUI[VBeanCommon.destroy()] WebUtil GetClientInfo Utility being removed..
    2004-Apr-08 08:43:54.640 WUF[VBeanCommon.destroy()] WebUtil Client Side File Functions being removed..
    2004-Apr-08 08:43:54.660 WUH[VBeanCommon.destroy()] WebUtil Client Side Host Commands being removed..
    2004-Apr-08 08:43:54.680 WUS[VBeanCommon.destroy()] WebUtil Session Monitoring Facilities being removed..
    2004-Apr-08 08:43:54.700 WUT[VBeanCommon.destroy()] WebUtil File Transfer Bean being removed..
    2004-Apr-08 08:43:54.720 WUO[VBeanCommon.destroy()] WebUtil Client Side Ole Functions being removed..
    2004-Apr-08 08:43:54.730 WUL[VBeanCommon.destroy()] WebUtil C API Functions being removed..
    2004-Apr-08 08:43:55.381 WUB[VBeanCommon.destroy()] WebUtil Browser Functions being removed..
    Connecting http://epn-svetlikp-3.nci.nih.gov:8888/forms90/l90servlet;jsessionid=7de1dca002db47ac915d9a2dfdbf1eae with no proxy

  • DropdownByKey UI element is giving Classcast exception

    Hi
    In my webdynpro view if i add "DropdownbyKey" UI element and the run the application,it is giving Classcast Exception.i am getting following error
    The initial exception that caused the request to fail, was:
       java.lang.ClassCastException
        at com.sap.tc.webdynpro.progmodel.context.Paths.getAttributeInfoFor(Paths.java:202)
        at com.sap.tc.webdynpro.clientimpl.html.uielib.standard.uradapter.DropDownByKeyAdapter.setViewAndNodeElement(DropDownByKeyAdapter.java:240)
        at com.sap.tc.webdynpro.clientimpl.html.uielements.adaptmgr.URAdapterManager.getAdapterFor(URAdapterManager.java:231)
        at com.sap.tc.webdynpro.clientimpl.html.uielements.adaptmgr.URAdapterManager.getAdapterFor(URAdapterManager.java:64)
        at com.sap.tc.webdynpro.clientimpl.html.uielib.standard.uradapter.FlowLayoutAdapter$Items.getControl(FlowLayoutAdapter.java:318)
        ... 39 more
    Please help
    thanks
    Prasad

    Hi Sriram,
    You need to bind the property "selectedKey"  for the DropdownByKey UIElement
    http://help.sap.com/saphelp_nw04/helpdata/en/08/13dbfb6e779743bb2ca641ebcb3411/frameset.htm
    Regards, Anilkumar

  • Customize the Anonymous Block.

    Hi All,
    DB - Oracle 9.2.0.1.0
    With the help of you Guys , I am able to create the Anonymous block.But, In the following BLOCK, I need to add One more functionality, if someone needs to grant "create view" privilge inside the block , then the massage should be " No direct grant allowed, this should be assigned to role. Also, is there any alternate, where we can achieve the same effect without using Associative
    DECLARE
    v_need_to_assign VARCHAR2(30) := '&ENTER PRIVILEGE ASSIGN';
    v_user varchar2(30) := '&USER';
    TYPE t_list IS TABLE OF NUMBER INDEX BY VARCHAR2(30);
    v_list t_list;
    v_chk NUMBER;
    e_fail_drop EXCEPTION;
    BEGIN
    v_list('SYSDBA') := 1;
    v_list('CREATE SESSION') := 1;
    BEGIN
    v_chk := v_list(v_need_to_assign);
    RAISE_APPLICATION_ERROR(-20001,'PRIVELEGE '||v_need_to_assign||' is not allowed to be grant');
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    DBMS_OUTPUT.PUT_LINE('Privilege ' || v_need_to_assign|| ' Granted');
    EXECUTE IMMEDIATE 'GRANT '||v_need_to_assign || ' to ' || v_user;
    DBMS_OUTPUT.PUT_LINE('THE PRIVELEGE '||v_need_to_assign || ' HAS BEEN GRANTED TO ' || v_user) ;
    END;
    END;
    hare krishna

    I would appriciate, if you could offer your suggestions on this.
    hare krishna
    Alok

  • Error in the procedure block

    Hi ,
    I'm getting the error in the following block..
    Could you please give a hint to solve this
    Solved
    Thank you
    Edited by: Smile on Feb 19, 2013 2:04 AM

    What does a weakly typed ref cursor have to do with any of this?
    Cursor loops, of the type you appear to be trying to write have been obsolete this entire decade.
    Please to go http://tahiti.oracle.com and look up BULK COLLECT and FORALL.
    Demos here:
    http://www.morganslibrary.org/library.html

  • Why do I get the following exception when I press the cancel buuton?

    My code is not complete as I am stubbing my code. Can someone tell me why i get the following exception
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
            at Phonebook.createNew(Phonebook.java:244)
            at Phonebook.actionPerformed(Phonebook.java:222)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:19
    95)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.jav
    a:2318)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:387)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
    istener.java:236)
            at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:2
    72)
            at java.awt.Component.processMouseEvent(Component.java:6038)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
            at java.awt.Component.processEvent(Component.java:5803)
            at java.awt.Container.processEvent(Container.java:2058)
            at java.awt.Component.dispatchEventImpl(Component.java:4410)
            at java.awt.Container.dispatchEventImpl(Container.java:2116)
            at java.awt.Component.dispatchEvent(Component.java:4240)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
            at java.awt.Container.dispatchEventImpl(Container.java:2102)
            at java.awt.Window.dispatchEventImpl(Window.java:2429)
            at java.awt.Component.dispatchEvent(Component.java:4240)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThre
    ad.java:273)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.
    java:183)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:173)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)in the following code whenever I press the cancel button in the part of code that tests fro when a user clicks the create button.
         Filename:     ContactsListInterface.java
         Date:           16 March 2008
         Programmer:     Yucca Nel
         Purpose:     Provides a GUI for entering names and contact numbers into a telephone directory.
                        Also allows options for searching for a specific name and deleting of data from the record
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import java.io.*;
    import java.util.*;
    import java.text.*;
    public class Phonebook extends JFrame implements ActionListener
    { //start of class
         // construct fields, buttons, labels,text boxes, ArrayLists etc
         JTextPane displayPane = new JTextPane();
         JLabel listOfContacts = new JLabel("List Of Contacts");               // creates a label for the scrollpane
         JButton createButton = new JButton("Create");
         JButton searchButton = new JButton("Search");
         JButton modifyButton = new JButton("Modify");
         JButton deleteButton = new JButton("Delete");
         ArrayList fNameList = new ArrayList();
         ArrayList sNameList = new ArrayList();
         ArrayList hList = new ArrayList();
         ArrayList wList = new ArrayList();
         ArrayList cList = new ArrayList();
         public String name, surname, home, work, cell;
         // create an instance of the ContactsListInterface
         public Phonebook()
         { // start of cli()
              super("Phonebook Interface");
         } // end of cli()
         public JMenuBar createMenuBar()
         { // start of the createMenuBar()
              // construct and populate a menu bar
              JMenuBar mnuBar = new JMenuBar();                    // creates a menu bar
              setJMenuBar(mnuBar);
              JMenu mnuFile = new JMenu("File",true);               // creates a file menu in the menu bar which is visible
                   mnuFile.setMnemonic(KeyEvent.VK_F);
                   mnuFile.setDisplayedMnemonicIndex(0);
                   mnuFile.setToolTipText("File Options");
                   mnuBar.add(mnuFile);
              JMenuItem mnuFileExit = new JMenuItem("Save And Exit");     // creates an exit option in the file menu
                   mnuFileExit.setMnemonic(KeyEvent.VK_X);
                   mnuFileExit.setDisplayedMnemonicIndex(1);
                   mnuFileExit.setToolTipText("Close Application");
                   mnuFile.add(mnuFileExit);
                   mnuFileExit.setActionCommand("Exit");
                   mnuFileExit.addActionListener(this);
              JMenu mnuEdit = new JMenu("Edit",true);               // creates a menu for editing options
                   mnuEdit.setMnemonic(KeyEvent.VK_E);
                   mnuEdit.setDisplayedMnemonicIndex(0);
                   mnuEdit.setToolTipText("Edit Options");
                   mnuBar.add(mnuEdit);
              JMenu mnuEditSort = new JMenu("Sort",true);          // creates an option for sorting entries
                   mnuEditSort.setMnemonic(KeyEvent.VK_S);
                   mnuEditSort.setDisplayedMnemonicIndex(0);
                   mnuEdit.add(mnuEditSort);
              JMenuItem mnuEditSortByName = new JMenuItem("Sort By Name");          // to sort entries by name
                   mnuEditSortByName.setMnemonic(KeyEvent.VK_N);
                   mnuEditSortByName.setDisplayedMnemonicIndex(8);
                   mnuEditSortByName.setToolTipText("Sort entries by first name");
                   mnuEditSortByName.setActionCommand("Name");
                   mnuEditSortByName.addActionListener(this);
                   mnuEditSort.add(mnuEditSortByName);
              JMenuItem mnuEditSortBySurname = new JMenuItem("Sort By Surname");     // to sort entries by surname
                   mnuEditSortBySurname.setMnemonic(KeyEvent.VK_R);
                   mnuEditSortBySurname.setDisplayedMnemonicIndex(10);
                   mnuEditSortBySurname.setToolTipText("Sort entries by surname");
                   mnuEditSortBySurname.setActionCommand("Surname");
                   mnuEditSortBySurname.addActionListener(this);
                   mnuEditSort.add(mnuEditSortBySurname);
              JMenu mnuHelp = new JMenu("Help",true);                    // creates a menu for help options
                   mnuHelp.setMnemonic(KeyEvent.VK_H);
                   mnuHelp.setDisplayedMnemonicIndex(0);
                   mnuHelp.setToolTipText("Help options");
                   mnuBar.add(mnuHelp);
              JMenuItem mnuHelpHelp = new JMenuItem("Help");          // creates a help option for help topic
                   mnuHelpHelp.setMnemonic(KeyEvent.VK_P);
                   mnuHelpHelp.setDisplayedMnemonicIndex(3);
                   mnuHelpHelp.setToolTipText("Help Topic");
                   mnuHelpHelp.setActionCommand("Help");
                   mnuHelpHelp.addActionListener(this);
                   mnuHelp.add(mnuHelpHelp);
              JMenuItem mnuHelpAbout = new JMenuItem("About");     // creates a about option for info about api
                   mnuHelpAbout.setMnemonic(KeyEvent.VK_T);
                   mnuHelpAbout.setDisplayedMnemonicIndex(4);
                   mnuHelpAbout.setToolTipText("About this program");
                   mnuHelpAbout.setActionCommand("About");
                   mnuHelpAbout.addActionListener(this);
                   mnuHelp.add(mnuHelpAbout);
              return mnuBar;
         } // end of the createMenuBar()
         // create the content pane
         public Container createContentPane()
         { // start of createContentPane()
              //construct and populate panels and content pane
              JPanel labelPanel = new JPanel(); // panel is only used to put the label for the textpane in
                   labelPanel.setLayout(new FlowLayout());
                   labelPanel.add(listOfContacts);
              JPanel displayPanel = new JPanel();// panel is used to display all the contacts and thier numbers
                   setTabsAndStyles(displayPane);
                   displayPane = addTextToTextPane();
                   displayPane.setEditable(false);
              JScrollPane scrollPane = new JScrollPane(displayPane);
                   scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS); // pane is scrollable vertically
                   scrollPane.setWheelScrollingEnabled(true);// pane is scrollable by use of the mouse wheel
                   scrollPane.setPreferredSize(new Dimension(400,320));
              displayPanel.add(scrollPane);
              JPanel workPanel = new JPanel();// panel is used to enter, edit and delete data
                   workPanel.setLayout(new FlowLayout());
                   workPanel.add(createButton);
                        createButton.setToolTipText("Create a new entry");
                        createButton.addActionListener(this);
                   workPanel.add(searchButton);
                        searchButton.setToolTipText("Search for an entry by name number or surname");
                        searchButton.addActionListener(this);
                   workPanel.add(modifyButton);
                        modifyButton.setToolTipText("Modify an existing entry");
                        modifyButton.addActionListener(this);
                   workPanel.add(deleteButton);
                        deleteButton.setToolTipText("Delete an existing entry");
                        deleteButton.addActionListener(this);
              labelPanel.setBackground(Color.red);
              displayPanel.setBackground(Color.red);
              workPanel.setBackground(Color.red);
              // create container and set attributes
              Container c = getContentPane();
                   c.setLayout(new BorderLayout(30,30));
                   c.add(labelPanel,BorderLayout.NORTH);
                   c.add(displayPanel,BorderLayout.CENTER);
                   c.add(workPanel,BorderLayout.SOUTH);
                   c.setBackground(Color.red);
              // add a listener for the window closing and save
              addWindowListener(
                   new WindowAdapter()
                        public void windowClosing(WindowEvent e)
                             int answer = JOptionPane.showConfirmDialog(null,"Are you sure you would like to save all changes and exit?","File submission",JOptionPane.YES_NO_OPTION);
                             if(answer == JOptionPane.YES_OPTION)
                                  System.exit(0);
              return c;
         } // end of createContentPane()
         protected void setTabsAndStyles(JTextPane displayPane)
         { // Start of setTabsAndStyles()
              // set Font style
              Style fontStyle = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE);
              Style regular = displayPane.addStyle("regular", fontStyle);
              StyleConstants.setFontFamily(fontStyle, "SansSerif");
              Style s = displayPane.addStyle("bold", regular);
              StyleConstants.setBold(s,true);
         } // End of setTabsAndStyles()
         public JTextPane addTextToTextPane()
         { // start of addTextToTextPane()
              Document doc = displayPane.getDocument();
              try
              { // start of tryblock
                   // clear previous text
                   doc.remove(0,doc.getLength());
                   // insert titles of columns
                   doc.insertString(0,"NAME\tSURNAME\tHOME NO\tWORK NO\tCELL NO\n",displayPane.getStyle("bold"));
              } // end of try block
              catch(BadLocationException ble)
              { // start of ble exception handler
                   System.err.println("Could not insert text.");
              } // end of ble exception handler
              return displayPane;
         } // end of addTextToTextPane()
         // code to process user clicks
         public void actionPerformed(ActionEvent e)
         { // start of actionPerformed()
              String arg = e.getActionCommand();
              // user clicks create button
              if(arg.equals("Create"))
                   createNew();
              if(arg.equals("Search"))
              if(arg.equals("Modify"))
              if(arg.equals("Delete"))
              if(arg.equals("Exit"))
         } // end of actionPerformed()
         // method to create a new contact
         public void createNew()
         { // start of create new contact()
              name = JOptionPane.showInputDialog(null,"Please enter the new contacts first name or press cancel to exit.");
              if(name == null)     finish();                         // if user clicks cancel
              if(name.length() <=0)
                   JOptionPane.showMessageDialog(null,"You did not enter a valid name.\nPlease make sure you enter data correctly.","Error",JOptionPane.ERROR_MESSAGE);
                   createNew();                                   // To return to the create method
              surname = JOptionPane.showInputDialog(null,"Please enter the new contacts surname or press cancel to exit.");
              if(surname == null)     finish();                         // if user clicks cancel
              if(surname.equals(""))
                   int answer = JOptionPane.showConfirmDialog(null,"You did not enter a surname.\nAre you sure you wish to leave the surname empty?","No data entered",JOptionPane.YES_NO_OPTION);   // Asks if data was valid
                   if(answer == JOptionPane.NO_OPTION)
                        surname = JOptionPane.showInputDialog(null,"Please enter the new contacts surname.");
              home = JOptionPane.showInputDialog(null,"Please enter the new contacts home number or press cancel to exit.");
              if(home == null)   finish();                    // if user clicks cancel
              work = JOptionPane.showInputDialog(null,"Please enter the new contacts work number or press cancel to exit.");
              if(work == null)     finish();                    // if user clicks cancel
              cell = JOptionPane.showInputDialog(null,"Please enter the new contacts cell number or press cancel to exit.");
              if(cell == null)     finish();                    // if user clicks cancel
         } // end of create new contact()
         // method to close applicatin
         public void finish()
         // method to search a contact
         public static void main(String[] args)
         { // start of main()
              // Set look and feel of interface
              try
              { // start of try block
                   UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
              } // end of try block
              catch(Exception e)
              { // start of catch block
                   JOptionPane.showMessageDialog(null,"There was an error in setting the look and feel of this application","Error",JOptionPane.INFORMATION_MESSAGE);
              } // end  of catch block
              Phonebook p = new Phonebook();
              p.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
              p.setJMenuBar(p.createMenuBar());
              p.setContentPane(p.createContentPane());
              p.setSize(520,500);
              p.setVisible(true);
              p.setResizable(false);
         } // end of main()
    } //end of class

    Yucca wrote:
    Line 244 is where I test for if the user actuallu entered a String at all. Is there an alternative way of writing that code?
    if(name.length() <=0)
                   JOptionPane.showMessageDialog(null,"You did not enter a valid name.\nPlease make sure you enter data correctly.","Error",JOptionPane.ERROR_MESSAGE);
                   createNew();                                   // To return to the create method
    Change:
    if(name == null)     finish();     To
    if(name == null) {
        finish();
        return;
    }

  • In which of the following sections of a PL/SQL block is a user-defined exception raised?

    Hi,
    A (somewhat elementary) question:
    In which of the following sections of a PL/SQL block is a user-defined exception raised?
    a) Exception section
    b) Declarative section
    c) Error handling section
    d) Executable section
    I'd be interested to hear people's answers.
    Thanks.

    As Etbin already noted, there are only 3 sections and user-defined exception can be raised in any of them. User-defined exception raised in declarative section example:
    declare
        year_zero exception;
        pragma exception_init(year_zero,-01841);
    begin
        declare
            v_dt date := to_date(1721420,'j');
        begin
            null;
        end;
      exception
        when year_zero
          then
            dbms_output.put_line('Year 0!');
    end;
    Year 0!
    PL/SQL procedure successfully completed.
    SQL>
    User-defined exception raised in executable section example:
    declare
        year_zero exception;
        pragma exception_init(year_zero,-01841);
        v_dt date;
    begin
        v_dt := to_date(1721420,'j');
      exception
        when year_zero
          then
            dbms_output.put_line('Year 0!');
    end;
    Year 0!
    PL/SQL procedure successfully completed.
    SQL>
    User-defined exception raised in exception handling section example:
    declare
        year_zero exception;
        pragma exception_init(year_zero,-01841);
        v_dt date;
    begin
        declare
            v_num number;
        begin
            v_num := 1 / 0;
          exception
            when others
              then
                v_dt := to_date(1721420,'j');
        end;
      exception
        when year_zero
          then
            dbms_output.put_line('Year 0!');
    end;
    Year 0!
    PL/SQL procedure successfully completed.
    SQL>
    SY.

  • My ipad3 will not turn on except to display the following[NAND] _FindFlashMediaAndKerpout:429 physical NAND block offset 16  [NAND] start:220 this 0xa015cc00 PROVIDER=0x9ed20080 flashMedia=0x9ed20080  [NAND] WMR_Start:149 Apple PPN NAND Driver, Read/Write

    Help. My ipad will not boot up except to show the following message.
    [NAND] _FindFlashMediaAndKerpout:429 physical NAND block offset 16
    [NAND] start:220 this 0xa015cc00 PROVIDER=0x9ed20080 flashMedia=0x9ed20080
    [NAND] WMR_Start:149 Apple PPN NAND Driver, Read/Write
    Ideas? Help

    Hi, my ipad 2 just got the same problem and after reading all relative post, finnally i figrue it out, that is no software issue at alll just hardware,
    I did attemp replace the power button cable on my ipad so i must disconnect the back camera cable so there is my problem. Because the connect some how not exact in place, i took the camera out and the issue is gone. So, in your case, if you did try to replace anything look at them again or you just take them out one by one and reboot ipad until it work.
    Hope this help
    Binh

  • Why isn't the popup blocker exception working for sites I have added? It still asks me to "allow" them.

    Even though I have added sites to the Exceptions in the Popup Blocker preferences, I constantly have to press the Allow button to actually go to the next window. The sites are staying in the Exceptions list and I can get there, but something clearly isn't working properly.

    I have been adding each domain name that pops up that's different from the original website and Firefox is still asking me to "Allow" it. Very frustrating...

  • Why is no one giving answers to the following problem?

    It seems that there are a few of us who have asked a very similar question and no one is giving us an answer to issues when trying to download a PDF file.
    I get the following message:  "AdobePDFVIEWER cannot find a compatible Adobe Acrobat or Adobe Reader to view this PDF.  Please select one."
    I have both Adobe Reader 7.0.8 and 9.2 installed.  When I open either application window, the applications are greyed out.  I am on a MacbookPro laptop, OSX 10.4.11 and it happens on the G4 desktop computer too.  The browser is the latest Safari.
    I notice others with this same problem are using Windows and/or Firefox. Can we please have some answers to the problem?
    In AUGUST, one person suggested going to the Help File and downloading a missing plugin.  OK.  Did that and get this message:
    "No missing components detected.  Repairs are not needed."

    The Windows issue probably would have a differnt cause. Mostly you couldn't install two different versions of Reader on Windows but that's fine on a Mac.
    What happens if you control>click on the link to the PDF file and choose "save file as", save it your hard drive and double click it? If double clicking doesn't work what exactly happens? Also try to open Reader first and use File>Open. Does that work?
    If not, can you open the file in Preview?
    Another thing to try would be going to /Library/Internet Plug-Ins/ and remove the one that refers to Adobe Acrobat Reader. I believe it's /Library/Internet Plug-Ins/AdobePDFViewer.plugin

  • System error in block parforEach: Exception why is process finished?

    Hi everybody,
    we split a message in BPM. Then we loop the multiline-container element.
    For each line-item we call a WebService synchrounous.
    We got a exception branch for system errors.
    Now we got the following problem:
    Our produces abount 3000 line-items.
    While processing e.g. item 1000 we got a system error and the BPM jumped into the execption branch. After processing the exception branch the process FINISHED!
    We assumed that the process would go on processing the remaining items!
    Is there a workaroud, that the process does go on with processing the remaining items?
    Regards Mario

    Hi,
    After handling the exception, the process will be continuing after that block. So you can try to put the block within a loop until all the line items get over.
    Regards,
    P.Venkat

  • Failed to retrieve a schema URI (document namespace) for /userprofiles/emailNotification.usr; please see the following exception for details

    I get this exception (and long stack trace) when attempting to start my weblogic server. I'm running Weblogic 7 with Portal 7 (sp 1). I'm using Oracle 8.1.7. I upgraded this application from weblogic portal 4.0, and never had this problem there. As part of the migration process, I ran the tool to migrate all of the database tables, and I re-synched the EBCC project using version 7 of EBCC. I did a search for this problem and found a few mentions of it that seemed to be related to Oracle's handling of CLOB data. Apparently, there is a patch, but I can't seem to find this patch. I'm also not sure if this is indeed the problem since I didn't have this issue with the older version of weblogic using the same database. Any suggestions?

    If you have a support contract please open a case so we can work through
    this problem.
    Can you run an sqlplus session on your database, execute the commands
    "delete from data_sync_item" and "commit", then resync to see if it will
    get you around the problem. The data_sync_item table will be fully
    populated after you sync. This should get you running.
    Between 4.0 and 7.0 the DefaultRequestPropertySet.req file was reduced
    in size -- the CLOB would be smaller in the data_sync_item table.
    I would recommend using the Version Checker against your installation --
    find it on the dev2dev.bea.com site to see if the upgrade installer work
    ed properly. Also consider running the full installer to avoid possible
    problems that might occur with upgrade installers.
    As a result of that patch you referenced in 4.0 the CLOB handling logic
    was changed in 7.0 -- this is why it is strange you are seeing cleaving
    errors. In 7.0 SP2 to be release next week the data sync and
    persistence code was changed also.
    Are you using the OCI or Thin driver?
    -- Jim
    Rob Goldie wrote:
    Jim Litton <replyto@newsgroup> wrote:
    Rob,
    The CLOB issue was related to wlportal4.0 and should not be a factor
    in
    7.0.
    Could you post the entire stack trace?
    ####<Jan 27, 2003 4:21:47 PM EST> <Warning> <Data Synchronization> <PFIDEV5> <pfeAricept1Server>
    <main> <kernel identity> <> <000000> <Application: gmiAriceptApp; Failed to retrieve
    a schema URI (document namespace) for /request/DefaultRequestPropertySet.req;
    please see the following exception for details.>
    Exception[com.bea.p13n.management.data.doc.DocumentProcessingException: Unable
    to analyze and/or cleave document]
         at com.bea.p13n.management.data.doc.cleaver.CleavingDocumentProcessor.process(CleavingDocumentProcessor.java:94)
         at com.bea.p13n.management.data.repository.internal.DataItemImpl.getSchemaUri(DataItemImpl.java:136)
         at com.bea.p13n.management.data.repository.DataRepositoryFactory.createDataItem(DataRepositoryFactory.java:363)
         at com.bea.p13n.management.data.repository.persistence.JdbcDataSource.createDataItems(JdbcDataSource.java:523)
         at com.bea.p13n.management.data.repository.persistence.JdbcDataSource.refresh(JdbcDataSource.java:442)
         at com.bea.p13n.management.data.repository.persistence.ReadOnlyJdbcPersistenceManager.refresh(ReadOnlyJdbcPersistenceManager.java:107)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.<init>(AbstractDataRepository.java:193)
         at com.bea.p13n.management.data.repository.internal.MasterDataRepository.<init>(MasterDataRepository.java:46)
         at com.bea.p13n.management.data.repository.DataRepositoryFactory.getMasterDataRepository(DataRepositoryFactory.java:255)
         at com.bea.p13n.placeholder.internal.PlaceholderServiceImpl.ejbCreate(PlaceholderServiceImpl.java:191)
         at com.bea.p13n.placeholder.internal.PlaceholderServiceImpl_9p0jz2_Impl.ejbCreate(PlaceholderServiceImpl_9p0jz2_Impl.java:117)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSessionPool.java:151)
         at weblogic.ejb20.pool.Pool.createInitialBeans(Pool.java:188)
         at weblogic.ejb20.manager.StatelessManager.initializePool(StatelessManager.java:380)
         at weblogic.ejb20.deployer.EJBDeployer.initializePools(EJBDeployer.java:1472)
         at weblogic.ejb20.deployer.EJBDeployer.start(EJBDeployer.java:1367)
         at weblogic.ejb20.deployer.Deployer.deploy(Deployer.java:864)
         at weblogic.j2ee.EJBComponent.deploy(EJBComponent.java:81)
         at weblogic.j2ee.Application.addComponent(Application.java:294)
         at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:164)
         at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:375)
         at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:303)
         at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:256)
         at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:207)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:732)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:714)
         at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:417)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:926)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:470)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:198)
         at $Proxy9.updateDeployments(Unknown Source)
         at weblogic.management.configuration.ServerMBean_CachingStub.updateDeployments(ServerMBean_CachingStub.java:4060)
         at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployments(SlaveDeployer.java:2259)
         at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:373)
         at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:235)
         at weblogic.t3.srvr.ServerLifeCycleList.resume(ServerLifeCycleList.java:61)
         at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:806)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:295)
         at weblogic.Server.main(Server.java:32)
    Caused by: org.xml.sax.SAXException: No message available. Resource not found:
    repository.cleaver.no.xsi.namespace.exception Resource bundle: com/bea/p13n/management/data/datasync
         at com.bea.p13n.management.data.doc.cleaver.DocumentCleaver.mapNamespaces(DocumentCleaver.java:135)
         at com.bea.p13n.management.data.doc.cleaver.DocumentCleaver.startElement(DocumentCleaver.java:235)
         at weblogic.apache.xerces.parsers.SAXParser.startElement(SAXParser.java:1384)
         at weblogic.apache.xerces.validators.common.XMLValidator.callStartElement(XMLValidator.java:1299)
         at weblogic.apache.xerces.framework.XMLDocumentScanner.scanElement(XMLDocumentScanner.java:1821)
         at weblogic.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispatch(XMLDocumentScanner.java:964)
         at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:396)
         at weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:1119)
         at weblogic.xml.jaxp.WebLogicXMLReader.parse(WebLogicXMLReader.java:135)
         at weblogic.xml.jaxp.RegistryXMLReader.parse(RegistryXMLReader.java:133)
         at com.bea.p13n.management.data.doc.cleaver.CleavingDocumentProcessor.process(CleavingDocumentProcessor.java:80)
         at com.bea.p13n.management.data.repository.internal.DataItemImpl.getSchemaUri(DataItemImpl.java:136)
         at com.bea.p13n.management.data.repository.DataRepositoryFactory.createDataItem(DataRepositoryFactory.java:363)
         at com.bea.p13n.management.data.repository.persistence.JdbcDataSource.createDataItems(JdbcDataSource.java:523)
         at com.bea.p13n.management.data.repository.persistence.JdbcDataSource.refresh(JdbcDataSource.java:442)
         at com.bea.p13n.management.data.repository.persistence.ReadOnlyJdbcPersistenceManager.refresh(ReadOnlyJdbcPersistenceManager.java:107)
         at com.bea.p13n.management.data.repository.internal.AbstractDataRepository.<init>(AbstractDataRepository.java:193)
         at com.bea.p13n.management.data.repository.internal.MasterDataRepository.<init>(MasterDataRepository.java:46)
         at com.bea.p13n.management.data.repository.DataRepositoryFactory.getMasterDataRepository(DataRepositoryFactory.java:255)
         at com.bea.p13n.placeholder.internal.PlaceholderServiceImpl.ejbCreate(PlaceholderServiceImpl.java:191)
         at com.bea.p13n.placeholder.internal.PlaceholderServiceImpl_9p0jz2_Impl.ejbCreate(PlaceholderServiceImpl_9p0jz2_Impl.java:117)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSessionPool.java:151)
         at weblogic.ejb20.pool.Pool.createInitialBeans(Pool.java:188)
         at weblogic.ejb20.manager.StatelessManager.initializePool(StatelessManager.java:380)
         at weblogic.ejb20.deployer.EJBDeployer.initializePools(EJBDeployer.java:1472)
         at weblogic.ejb20.deployer.EJBDeployer.start(EJBDeployer.java:1367)
         at weblogic.ejb20.deployer.Deployer.deploy(Deployer.java:864)
         at weblogic.j2ee.EJBComponent.deploy(EJBComponent.java:81)
         at weblogic.j2ee.Application.addComponent(Application.java:294)
         at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:164)
         at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:375)
         at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:303)
         at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:256)
         at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:207)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:732)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:714)
         at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:417)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:926)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:470)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:198)
         at $Proxy9.updateDeployments(Unknown Source)
         at weblogic.management.configuration.ServerMBean_CachingStub.updateDeployments(ServerMBean_CachingStub.java:4060)
         at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployments(SlaveDeployer.java:2259)
         at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:373)
         at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:235)
         at weblogic.t3.srvr.ServerLifeCycleList.resume(ServerLifeCycleList.java:61)
         at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:806)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:295)
         at weblogic.Server.main(Server.java:32)
    Are you using a UTF-8 Oracle database?
    Yes
    If you create a new User Profile in the EBCC and compare it to your
    migrated .usr file do you see differences in the DTD's?
    I recreated a new version of the .usr in the EBCC, and still got the same error.
    I also tried deleting everything from the data-sync-item table and re-synching.
    What does the DocumentManager section of your application-config.xml
    look like?
    <DocumentManager
    ContentCacheName="documentContentCache"
    ContentCaching="true"
    DocumentConnectionPoolName="default"
    MaxCachedContentSize="32768"
    MetadataCacheName="documentMetadataCache"
    MetadataCaching="true"
    Name="default"
    PropertyCase="none"
    UserIdInCacheKey="false"
    />
    What does the document.jar Targets="" parameter look like in config.xml?
    <EJBComponent Name="document" Targets="pfeCluster" URI="document.jar"/>
    -- Jim
    Rob Goldie wrote:
    I get this exception (and long stack trace) when attempting to start
    my weblogic server. I'm running Weblogic 7 with Portal 7 (sp 1). I'm
    using Oracle 8.1.7. I upgraded this application from weblogic portal
    4.0, and never had this problem there. As part of the migration process,
    I ran the tool to migrate all of the database tables, and I re-synched
    the EBCC project using version 7 of EBCC. I did a search for this problem
    and found a few mentions of it that seemed to be related to Oracle's
    handling
    of CLOB data. Apparently, there is a patch, but I can't seem to find
    this patch. I'm also not sure if this is indeed the problem since I
    didn't have this issue with the older version of weblogic using the
    same database. Any suggestions?

Maybe you are looking for

  • Deleting rows in a table with a button

    Good Day All; I seemed to have run into a snag with trying to add a delete button in a table that will delete a row. Let me expain. The form has 1 table that has 7 cells made up of text fields and drop downs. This table is in its own subform. There i

  • I can't open my googlemail anymore, its says it could not connect

    Hi All, I've a macbook pro, Safari 5.0.2. I use googlemail as main email account. Everything was working fine until I installed TimeCapsule. Since I installed it I can't access to my google mail account. I can access it via my HTC desire using the sa

  • Dynamic control of progress bar component

    Hello, I'm trying to use a load progress bar component to appear as .swf files are loaded into a blank movie symbol when users click on a button. What script can I use to connect the progress bar, button, and the empty movie clip?

  • Still can't drag out pages on OSX?

    On Yosemite, XI. Found this morning I couldn't drag pages out of thumbnail view to desktop. Did some searching around here and I found one post that said this feature wasn't available in OSX? Is this still true? If so... can I install an older versio

  • Ejb-ref questions:

    1.if an entity-A is referece to entity-B , and entity-B is referece to entity-C (and that is declared in entity-B 'ejb-jar.xml' !) , when adding 'ejb-local-ref' to entity-A ,beside of adding entity-B,should entity-C be added too ,or a one can assume