Java - database problem

Hello again!
We tried to make some changes to the program we sent before.
In this program the user writes a string in a text field and then he pushes the button "send". Once this button is pushed, the content of the textfield is supposed to be written into a table (named TITLES) of a database.
The problem is that only the initiallized value of the string is sent to the database instead of what the user types. We know that the string str takes the right value from the actionPerformed method but it can not be seen by the class insertToTiltles.
Can you please tell us how we can insert the str value into the database? Thanks in advance. We send you our code:
import java.sql.*;
import java.awt.*;
import java.awt.event.*;
public class insertToTitles
    public static void main (String args[])
        String driverClassName = "sun.jdbc.odbc.JdbcOdbcDriver";
        String url             = "jdbc:odbc:titledb";
        Connection dbConnection;
          Statement  statement = null ;
          String str="initial value";
        try
             Class.forName (driverClassName) ;
        catch(java.lang.ClassNotFoundException e)
             System.err.print("ClassNotFoundException: ");
             System.err.println(e.getMessage());
        try
             dbConnection = DriverManager.getConnection (url, "", "") ;
             statement = dbConnection.createStatement () ;
             GUI application=new GUI();
               application.setLocation(0,0);
              application.setSize(400,250);
              application.setVisible(true);
             statement.executeUpdate("INSERT INTO TITLES"+"(SITE_NAME)"+"VALUES"+"('"+str+"')");
             statement.close () ;
             dbConnection.close () ;
        catch(SQLException ex)
             System.err.println("SQLException: " + ex.getMessage());
class GUI extends Frame implements ActionListener
     TextField txt;
     //TextField txt2;
       Button button;
       FlowLayout fl;
       String str;
       GUI()
            fl=new FlowLayout();
          this.setLayout(fl);
            txt=new TextField(50);
        add(txt);
         button=new Button("Send");
         button.addActionListener(this);
         add(button);
         //txt2=new TextField(50);
        //add(txt2);
    public void actionPerformed(ActionEvent e)
         String str=txt.getText();
}

hi,
can u test the following program,
thanks
ss
import java.sql.*;
import java.awt.*;
import java.awt.event.*;
public class InsertToTitles
     static String driverClassName = "sun.jdbc.odbc.JdbcOdbcDriver";
static String url = "jdbc:odbc:titledb";
public static void main (String args[])
     GUI application=new GUI();
               application.setLocation(0,0);
          application.setSize(400,250);
          application.setVisible(true);
static void insertMethod(String str)
     Connection dbConnection;
Statement statement = null ;
try
     Class.forName (driverClassName) ;
catch(java.lang.ClassNotFoundException e)
     System.err.print("ClassNotFoundException: ");
     System.err.println(e.getMessage());
try
     dbConnection = DriverManager.getConnection (url, "", "") ;
     statement = dbConnection.createStatement () ;
     System.out.println(str);
     statement.executeUpdate("INSERT INTO TITLES(SITE_NAME)VALUES('"+str+"')");
     statement.close () ;
     dbConnection.close () ;
catch(Exception ex)
     System.err.println("SQLException: " + ex.getMessage());
class GUI extends Frame implements ActionListener
     TextField txt;
     //TextField txt2;
     Button button;
     FlowLayout fl;
     String str;
     GUI()
          fl=new FlowLayout();
          this.setLayout(fl);
          txt=new TextField(50);
add(txt);
     button=new Button("Send");
     button.addActionListener(this);
     add(button);
     //txt2=new TextField(50);
//add(txt2);
public void actionPerformed(ActionEvent e)
     InsertToTitles.insertMethod(txt.getText());
}

Similar Messages

  • Java DataBase in NetBeans!!

    Hi there,
    can you help guy,
    I have the NetBeans IDE 4.1,
    Oracle 9,
    j2sdk1.4.0,
    and win xp (on standalone machine)
    I remember the old version of NetBeans, you can use Mounting FileSystem for jdbc\oracle\driver
    to use the OracleDriver
    but I get message error at compiler says that package jdbc.oracle.driver does not exist
    please I need help in who to do Mounting FileSystem or other way
    here is my code of java
    // Database application using Oracle and Java programming Language
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    import javax.swing.*;
    import java.awt.event.*;
    import jdbc.sql.*
    import java.awt.*;
    public class OracleJavaCustomerWindow extends JFrame
    private JLabel labelCId,labelCName,labelCCity,labelCPhone;
    private JTextField textCId,textCName,textCCity,textCPhone;
    private JPanel labelPanel,buttonPanel,textAreaPanel,labelTextAreaPanel;
    private JTextArea outputArea;
    private JScrollPane scrollPane;
    private JButton buttonDisplay,buttonAdd,buttonModifyRecord,buttonUpdate,buttonDelete;
    private JButton buttonClear;
    private JTextField field1,field2,field3,field4;
    private JLabel label1,label2,label3,label4;
    private JPanel mixedPanel,mixedPanel2,fieldPanel1,fieldPanel2,fieldPanel3,fieldPanel4;
    static Connection sqlconn = null;
    // set up GUI with constrictor(IT IS A METHOD. EACHO CLASS AT LEST HAVE ONE)
    public OracleJavaCustomerWindow ()
    super("Display Oracle Data for Customers");
    try{
              DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
              sqlconn= DriverManager.getConnection ("jdbc:oracle:oci:@Kawasaki", "scott", "tiger");
    catch(SQLException ex)
    System.out.println("SQLException:" + ex.getMessage() + "<BR>");     
    // add GUI components to container
    Container container = getContentPane();
    container.setLayout(new FlowLayout(FlowLayout.CENTER));
    // Build labelPanel
    labelCId = new JLabel(" Customer ID");
    labelCName = new JLabel("Customer Name");
         labelCCity = new JLabel("Customer City");
    labelCPhone = new JLabel("Customer Phone");
    labelPanel = new JPanel();
    labelPanel.setLayout(new FlowLayout(FlowLayout.CENTER,3,5));
         labelPanel.add(labelCId);
    labelPanel.add(labelCName);
    labelPanel.add(labelCCity);
    labelPanel.add(labelCPhone);
    // Build textAreaPanel
    outputArea = new JTextArea(10,30);
    outputArea.setEditable(false);
    scrollPane = new JScrollPane(outputArea);
    textAreaPanel = new JPanel();
    textAreaPanel.setLayout(new FlowLayout(FlowLayout.CENTER,3,5));
    textAreaPanel.add(scrollPane);
    // Build labelTextAreaPanel which contains labelPanel and textAreaPanel
    // to be ready for adding to container
    labelTextAreaPanel= new JPanel();
    labelTextAreaPanel.setLayout(new BorderLayout());
    labelTextAreaPanel.add(labelPanel,BorderLayout.NORTH);
    labelTextAreaPanel.add(textAreaPanel,BorderLayout.SOUTH);
    // Buld buttonPanel
    buttonDisplay = new JButton ("Display Table");
    buttonClear = new JButton ("Clear");
    buttonAdd = new JButton("Add New Record");
    buttonUpdate= new JButton("Display Record");
    buttonModifyRecord = new JButton("Modify Record");
    buttonDelete = new JButton("Delete Record");
    buttonPanel = new JPanel();
    buttonPanel.setLayout(new GridLayout(6,1,10,5));
    buttonPanel.add(buttonAdd);
    buttonPanel.add(buttonUpdate);
    buttonPanel.add(buttonModifyRecord);
    buttonPanel.add(buttonDisplay);
    buttonPanel.add(buttonDelete);
    buttonPanel.add(buttonClear);
    // build fieldPanel1
    label1 = new JLabel("Customer Number");
    field1 = new JTextField(10);
    fieldPanel1 = new JPanel();
    fieldPanel1.setLayout(new FlowLayout(FlowLayout.CENTER,3,5));
    fieldPanel1.add(label1);
    fieldPanel1.add(field1);
    // build fieldPanel2
    fieldPanel2 = new JPanel();
    label2 = new JLabel("Customer Name");
    field2 = new JTextField(10);
    fieldPanel2.setLayout(new FlowLayout(FlowLayout.CENTER,3,5));
    fieldPanel2.add(label2);
    fieldPanel2.add(field2);
    // build fieldPanel3
    fieldPanel3 = new JPanel();
    label3 = new JLabel("Customer City");
    field3 = new JTextField(10);
    fieldPanel3.setLayout(new FlowLayout(FlowLayout.CENTER,3,5));
    fieldPanel3.add(label3);
    fieldPanel3.add(field3);
         // build fieldPanel4
    fieldPanel4 = new JPanel();
    label4 = new JLabel("Customer Phone");
    field4 = new JTextField(10);
    fieldPanel4.setLayout(new FlowLayout(FlowLayout.CENTER,3,5));
    fieldPanel4.add(label4);
    fieldPanel4.add(field4);
    // Build mixedPanel which contains fieldPanel1, fieldPanel2,fieldPanel3
    // to be ready for adding to container
    mixedPanel = new JPanel();
    mixedPanel.setLayout(new BorderLayout());
         mixedPanel.add(fieldPanel1,BorderLayout.NORTH);
    mixedPanel.add(fieldPanel2,BorderLayout.CENTER);
    mixedPanel.add(fieldPanel3,BorderLayout.SOUTH);
    mixedPanel2 = new JPanel();
    mixedPanel2.add(fieldPanel4,BorderLayout.SOUTH);
    // add all panels to the container
    container.add(mixedPanel);
    container.add(mixedPanel2);
    container.setBackground(Color.DARK_GRAY);
    container.add(labelTextAreaPanel);
         container.add(buttonPanel);
    //--------- Messages to communicate with different objects
    //----------- method to clear the outputarea
    buttonClear.addActionListener(
              // anonymous inner class
    new ActionListener()
    public void actionPerformed(ActionEvent event)
                        outputArea.setText("");
    }// actionPerformed
    }// anonymous inner class
    //--------- method to use button event--------------------
    buttonDisplay.addActionListener(
    //anonymous class
    new ActionListener()
                   public void actionPerformed(ActionEvent event)
                        //Connection sqlca = null;
                   Statement sqlStatement = null;
                   ResultSet rset = null;
                   try{
                             //DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
                             //sqlca= DriverManager.getConnection ("jdbc:oracle:thin:@dbserver:1521:infs", "manzur", "manzur");
                             sqlStatement = sqlconn.createStatement ();
                             rset = sqlStatement.executeQuery ("select * from customers");
                             while (rset.next ()){
                                  String CUSTOMERID=rset.getObject(1).toString();
                                  String CUSTOMERNAME =rset.getObject(2).toString();
                                  String CUSTOMERCITY =rset.getObject(3).toString();
    String CUSTOMERPHONE =rset.getObject(4).toString();
                                  //String map=rset.getObject(4).toString();
                                  //String region=rset.getObject(5).toString();
                                  //System.out.println (id + "\t" + name + "\t" + loc );
                   outputArea.append(CUSTOMERID + "\t" + CUSTOMERNAME + "\t" + CUSTOMERCITY + "\t" + CUSTOMERPHONE + "\n" );
                             } // end while
                        }// end try
                        catch (SQLException ex)
                             System.out.println("SQLException:" + ex.getMessage() + "<BR>");
                        }// catch
    }// action performed
    } // anonymous inner class
    );// end addActionListener
    // ------ method to add Customers to the database
         buttonAdd.addActionListener(
         // anonymous inner class
    new ActionListener()
    public void actionPerformed(ActionEvent event)
    try{
                   Statement sqlStatement = null;
    ResultSet rtbookset = null;
    // create statement
    sqlStatement = sqlconn.createStatement();
    int CUSTOMERID = Integer.parseInt(field1.getText());
    String CUSTOMERNAME = field2.getText();
                   String CUSTOMERCITY = field3.getText();
    int CUSTOMERPHONE = Integer.parseInt(field4.getText());
              // create query
                   String insertquery = "INSERT INTO CUSTOMERS VALUES("
         + CUSTOMERID + "," + "'" + CUSTOMERNAME + "'," + "'" + CUSTOMERCITY + "'," + CUSTOMERPHONE + ")";
              // execute the query
                             sqlStatement.executeQuery(insertquery);
                             // clear the textfields
                             field1.setText("");
                             field2.setText("");
                             field3.setText("");
    field4.setText("");
              JOptionPane.showMessageDialog(null,"Record added");                     
    }// try
    catch(SQLException ex)
                        System.out.println("Record exists :" + ex.getMessage() + "<BR>");
                   }// catch
    }// actionPerformed
    }// anonymous inner class
    //--------- method to use buttonUpdate event--------------------
    buttonUpdate.addActionListener(
    //anonymous class
    new ActionListener()
                   public void actionPerformed(ActionEvent event)
                        //Connection sqlconn = null;
                   Statement sqlStatement = null;
                   ResultSet rset = null;
    int CUSTOMER_ID = Integer.parseInt(field1.getText());
                   try{
                             //int CUSTOMER_ID = Integer.parseInt(field1.getText());
              //String d_name = field2.getText();
                             //String d_loc = field3.getText();
                             //DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
                             //sqlca= DriverManager.getConnection ("jdbc:oracle:thin:@dbserver:1521:infs", "manzur", "manzur");
                             sqlStatement = sqlconn.createStatement ();
                             rset = sqlStatement.executeQuery ("select * from CUSTOMERS where CUSTOMER_ID =" + CUSTOMER_ID);
                             rset.next ();
                             //int id=rset.getInt("DEPTNO");
                             String CUSTOMERID = rset.getObject(1).toString();          
                             String CUSTOMERNAME=rset.getString("CUSTOMER_NAME");
                             String CUSTOMERCITY=rset.getString("CUSTOMER_CITY");
    String CUSTOMERPHONE=rset.getString("CUSTOMER_PHONE");
    field1.setText(CUSTOMERID);
                             field2.setText(CUSTOMERNAME);
                             field3.setText(CUSTOMERCITY);
    field4.setText(CUSTOMERPHONE);
    //buttonUpdate.setEnabled(false);
    //buttonModifyRecord.setEnabled(true);
    //rset.close();
                        }// end try
                        catch (SQLException ex)
                             JOptionPane.showMessageDialog(null,"No Record found with CUSTOMER ID :" + CUSTOMER_ID );
                             //System.out.println("SQLException:No record found" + ex.getMessage() + "<BR>");
                        }// catch
    }// action performed
    } // anonymous inner class
    );// end addActionListener
    //---------Method to modify record------------------------------------
    buttonModifyRecord.addActionListener(
    //anonymous class
    new ActionListener()
                   public void actionPerformed(ActionEvent event)
                        //Connection sqlconn = null;
                   Statement sqlStatement = null;
                   ResultSet rset = null;
                   try{
                             //int dept_no = Integer.parseInt(field1.getText());
              //String d_name = field2.getText();
                             //String d_loc = field3.getText();
                             //DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
                             //sqlca= DriverManager.getConnection ("jdbc:oracle:thin:@dbserver:1521:infs", "manzur", "manzur");
                             sqlStatement = sqlconn.createStatement ();
    int CUSTOMERID = Integer.parseInt(field1.getText());
              String CUSTOMERNAME = field2.getText();
                             String CUSTOMERCITY = field3.getText();
    int CUSTOMERPHONE = Integer.parseInt(field4.getText());
                             String updatequery = "UPDATE CUSTOMERS SET CUSTOMER_NAME = " + "'" + CUSTOMERNAME + "',"
    + " CUSTOMER_CITY = " + "'" + CUSTOMERCITY + "'," + " CUSTOMER_PHONE = " + CUSTOMERPHONE
    + " Where CUSTOMER_ID = " + CUSTOMERID;
              // execute the query
                             sqlStatement.executeQuery(updatequery);
                             // clear the textfields
                             field1.setText("");
                             field2.setText("");
                             field3.setText("");
    field4.setText("");
              JOptionPane.showMessageDialog(null,"Record modified");
    //buttonUpdate.setEnabled(true);
    //buttonModifyRecord.setEnabled(false);
                        }// end try
                        catch (SQLException ex)
                             System.out.println("SQLException:" + ex.getMessage() + "<BR>");
                        }// catch
    }// action performed
    } // anonymous inner class
    );// end addActionListener
    //---------Method to modify record------------------------------------
    buttonDelete.addActionListener(
    //anonymous class
    new ActionListener()
                   public void actionPerformed(ActionEvent event)
                        //Connection sqlca = null;
                   Statement sqlStatement = null;
                   ResultSet rset = null;
                   try{
                             //DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
                             //sqlca= DriverManager.getConnection ("jdbc:oracle:thin:@dbserver:1521:infs", "manzur", "manzur");
                             sqlStatement = sqlconn.createStatement ();
    int CUSTOMERID = Integer.parseInt(field1.getText());
              //String d_name = field2.getText();
                             //String d_loc = field3.getText();
                             String deletequery = "DELETE from CUSTOMERS "
    + " Where CUSTOMER_ID = " + CUSTOMERID;
              // execute the query
                             sqlStatement.executeQuery(deletequery);
                             // clear the textfields
                             field1.setText("");
                             field2.setText("");
                             field3.setText("");
    field4.setText("");
              JOptionPane.showMessageDialog(null,"Record Deleted");
    //buttonUpdate.setEnabled(true);
    //buttonModifyRecord.setEnabled(false);
                        }// end try
                        catch (SQLException ex)
                             System.out.println("SQLException:" + ex.getMessage() + "<BR>");
                        }// catch
    }// action performed
    } // anonymous inner class
    );// end addActionListener
    // specify the size of the window
    setSize(800,500);
    show();
    }// constructor
    public static void main(String args[]) throws IOException{
    OracleJavaCustomerWindow application = new OracleJavaCustomerWindow();
    application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }// main
    } // class OracleJavaWindow
    // exceptions classes
    // inserFailedException is a general exception for
    // SQL insert problems
    /*class insertFailedException extends SQLException
    public insertFailedException(String reason)
         super(reason);
    public insertFailedException(String reason)
         super();
    }*/

    Sorry guys here is the correction of details i have provided
    the Error message tells me that
    package oracle.jdbc.driver does not exist
    and the folder I used to do Mounting SystemFile for was
    C:\Oracle\jdbc\lib\classes12

  • Loading Java Sneak Preview freezes at Load Java Database

    I have tried installing the java sneak preview on two different machines and it freezes everytime at Load Java Database. I searched the form and found a similiar post with no response. Has anyone had this problem or any ideas.
    1st Box was WinXp 1gig ram p42.8
    2nd Box was Win2003 1gig p41.8

    Agustin,
    Were you able to solve your situation ?
    I have the same situation, I have an ABAP NW2004s (v7.00 SP8) installed and working on my PC.  I am trying to install the Java NW2004s FULL  on the same PC, and after entering the location for the JCE files, the setup displays message:
    Collecting information about installed SAP systems: checking SAP service SAPNSP_00...
    then an error comes up, the log has the following :
    ERROR 2006-11-16 15:03:13
    FJS-00003  TypeError: this._name has no properties (in script NW_Java_OneHost|ind|ind|ind|ind, line 8987: ???)
    ERROR 2006-11-16 15:03:13
    FCO-00011  The step collect with step key |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|collect was executed with status ERROR .
    I am installing on a PC WIn XP SP2, with 1GB of RAM, and have 16.7 GB available on the Hard Disk.
    Please let me know, thanks

  • Error Installing at phase 22, load Java Database Content

    I am using XP SP1. I got the error at phase 22, load Java Database Content. The following is the log file.
    Please help.
    James
    SAPinst is getting started.
    Please be patient ...
    guiengine: login in process.
    ERROR      2005-09-03 06:00:14 [ianxbservi.hpp:235]
               CServiceHandle::Open(SAPOsCol)
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPOsCol).
    ERROR      2005-09-03 06:00:44 [ianxbservi.hpp:235]
               CServiceHandle::Open(SAPJ2E_01)
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_01).
    ERROR      2005-09-03 06:00:44 [ianxbservi.hpp:235]
               CServiceHandle::Open(SAPJ2E_01)
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_01).
    ERROR      2005-09-03 06:00:44 [ianxbservi.hpp:235]
               CServiceHandle::Open(SAPJ2E_00)
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_00).
    ERROR      2005-09-03 06:00:44 [ianxbservi.hpp:235]
               CServiceHandle::Open(SAPJ2E_00)
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_00).
    ERROR      2005-09-03 06:01:32 [ianxbservi.hpp:235]
               CServiceHandle::Open(SAPOsCol)
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPOsCol).
    ERROR      2005-09-03 06:53:19
               CJSlibModule::writeError_impl()
    CJS-20065  Execution of JLoad tool 'C:\j2sdk1.4.2_08/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;c:\sapdb\programs\runtime\jar\sapdbc.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jce_export.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jsse.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_smime.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_ssl.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'J2E,jdbc/pool/J2E,C:\usr\sap\J2E\SYS\global/security/data/SecStore.properties,C:\usr\sap\J2E\SYS\global/security/data/SecStore.key' '-dataDir' 'C:/@SAP/NW04SneakPrevJavaSP11/NW04SneakPrevJavaSP11/NWSneakPreviewSP11/SAP_NetWeaver_04_SR_1_Installation_Master_DVD__ID__51030843\IM01_NT_I386\..\..\SneakPreviewContent\JDMP' '-job' 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/IMPORT.XML' '-log' 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log'' aborts with returncode 2. Check 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log' and 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.java.log' for more information.
    ERROR      2005-09-03 11:56:24
               CJSlibModule::writeError_impl()
    CJS-20065  Execution of JLoad tool 'C:\j2sdk1.4.2_08/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;c:\sapdb\programs\runtime\jar\sapdbc.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jce_export.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jsse.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_smime.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_ssl.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'J2E,jdbc/pool/J2E,C:\usr\sap\J2E\SYS\global/security/data/SecStore.properties,C:\usr\sap\J2E\SYS\global/security/data/SecStore.key' '-dataDir' 'C:/@SAP/NW04SneakPrevJavaSP11/NW04SneakPrevJavaSP11/NWSneakPreviewSP11/SAP_NetWeaver_04_SR_1_Installation_Master_DVD__ID__51030843\IM01_NT_I386\..\..\SneakPreviewContent\JDMP' '-job' 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/IMPORT.XML' '-log' 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log'' aborts with returncode 2. Check 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log' and 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.java.log' for more information.
    ERROR      2005-09-03 11:56:40
               CJSlibModule::writeError_impl()
    CJS-20065  Execution of JLoad tool 'C:\j2sdk1.4.2_08/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;c:\sapdb\programs\runtime\jar\sapdbc.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jce_export.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jsse.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_smime.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_ssl.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'J2E,jdbc/pool/J2E,C:\usr\sap\J2E\SYS\global/security/data/SecStore.properties,C:\usr\sap\J2E\SYS\global/security/data/SecStore.key' '-dataDir' 'C:/@SAP/NW04SneakPrevJavaSP11/NW04SneakPrevJavaSP11/NWSneakPreviewSP11/SAP_NetWeaver_04_SR_1_Installation_Master_DVD__ID__51030843\IM01_NT_I386\..\..\SneakPreviewContent\JDMP' '-job' 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/IMPORT.XML' '-log' 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log'' aborts with returncode 2. Check 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log' and 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.java.log' for more information.
    ERROR      2005-09-03 12:00:42
               CJSlibModule::writeError_impl()
    CJS-20065  Execution of JLoad tool 'C:\j2sdk1.4.2_08/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;c:\sapdb\programs\runtime\jar\sapdbc.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jce_export.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jsse.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_smime.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_ssl.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'J2E,jdbc/pool/J2E,C:\usr\sap\J2E\SYS\global/security/data/SecStore.properties,C:\usr\sap\J2E\SYS\global/security/data/SecStore.key' '-dataDir' 'C:/@SAP/NW04SneakPrevJavaSP11/NW04SneakPrevJavaSP11/NWSneakPreviewSP11/SAP_NetWeaver_04_SR_1_Installation_Master_DVD__ID__51030843\IM01_NT_I386\..\..\SneakPreviewContent\JDMP' '-job' 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/IMPORT.XML' '-log' 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log'' aborts with returncode 2. Check 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log' and 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.java.log' for more information.
    ERROR      2005-09-03 12:00:47
               CJSlibModule::writeError_impl()
    CJS-20065  Execution of JLoad tool 'C:\j2sdk1.4.2_08/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;c:\sapdb\programs\runtime\jar\sapdbc.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jce_export.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jsse.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_smime.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_ssl.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'J2E,jdbc/pool/J2E,C:\usr\sap\J2E\SYS\global/security/data/SecStore.properties,C:\usr\sap\J2E\SYS\global/security/data/SecStore.key' '-dataDir' 'C:/@SAP/NW04SneakPrevJavaSP11/NW04SneakPrevJavaSP11/NWSneakPreviewSP11/SAP_NetWeaver_04_SR_1_Installation_Master_DVD__ID__51030843\IM01_NT_I386\..\..\SneakPreviewContent\JDMP' '-job' 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/IMPORT.XML' '-log' 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log'' aborts with returncode 2. Check 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log' and 'C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.java.log' for more information.
    Exit status of child: 1

    Yes, you need to download the new installer or you need to change your system setting timezone settings to GMT+1. I faced this problem too but once you are in the middle of installing it, there will be something somewhere missing. The best thing to do is to uninstall the application and unmount the database instance. Uninstall utility 'UNINSTSAP.EXE' is available in the "C:\usr\sap\J2E\JC00" location.
    Look at the steps mentioned in the following post by Prakash Gowda.
    Error during Load Java Database content at phase 18
    Hope this helps and please don't forget to close the thread if answered.
    Srinivas

  • Load Java Database Content

    Hi all,
    the step
    Load Java database content
    during the installation of the SneakPreview SP11 takes now more than 1 hour. Is this the normal duration?
    Is there any logfile or something to check the progress?
    All comments are appreciated.
    Juergen

    I have run into a similar problem while installing the Java Edition. The install process stops at the 18th step which is "Load Java Database Content" with an error message. The error text is:
    "An error occurred while processing service SAP NetWeaver Sneak Preview 04 Support Release 1> Migration - Target System Installation."
    I have tried the installation about 6 times on different systems and it stops at the same step.

  • Mail crashes: database problem?

    I have the oddest problem with Mail now that I've updated to Lion.  If I start to type the email address of one particular friend into the search box, it crashes as soon as I get to a character that distinguishes it from all others in my address book (ie meec for [email protected]).  I cannot type this address directly into the "To" field either.  Additionally, any time I click on an email that someone has sent to both our addresses, the email pauses for around 30 seconds before finally loading in the preview window. 
    I use a POP account for my university which allows Mail to auto-complete email addresses for anyone at the school whether they are in my local address book or not.  
    Could this be a problem with my school's mail server or is there some local file/database/etc. corrupted on my Mac?  From the error message, it appears to be a database problem but I'm not sure how to fix it.   The error log is attached.
    ================================================================================ ==========
    Process:         Mail [62068]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         5.0 (1244.2)
    Build Info:      Mail-1244002000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [2965]
    Date/Time:       2011-09-06 12:16:36.149 -0400
    OS Version:      Mac OS X 10.7.1 (11B26)
    Report Version:  9
    Interval Since Last Report:          151083 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  172691 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      04FCE226-C892-421D-9A4C-C5CB047CB559
    Crashed Thread:  7  Dispatch queue: suggestions.spotlight
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[62068]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Fatal error.  The database at /Users/cperuta/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed''
    *** First throw call stack:
        0   CoreFoundation                      0x00007fff94d01986 __exceptionPreprocess + 198
        1   libobjc.A.dylib                     0x00007fff97198d5e objc_exception_throw + 43
        2   CoreData                            0x00007fff979ba13f _execute + 847
        3   CoreData                            0x00007fff979b986b -[NSSQLiteConnection execute] + 1211
        4   CoreData                            0x00007fff979d4e7c newFetchedRowsForFetchPlan_MT + 1084
        5   CoreData                            0x00007fff979dd696 -[NSSQLCore fetchRowForObjectID:] + 950
        6   CoreData                            0x00007fff979daf98 -[NSSQLCore newValuesForObjectWithID:withContext:error:] + 216
        7   CoreData                            0x00007fff979daeb1 -[NSPersistentStoreCoordinator(_NSInternalMethods) newValuesForObjectWithID:withContext:error:] + 65
        8   CoreData                            0x00007fff979da740 _PFFaultHandlerLookupRow + 416
        9   CoreData                            0x00007fff979da254 _PF_FulfillDeferredFault + 212
        10  CoreData                            0x00007fff979da0d8 _sharedIMPL_pvfk_core + 56
        11  AddressBook                         0x00007fff9021a06d -[ABCDMailRecent lastEmailDatesArray] + 301
        12  Foundation                          0x00007fff905e1d68 _NSGetUsingKeyValueGetter + 62
        13  AddressBook                         0x00007fff90171f7e -[ABCDRecord nts_ValueForProperty:row:record:] + 237
        14  AddressBook                         0x00007fff90171db1 -[ABRecord nts_ValueForProperty:row:] + 47
        15  AddressBook                         0x00007fff90171d80 -[ABRecord nts_ValueForProperty:] + 25
        16  AddressBook                         0x00007fff90191488 -[ABMailRecent valueForProperty:] + 136
        17  Suggestions                         0x00007fff9935654b -[SGTABPersonGeniusHelper additionalSuggestions] + 951
        18  Suggestions                         0x00007fff9934e8a1 -[SGTMailQueryGenius suggester:additionalSuggestionsForInput:] + 59
        19  Suggestions                         0x00007fff9933ad81 -[SGTSpotlightSuggester additionalSuggestionsForInput:] + 53
        20  Suggestions                         0x00007fff9933ba90 -[SGTSpotlightSuggester _processQueryResults:intermediateResults:suggestionsCount:] + 673
        21  Suggestions                         0x00007fff9933b616 -[SGTSpotlightSuggester _queryDidFinish:] + 308
        22  Foundation                          0x00007fff905d2716 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
        23  CoreFoundation                      0x00007fff94caa51a _CFXNotificationPost + 2634
        24  CoreFoundation                      0x00007fff94ce13e3 CFNotificationCenterPostNotificationWithOptions + 115
        25  Metadata                            0x00007fff98363968 ___pushNotification_block_invoke_1 + 104
        26  libdispatch.dylib                   0x00007fff9984990a _dispatch_call_block_and_release + 18
        27  libdispatch.dylib                   0x00007fff9984b15a _dispatch_queue_drain + 264
        28  libdispatch.dylib                   0x00007fff9984afb6 _dispatch_queue_invoke + 54
        29  libdispatch.dylib                   0x00007fff9984a7b0 _dispatch_worker_thread2 + 198
        30  libsystem_c.dylib                   0x00007fff93f893da _pthread_wqthread + 316
        31  libsystem_c.dylib                   0x00007fff93f8ab85 start_wqthread + 13
    terminate called throwing an exception
    abort() called
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib            0x00007fff905b067a mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x00007fff905afd71 mach_msg + 73
    2   com.apple.CoreFoundation          0x00007fff94c8e29c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation          0x00007fff94c96a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation          0x00007fff94c96216 CFRunLoopRunSpecific + 230
    5   com.apple.HIToolbox               0x00007fff8d92e4ff RunCurrentEventLoopInMode + 277
    6   com.apple.HIToolbox               0x00007fff8d935c21 ReceiveNextEventCommon + 355
    7   com.apple.HIToolbox               0x00007fff8d935aae BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                  0x00007fff931f2191 _DPSNextEvent + 659
    9   com.apple.AppKit                  0x00007fff931f1a95 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    10  com.apple.AppKit                  0x00007fff931ee3d6 -[NSApplication run] + 463
    11  com.apple.AppKit                  0x00007fff9346c52a NSApplicationMain + 867
    12  com.apple.mail                    0x000000010bcf5c34 0x10bc1d000 + 887860
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib            0x00007fff905b27e6 kevent + 10
    1   libdispatch.dylib                 0x00007fff9984b60e _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                 0x00007fff9984a19e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib            0x00007fff905b067a mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x00007fff905afd71 mach_msg + 73
    2   com.apple.CoreFoundation          0x00007fff94c8e29c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation          0x00007fff94c96a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation          0x00007fff94c96216 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation              0x00007fff905c7983 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation              0x00007fff905c786f -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework        0x00007fff92c563b5 -[RSSInterchange _runManager] + 1345
    8   com.apple.Foundation              0x00007fff906161ea -[NSThread main] + 68
    9   com.apple.Foundation              0x00007fff90616162 __NSThread__main__ + 1575
    10  libsystem_c.dylib                 0x00007fff93f878bf _pthread_start + 335
    11  libsystem_c.dylib                 0x00007fff93f8ab75 thread_start + 13
    Thread 3:: WebCore: LocalStorage
    0   libsystem_kernel.dylib            0x00007fff905b1bca __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x00007fff93f8b274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore          0x00007fff9813fba0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                 0x00007fff8f2572ba ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore                 0x00007fff8f257213 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore                 0x00007fff8f25715b WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib                 0x00007fff93f878bf _pthread_start + 335
    7   libsystem_c.dylib                 0x00007fff93f8ab75 thread_start + 13
    Thread 4:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib            0x00007fff905b067a mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x00007fff905afd71 mach_msg + 73
    2   com.apple.CoreFoundation          0x00007fff94c8e29c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation          0x00007fff94c96a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation          0x00007fff94c96216 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation              0x00007fff90621a97 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation              0x00007fff906161ea -[NSThread main] + 68
    7   com.apple.Foundation              0x00007fff90616162 __NSThread__main__ + 1575
    8   libsystem_c.dylib                 0x00007fff93f878bf _pthread_start + 335
    9   libsystem_c.dylib                 0x00007fff93f8ab75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib            0x00007fff905b067a mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x00007fff905afd71 mach_msg + 73
    2   com.apple.CoreFoundation          0x00007fff94c8e29c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation          0x00007fff94c96a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation          0x00007fff94c96216 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation              0x00007fff905c7983 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation              0x00007fff905c786f -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework        0x00007fff92c75b89 +[_NSSocket _runIOThread] + 80
    8   com.apple.Foundation              0x00007fff906161ea -[NSThread main] + 68
    9   com.apple.Foundation              0x00007fff90616162 __NSThread__main__ + 1575
    10  libsystem_c.dylib                 0x00007fff93f878bf _pthread_start + 335
    11  libsystem_c.dylib                 0x00007fff93f8ab75 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib            0x00007fff905b1df2 __select + 10
    1   com.apple.CoreFoundation          0x00007fff94cdf66b __CFSocketManager + 1355
    2   libsystem_c.dylib                 0x00007fff93f878bf _pthread_start + 335
    3   libsystem_c.dylib                 0x00007fff93f8ab75 thread_start + 13
    Thread 7 Crashed:: Dispatch queue: suggestions.spotlight
    0   libsystem_kernel.dylib            0x00007fff905b1ce2 __pthread_kill + 10
    1   libsystem_c.dylib                 0x00007fff93f897d2 pthread_kill + 95
    2   libsystem_c.dylib                 0x00007fff93f7aa7a abort + 143
    3   libc++abi.dylib                   0x00007fff8e7307bc abort_message + 214
    4   libc++abi.dylib                   0x00007fff8e72dfcf default_terminate() + 28
    5   libobjc.A.dylib                   0x00007fff971991b9 _objc_terminate + 94
    6   libc++abi.dylib                   0x00007fff8e72e001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib                   0x00007fff8e72e05c std::terminate() + 16
    8   libc++abi.dylib                   0x00007fff8e72f152 __cxa_throw + 114
    9   libobjc.A.dylib                   0x00007fff97198e7a objc_exception_throw + 327
    10  com.apple.CoreFoundation          0x00007fff94d8b5a9 -[NSException raise] + 9
    11  com.apple.AddressBook.framework    0x00007fff90171e6e -[ABRecord nts_ValueForProperty:row:] + 236
    12  com.apple.AddressBook.framework    0x00007fff90171d80 -[ABRecord nts_ValueForProperty:] + 25
    13  com.apple.AddressBook.framework    0x00007fff90191488 -[ABMailRecent valueForProperty:] + 136
    14  com.apple.Suggestions             0x00007fff9935654b -[SGTABPersonGeniusHelper additionalSuggestions] + 951
    15  com.apple.Suggestions             0x00007fff9934e8a1 -[SGTMailQueryGenius suggester:additionalSuggestionsForInput:] + 59
    16  com.apple.Suggestions             0x00007fff9933ad81 -[SGTSpotlightSuggester additionalSuggestionsForInput:] + 53
    17  com.apple.Suggestions             0x00007fff9933ba90 -[SGTSpotlightSuggester _processQueryResults:intermediateResults:suggestionsCount:] + 673
    18  com.apple.Suggestions             0x00007fff9933b616 -[SGTSpotlightSuggester _queryDidFinish:] + 308
    19  com.apple.Foundation              0x00007fff905d2716 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
    20  com.apple.CoreFoundation          0x00007fff94caa51a _CFXNotificationPost + 2634
    21  com.apple.CoreFoundation          0x00007fff94ce13e3 CFNotificationCenterPostNotificationWithOptions + 115
    22  com.apple.Metadata                0x00007fff98363968 ___pushNotification_block_invoke_1 + 104
    23  libdispatch.dylib                 0x00007fff9984990a _dispatch_call_block_and_release + 18
    24  libdispatch.dylib                 0x00007fff9984b15a _dispatch_queue_drain + 264
    25  libdispatch.dylib                 0x00007fff9984afb6 _dispatch_queue_invoke + 54
    26  libdispatch.dylib                 0x00007fff9984a7b0 _dispatch_worker_thread2 + 198
    27  libsystem_c.dylib                 0x00007fff93f893da _pthread_wqthread + 316
    28  libsystem_c.dylib                 0x00007fff93f8ab85 start_wqthread + 13
    Thread 8:: Dispatch queue: Query work queue
    0   libsystem_kernel.dylib            0x00007fff905b1bca __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x00007fff93f8b274 _pthread_cond_wait + 840
    2   com.apple.Metadata                0x00007fff983638c6 _pushNotification + 464
    3   com.apple.Metadata                0x00007fff98366096 processUpdatesLocked + 9441
    4   com.apple.Metadata                0x00007fff983663c4 tryProcessUpdates + 163
    5   com.apple.Metadata                0x00007fff983667bf _MDQueryCallback + 189
    6   com.apple.Metadata                0x00007fff98366e74 doQueryResultsCallback + 106
    7   com.apple.Metadata                0x00007fff983517a4 _XQueryResultsCallback + 276
    8   com.apple.Metadata                0x00007fff9835165f MDSClientCallbacks_server + 146
    9   libsystem_kernel.dylib            0x00007fff905b0537 mach_msg_server_once + 427
    10  com.apple.Metadata                0x00007fff9836837b ___MDQueryExecute_block_invoke_3 + 107
    11  libdispatch.dylib                 0x00007fff9984e2f1 _dispatch_source_invoke + 614
    12  libdispatch.dylib                 0x00007fff9984afc7 _dispatch_queue_invoke + 71
    13  libdispatch.dylib                 0x00007fff9984b124 _dispatch_queue_drain + 210
    14  libdispatch.dylib                 0x00007fff9984afb6 _dispatch_queue_invoke + 54
    15  libdispatch.dylib                 0x00007fff9984a7b0 _dispatch_worker_thread2 + 198
    16  libsystem_c.dylib                 0x00007fff93f893da _pthread_wqthread + 316
    17  libsystem_c.dylib                 0x00007fff93f8ab85 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib            0x00007fff905b2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff93f89594 _pthread_wqthread + 758
    2   libsystem_c.dylib                 0x00007fff93f8ab85 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib            0x00007fff905b2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff93f89594 _pthread_wqthread + 758
    2   libsystem_c.dylib                 0x00007fff93f8ab85 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib            0x00007fff905b2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff93f89594 _pthread_wqthread + 758
    2   libsystem_c.dylib                 0x00007fff93f8ab85 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib            0x00007fff905b2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff93f89594 _pthread_wqthread + 758
    2   libsystem_c.dylib                 0x00007fff93f8ab85 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib            0x00007fff905b2192 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff93f89594 _pthread_wqthread + 758
    2   libsystem_c.dylib                 0x00007fff93f8ab85 start_wqthread + 13
    Thread 7 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x000000010fa72f48  rdx: 0x0000000000000000
      rdi: 0x0000000000011163  rsi: 0x0000000000000006  rbp: 0x000000010fa72f70  rsp: 0x000000010fa72f48
       r8: 0x00007fff7e0cefb8   r9: 0x000000010fa729d8  r10: 0x00007fff905b1d0a  r11: 0xffffff80002d8240
      r12: 0x0000000000000000  r13: 0x0000000000000002  r14: 0x000000010fa75000  r15: 0x000000010fa730c0
      rip: 0x00007fff905b1ce2  rfl: 0x0000000000000206  cr2: 0x000000010c3ad000
    Logical CPU: 0
    Binary Images:
           0x10bc1d000 -        0x10bfcdff7  com.apple.mail (5.0 - 1244.2) <8D887218-56A8-3BB1-96BB-4305E158569E> /Applications/Mail.app/Contents/MacOS/Mail
           0x10c37f000 -        0x10c37fff5 +cl_kernels (??? - ???) <4AAD714C-B9EE-43BE-96F2-9F0B873ABB94> cl_kernels
           0x10c4b3000 -        0x10c4b7fff  com.apple.audio.AudioIPCPlugIn (1.2.0 - 1.2.0) <1EAF877E-4F15-39F7-89FA-D362AA4DA9DE> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x10d44b000 -        0x10d44dfff  apop.so (??? - ???) <B40CE86C-1757-3261-848C-F166F3D513EA> /usr/lib/sasl2/apop.so
           0x10d451000 -        0x10d467fff  dhx.so (??? - ???) <9AB7809C-2651-3FCF-9357-8E1CDEAB6466> /usr/lib/sasl2/dhx.so
           0x10d474000 -        0x10d47dfff  digestmd5WebDAV.so (??? - ???) <8D39C8C0-ACCE-34D4-815A-87825A1A4492> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10d482000 -        0x10d484fff  libanonymous.2.so (??? - ???) <99136B94-8BE0-3563-9E2A-9C826971B6E9> /usr/lib/sasl2/libanonymous.2.so
           0x10d488000 -        0x10d48bfff  libcrammd5.2.so (??? - ???) <5EEE3304-D132-3C9B-A54D-C21D7C34DA28> /usr/lib/sasl2/libcrammd5.2.so
           0x10d490000 -        0x10d499fff  libdigestmd5.2.so (??? - ???) <6DD64225-CFFF-379B-A5BA-5409F777F307> /usr/lib/sasl2/libdigestmd5.2.so
           0x10d49e000 -        0x10d4a3fff  libgssapiv2.2.so (??? - ???) <DC1BA305-26FA-3CC7-8400-6A45521EF2A3> /usr/lib/sasl2/libgssapiv2.2.so
           0x10d4a8000 -        0x10d4aafff  login.so (??? - ???) <48CD069F-68F5-32C4-BFAC-AC0EFB7B9489> /usr/lib/sasl2/login.so
           0x10d4ae000 -        0x10d4b3fff  libntlm.so (??? - ???) <1B9D16BE-D0DB-31A3-8B84-7830509B5ECA> /usr/lib/sasl2/libntlm.so
           0x10d4b8000 -        0x10d4bffff  libotp.2.so (??? - ???) <1DDBDDF7-3F84-3AF0-A878-9E64EEBE0ED5> /usr/lib/sasl2/libotp.2.so
           0x10d4c8000 -        0x10d4cafff  libplain.2.so (??? - ???) <C98A873A-4373-3E3A-8257-D9BB5F857C85> /usr/lib/sasl2/libplain.2.so
           0x10d4ce000 -        0x10d4d2fff  libpps.so (??? - ???) <26172BC5-1758-3BE6-9B8D-F254A727478A> /usr/lib/sasl2/libpps.so
           0x10d4d7000 -        0x10d4daff7  mschapv2.so (??? - ???) <F62C8BE2-B2E4-3E36-AC52-B4E149AFC186> /usr/lib/sasl2/mschapv2.so
           0x10d4df000 -        0x10d50dfff  com.apple.DirectoryService.PasswordServerFramework (7.0 - 7.0) <2C10A1AC-CEFF-3215-A398-C75818082C8D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x10d522000 -        0x10d525fff  shadow_auxprop.so (??? - ???) <DF9DE842-FBFA-368A-AA8C-E29CF334FF69> /usr/lib/sasl2/shadow_auxprop.so
           0x10d52a000 -        0x10d52cfff  smb_nt.so (??? - ???) <C6D59817-4DB8-34F9-BD71-2FDDA857CBA8> /usr/lib/sasl2/smb_nt.so
           0x10d530000 -        0x10d533fff  smb_ntlmv2.so (??? - ???) <A2FD1300-B742-32BE-B640-74732490CC94> /usr/lib/sasl2/smb_ntlmv2.so
           0x10d67d000 -        0x10d67dff1 +cl_kernels (??? - ???) <8E5A038D-9D80-4160-9078-20D8B09E9D20> cl_kernels
           0x10d8b0000 -        0x10d8b6fff  com.apple.audio.AppleHDAHALPlugIn (2.1.1 - 2.1.1f12) <B2B0AAA1-157C-3E65-B8A1-79C50D0191A3> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10f53a000 -        0x10f53ffff  com.apple.contacts.iaplugin (1.0 - 1043) <0AB8C3AC-AA1C-3D14-B8C5-6AD7E63FBB4F> /System/Library/InternetAccounts/AddressBook.iaplugin/Contents/MacOS/AddressBoo k
           0x10f545000 -        0x10f548fff  com.aol.iaplugin (1.0 - 1) <5EA7A690-6C76-3E54-9284-1FBAEAD932D0> /System/Library/InternetAccounts/AOL.iaplugin/Contents/MacOS/AOL
           0x10f54e000 -        0x10f557fff  com.apple.exchange.iaplugin (1.0 - 1) <52AA2762-8A6F-3BC3-9009-618CAE6A7D78> /System/Library/InternetAccounts/Exchange.iaplugin/Contents/MacOS/Exchange
           0x10f57e000 -        0x10f583fff  com.google.iaplugin (1.0 - 1) <2B3E8068-0911-3FA1-91CF-DDE0A754D110> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x10fac2000 -        0x10fac5ff7  libCoreFSCache.dylib (??? - ???) <783C2402-CA3F-3D9B-B909-0F251145CF1D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10fafa000 -        0x10fafaffd +cl_kernels (??? - ???) <7AC493B6-348A-4F09-B02C-0022B5FC2F51> cl_kernels
           0x10fb0d000 -        0x10fb13fef  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0) <EAC03E33-595E-3829-8199-479FA5CD9987> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10fb3a000 -        0x10fb3bff3 +cl_kernels (??? - ???) <4BBEFF1A-0136-401A-9D40-2C0FE6125C63> cl_kernels
           0x10fb50000 -        0x10fb50ff1 +cl_kernels (??? - ???) <DA2F23ED-035B-4E78-8D77-B926270006E2> cl_kernels
           0x110027000 -        0x1100baff7  unorm8_bgra.dylib (1.50.61 - compatibility 1.0.0) <3ED8B0D5-4A55-3E39-8490-B7BC1780F67B> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x1100e9000 -        0x11017aff7  unorm8_rgba.dylib (1.50.61 - compatibility 1.0.0) <278541F2-18CC-3BE4-AD6B-24A3E983ACB5> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x110199000 -        0x11019affc +cl_kernels (??? - ???) <F184DD76-80CC-4FD5-B608-368E2D7D4C71> cl_kernels
           0x1105f1000 -        0x1105f2ff3 +cl_kernels (??? - ???) <97AFF7C4-C941-4A98-835C-4FF11C0AADA3> cl_kernels
           0x110600000 -        0x110600ffd +cl_kernels (??? - ???) <4627C0A2-96E0-45A5-A13A-2446ED2C3709> cl_kernels
           0x110604000 -        0x110604ff5 +cl_kernels (??? - ???) <780495FC-F261-4119-B7E7-55AD156348CF> cl_kernels
           0x110643000 -        0x11064afff  com.apple.calendar.iaplugin (1.0 - 1127) <AEEF9F0F-F4D0-30DF-9F26-7BE714564033> /System/Library/InternetAccounts/iCal.iaplugin/Contents/MacOS/iCal
           0x110651000 -        0x110656fff  com.apple.chat.iaplugin (1.0 - 927) <2C8DF6B6-96BF-3450-A1BF-D40706B868F1> /System/Library/InternetAccounts/iChat.iaplugin/Contents/MacOS/iChat
           0x11068b000 -        0x110692ff7  com.apple.mail.iaplugin (5.0 - 1244.3) <CDEC5E4E-F15F-369F-818A-335DDCBD7656> /System/Library/InternetAccounts/Mail.iaplugin/Contents/MacOS/Mail
           0x110699000 -        0x11069cfff  com.apple.mobileme.iaplugin (1.0 - 1) <136AE107-5555-336C-95F6-E643106D6EEA> /System/Library/InternetAccounts/MobileMe.iaplugin/Contents/MacOS/MobileMe
           0x1106a2000 -        0x1106a7fff  com.apple.osxserver.iaplugin (1.0 - 1) <48C2AF83-8EA5-33BC-8337-33969031CDAB> /System/Library/InternetAccounts/OSXServer.iaplugin/Contents/MacOS/OSXServer
           0x1106ae000 -        0x1106c0ff7  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <B55C63E6-0117-324B-B88A-18C5003D61FC> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
           0x1106cd000 -        0x110706fff  com.apple.frameworks.CoreDaemon (1.0 - 1.0) <267FFC79-8640-3290-A7D7-79E4D9390AA7> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
           0x1109cc000 -        0x1109d0fff  com.yahoo.iaplugin (1.0 - 1) <AA2E0D99-9768-3E15-94FF-C9F3C11524C4> /System/Library/InternetAccounts/Yahoo.iaplugin/Contents/MacOS/Yahoo
           0x1109d6000 -        0x1109d9fff  com.apple.yahoo.syncframework (1.4 - 61) <F85D0D3C-B926-3945-8AEE-238128B0AACC> /System/Library/PrivateFrameworks/YahooSync.framework/Versions/A/YahooSync
           0x110b31000 -        0x110bb4ff7  com.apple.frameworks.server.foundation (10.7 - 184) <B6D7DCAD-0D14-3BA2-BCF6-BFCD900EC6C4> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
           0x110db9000 -        0x110dbbfff  com.apple.AddressBook.LocalSourceBundle (1.1 - 1043) <E6A2DAEA-2AE7-3759-A8E5-D354007FDD4B> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x110f29000 -        0x111072ff7  com.apple.audio.units.Components (1.7 - 1.7) <A68668EB-624D-3867-A392-5D2E026AF14A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x1116f2000 -        0x1116f5fff  com.apple.DirectoryServicesSource (1.1 - 1043) <B1B5FB51-29C4-3D13-AE52-D344C6EE11AE> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x11172c000 -        0x111731ff7  libgermantok.dylib (??? - ???) <BEE85384-A58E-3D6B-914B-74E5FF3155F3> /usr/lib/libgermantok.dylib
           0x111739000 -        0x111766ff7  com.apple.datadetectors.actions (3.0 - 172.0) <9CA54923-56C9-3DE1-A9ED-879CD6E73EFC> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/Resources/ Actions.datadetectors/Contents/MacOS/Actions
           0x11335f000 -        0x1134f7ff7  GLEngine (??? - ???) <EE6CCAE3-1CA1-3C5E-A83C-BB56AB413AB3> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11352a000 -        0x113623fff  libGLProgrammability.dylib (??? - ???) <7B17211F-D04C-3916-8176-1930C24BA421> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x113649000 -        0x113677ff7  GLRendererFloat (??? - ???) <AB59F7EA-62B1-3AA6-B940-47C0B6BC6DD9> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x115609000 -        0x11562dfff  com.apple.Mail.Syncer (5.0 - 1244.3) <142C325B-273B-3294-8942-D8E82B4A4362> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
           0x200000000 -        0x20075ffff  com.apple.GeForceGLDriver (7.4.10 - 7.0.4) <3DD8B099-0CDB-39E0-B6EE-78E3A4C8D17F> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff6b81d000 -     0x7fff6b851ac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
        0x7fff8d2e7000 -     0x7fff8d2ecfff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff8d2ed000 -     0x7fff8d2f6fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <BD08553D-8088-38A8-8007-CF5C0B8F0404> /usr/lib/system/libnotify.dylib
        0x7fff8d30c000 -     0x7fff8d30dfff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
        0x7fff8d320000 -     0x7fff8d35fff7  libGLImage.dylib (??? - ???) <29F82AD9-45F0-3AC5-A4A4-B767EC555D82> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8d360000 -     0x7fff8d77bff7  com.apple.RawCamera.bundle (3.7.2 - 573) <FF8D349E-E8DF-3D12-91E9-BA00C13D5359> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8d77c000 -     0x7fff8d799ff7  libxpc.dylib (77.16.0 - compatibility 1.0.0) <0A4B4775-29A9-30D6-956B-3BE1DBF98090> /usr/lib/system/libxpc.dylib
        0x7fff8d79a000 -     0x7fff8d7a5ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <5209B4F1-D6D6-337B-B3C8-E168931C778C> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8d7c5000 -     0x7fff8d7cdfff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8d7ce000 -     0x7fff8d7fdfff  com.apple.DictionaryServices (1.2 - 158) <2CE51CD1-EE3D-3618-9507-E39A09C9BB8D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8d83d000 -     0x7fff8d849fff  com.apple.DirectoryService.Framework (10.7 - 144) <067ACB41-E9B7-3177-9EDE-C188D9B352DC> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8d84a000 -     0x7fff8d84efff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <5EEAD17D-006C-3855-8093-C7A4A97EE0D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8d862000 -     0x7fff8d89cfef  com.apple.DebugSymbols (2.1 - 85) <7E0E17D9-C8D4-3117-B36A-506929F6FF72> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8d89d000 -     0x7fff8d8f1ff7  com.apple.ImageCaptureCore (3.0 - 3.0) <C829E6A3-3EB6-3E1C-B9B8-759F56E34D3A> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8d8f2000 -     0x7fff8d8f8fff  com.apple.DiskArbitration (2.4 - 2.4) <5185FEA6-92CA-3CAA-8442-BD71DBC64AFD> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d8f9000 -     0x7fff8d921ff7  com.apple.CoreVideo (1.7 - 70.0) <59D5B407-CCB6-3406-8C55-C1B0168D7DC2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8d922000 -     0x7fff8d923ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8d924000 -     0x7fff8d92bfff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8d92c000 -     0x7fff8dc4ffff  com.apple.HIToolbox (1.7 - ???) <10FA3432-6638-39D9-8681-9E95298D239E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8dc50000 -     0x7fff8dc56fff  libGFXShared.dylib (??? - ???) <DE6987C5-81AC-3AE6-84F0-138C9636D412> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8dc57000 -     0x7fff8e072fff  com.apple.SceneKit (2.0 - 124) <9E331DDE-BDF4-34C5-A8F9-E7F12ADBB785> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8e073000 -     0x7fff8e087fff  com.apple.syncservices.syncservicesui (6.0 - 673) <10E681A2-EB0B-367B-9DCD-D29536FBB0FA> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
        0x7fff8e088000 -     0x7fff8e1ebfff  com.apple.CFNetwork (520.0.13 - 520.0.13) <67E3BB43-2A22-3F5A-964E-391375B24CE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8e1ec000 -     0x7fff8e204fff  com.apple.iChat.InstantMessage (6.0 - 833) <DF9EAA84-8AE6-3BFD-AB21-7BDED2161564> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
        0x7fff8e205000 -     0x7fff8e297fff  com.apple.PDFKit (2.6 - 2.6) <F838E95F-DEE9-354A-A34A-F5335D0AF1E1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8e2dc000 -     0x7fff8e300ff7  com.apple.Kerberos (1.0 - 1) <2FF2569B-F59A-371E-AF33-66297F512CB3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8e301000 -     0x7fff8e3b3fff  com.apple.CoreText (4.0.0 - ???) <D7BD85FD-277A-3A97-B1AD-5EE14215237E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8e3ba000 -     0x7fff8e3c7fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <931F40EB-CA75-3A90-AC97-4DB8E210BC76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8e3c8000 -     0x7fff8e46cfef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8e46d000 -     0x7fff8e47afff  com.apple.AOSKit (1.0 - 57) <FBEBACDE-FE84-374C-990F-60FC21C43B18> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff8e47b000 -     0x7fff8e49eff7  com.apple.RemoteViewServices (1.0 - 1) <EB549657-8EDC-312A-B8BE-DEC3E160AC3D> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8e49f000 -     0x7fff8e4aafff  com.apple.CommonAuth (2.1 - 2.0) <49949286-61FB-3A7F-BF49-0EBA45E2664E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8e4ad000 -     0x7fff8e4d8fff  com.apple.speech.LatentSemanticMappingFramework (2.8.10 - 2.8.10) <09D59AFB-6CCD-37E1-8A41-8C45217E7612> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff8e4d9000 -     0x7fff8e5b7ff7  com.apple.ImageIO.framework (3.1.0 - 3.1.0) <70228E69-063C-32FF-BBE7-FCCD9C5C0864> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8e5b8000 -     0x7fff8e600fff  com.apple.framework.CoreWLAN (2.0 - 200.46) <04AFD988-DDFB-330D-B042-C1EB2826A0CC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8e692000 -     0x7fff8e693fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8e694000 -     0x7fff8e697fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8e698000 -     0x7fff8e69afff  libCVMSPluginSupport.dylib (??? - ???) <2D21E6BE-CB20-3F76-8DCC-1CB0660A8A5B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8e69b000 -     0x7fff8e6a9ff7  com.apple.AppleFSCompression (37 - 1.0) <88C436E8-38AE-3D96-A8C8-2D1805CC47B7> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8e6aa000 -     0x7fff8e6b1ff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8e6b2000 -     0x7fff8e727ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff8e728000 -     0x7fff8e733ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8e734000 -     0x7fff8eb66fe7  com.apple.VideoToolbox (1.0 - 705.35) <B1B9F159-EEE2-38BB-A55E-CDB335A7A226> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8eb67000 -     0x7fff8eb94ff7  com.apple.opencl (1.50.62 - 1.50.62) <616ADE61-11D1-3816-A255-3F0F80F2EAC8> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8eb95000 -     0x7fff8ee0fff7  com.apple.imageKit (2.1 - 1.0) <03200568-184B-36E8-AFE9-04D1FACDC926> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8ee10000 -     0x7fff8ee67fff  libTIFF.dylib (??? - ???) <9E32B490-4C5B-3D96-AF27-9C085C606403> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8ee68000 -     0x7fff8ef6aff7  com.apple.PubSub (1.0.5 - 65.28) <D971543B-C9BE-3C58-8453-B3C69E2D2A6F> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8ef6b000 -     0x7fff8ef72fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff8ef73000 -     0x7fff8ef80fff  com.apple.KerberosHelper (3.0 - 1.0) <040790B0-527E-337B-8E0D-CC4B4B36634B> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8ef81000 -     0x7fff8ef8cfff  com.apple.NSServerNotificationCenter (4.0 - 4.0) <67D1D43D-7641-3BCA-B2BF-10838B380100> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
        0x7fff8ef8d000 -     0x7fff8f01aff7  com.apple.iLifeMediaBrowser (2.6.0 - 502) <174E0D48-398B-362A-8A8F-7948CE30539E> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff8f037000 -     0x7fff8f139ff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
        0x7fff8f13a000 -     0x7fff8f13efff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8f13f000 -     0x7fff8f168fff  libJPEG.dylib (??? - ???) <3DBFEB41-4BF2-3502-872A-BB3738EE61B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8f234000 -     0x7fff8ff2dfef  com.apple.WebCore (7534 - 7534.48.3) <7C5A681C-3749-382C-9551-C197EF878C22> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8ff52000 -     0x7fff8ff67fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8ffaf000 -     0x7fff90045ff7  libvMisc.dylib (325.3.0 - compatibility 1.0.0) <AC5A384A-FA5A-3307-9CED-BD69E6F12A09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff900a9000 -     0x7fff900a9fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff900aa000 -     0x7fff900afff7  libsystem_network.dylib (??? - ???) <4ABCEEF3-A3F9-3E06-9682-CE00F17138B7> /usr/lib/system/libsystem_network.dylib
        0x7fff900b0000 -     0x7fff900c2ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff900c3000 -     0x7fff900e0fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <CC86755A-6CF1-3DDF-A1B0-6F7F5BD7BB39> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff900e1000 -     0x7fff9011cfff  com.apple.LDAPFramework (3.0 - 120.1) <0C23534F-A8E7-3144-B2B2-50F9875101E2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff9011d000 -     0x7fff90160ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <2B1571E1-8E87-364E-BC36-C9C9B5D3EAC4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff90161000 -     0x7fff9047aff7  com.apple.AddressBook.framework (6.0 - 1043) <A6302279-FD1B-3BB7-8419-362425FC5568> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff904c0000 -     0x7fff904ffff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <DE681910-3F7F-3502-9937-AB8008CD281A> /usr/lib/libcups.2.dylib
        0x7fff90500000 -     0x7fff90503fff  libRadiance.dylib (??? - ???) <DCDA308D-4856-3631-B6D7-7A8B94169BC0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff90504000 -     0x7fff90596fff  com.apple.CorePDF (3.0 - 3.0) <6056B710-155A-3543-9373-B9F3E5FC99CE> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff90599000 -     0x7fff9059afff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff9059b000 -     0x7fff905bbfff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
        0x7fff905bc000 -     0x7fff908cefff  com.apple.Foundation (6.7 - 833.1) <618D7923-3519-3C53-9CBD-CF3C7130CB32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff908cf000 -     0x7fff90929fff  com.apple.HIServices (1.9 - ???) <8791E8AA-C034-330D-B2BA-5141154C21CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff9092a000 -     0x7fff9095afff  com.apple.shortcut (2.0 - 2.0) <6E6C9F01-5DAC-35F4-876D-082D915EE782> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff9095b000 -     0x7fff9095dfff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
        0x7fff9095e000 -     0x7fff90978fff  com.apple.CoreMediaAuthoring (2.0 - 889) <99D8E4C6-DDD3-3B0C-BBFB-A513877F10F6> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff90979000 -     0x7fff909feff7  com.apple.Heimdal (2.1 - 2.0) <E4CD970F-8DE8-31E4-9FC0-BDC97EB924D5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff909ff000 -     0x7fff910cd9df  com.apple.CoreGraphics (1.600.0 - ???) <B3C42497-53F5-31BB-987E-D1E76746B0E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff910ce000 -     0x7fff910f4ff7  com.apple.framework.familycontrols (3.0 - 300) <72FEA71A-5865-3875-97E9-3C8C96B7F7FA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff910f5000 -     0x7fff91107ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff91108000 -     0x7fff91273ff7  com.apple.syncservices (6.0 - 673) <901673E1-85DF-307C-B9BB-167BAAC74B14> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff91274000 -     0x7fff91274fff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <D75971EE-0D74-365A-8E52-46558EA49E87> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff91275000 -     0x7fff9129efff  com.apple.datadetectors (3.0 - 172.0) <A63656A8-DDE4-3C52-98CF-8A3E42CB802D> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff9129f000 -     0x7fff9143efff  com.apple.QuartzCore (1.7 - 269.0) <E0AFC745-4AC5-36E3-9827-E5344721071D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff9143f000 -     0x7fff9147efff  com.apple.AE (527.6 - 527.6) <6F8DF9EF-3250-3B7F-8841-FCAD8E323954> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff91485000 -     0x7fff91499ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff9149a000 -     0x7fff914a8fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff914a9000 -     0x7fff914d2fff  com.apple.CoreServicesInternal (113.7 - 113.7) <ACAC98CD-5941-39DB-951A-2509DCCD22FD> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff914d3000 -     0x7fff914dffff  com.apple.CrashReporterSupport (10.7 - 343) <89EFF4A7-D064-3CAE-9BFC-285EE9033197> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff914e0000 -     0x7fff914fdfff  libPng.dylib (??? - ???) <75DA9F95-C2A1-3534-9F8B-14CFFDE2A290> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff914fe000 -     0x7fff91504ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff91552000 -     0x7fff915c6fff  com.apple.WhitePagesFramework (10.7.0 - 141.0) <6585161A-628F-3467-82A4-ECBF1FE7184D> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff915c7000 -     0x7fff915d5ff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
        0x7fff91d0f000 -     0x7fff91d50fff  com.apple.QD (3.12 - ???) <4F3C5629-97C7-3E55-AF3C-ACC524929DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff91d6d000 -     0x7fff91e4dfff  com.apple.CoreServices.OSServices (478.25.1 - 478.25.1) <E7FD4DB7-7844-355A-83D0-C1F24BE71019> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff91e4e000 -     0x7fff91e6bff7  com.apple.openscripting (1.3.3 - ???) <A64205E6-D3C5-3E12-B1A0-72243151AF7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff91e6c000 -     0x7fff91ee7ff7  com.apple.print.framework.PrintCore (7.0 - 366) <E663DF78-6729-332D-B763-ABB63A6BBB55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff91ee8000 -     0x7fff91ff5fff  libJP2.dylib (??? - ???) <D8257CEE-A1C3-394A-8193-6DB7C29A15A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff91ff6000 -     0x7fff920ddfff  com.apple.backup.framework (1.3 - 1.3) <C7F0B3B6-EAC1-3445-A705-E9F18A45D01D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff920de000 -     0x7fff921e3ff7  libFontParser.dylib (??? - ???) <22AADE96-E54D-3918-9DFA-1967F8B21E54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff921e4000 -     0x7fff921faff7  com.apple.ImageCapture (7.0 - 7.0) <69E6E2E1-777E-332E-8BCF-4F0611517DD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff921fb000 -     0x7fff9224efff  libFontRegistry.dylib (??? - ???) <8FE14D77-1286-3619-A02E-0AC1A622596E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff9224f000 -     0x7fff92259ff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
        0x7fff9225a000 -     0x7fff922fcff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff92356000 -     0x7fff92394fff  com.apple.bom (11.0 - 183) <841FA160-A37A-368D-B14E-27AA9DD1AEDA> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff92395000 -     0x7fff92395fff  com.apple.vecLib (3.7 - vecLib 3.7) <29927F20-262F-379C-9108-68A6C69A03D0> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff92396000 -     0x7fff92399fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff9239a000 -     0x7fff923c0fff  com.apple.framework.internetaccounts (1.0 - 1) <64CC50BB-9EE4-36D1-969A-FDD2210026DC> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff923c1000 -     0x7fff923fdfff  libsystem_info.dylib (??? - ???) <BC49C624-1DAB-3A37-890F-6EFD46538424> /usr/lib/system/libsystem_info.dylib
        0x7fff923fe000 -     0x7fff9245aff7  com.apple.QuickLookFramework (3.0 - 489.1) <26470DFE-B3D7-3E05-A4D7-98B64FCB230B> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff9245b000 -     0x7fff924cbfff  com.apple.datadetectorscore (3.0 - 179.3) <AFFBD606-91DE-3F91-8E38-C037D9FBFA8B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff924cc000 -     0x7fff925d8fef  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <3AD29F8D-E3BC-3F49-A438-2C8AAB71DC99> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff925d9000 -     0x7fff925f0fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff925f1000 -     0x7fff925f3ff7  com.apple.IMServicePlugInSupport (1.0 - 1) <A566600F-3D38-3B98-91B5-421AE6D27192> /System/Library/Frameworks/IMServicePlugIn.framework/Versions/A/Frameworks/IMSe rvicePlugInSupport.framework/Versions/A/IMServicePlugInSupport
        0x7fff925f4000 -     0x7fff92bd8faf  libBLAS.dylib (??? - ???) <D62D6A48-5C7A-3ED6-875D-AA3C2C5BF791> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff92bd9000 -     0x7fff92be8fff  com.apple.opengl (1.7.4 - 1.7.4) <38AF4430-7E81-3C98-9330-21DCDA90507E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff92be9000 -     0x7fff92c1efff  com.apple.securityinterface (5.0 - 55004) <790DDF7E-6BA9-36DD-B818-2322A712E1F5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff92c1f000 -     0x7fff92c2cff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff92c2d000 -     0x7fff92c32fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff92c33000 -     0x7fff92f8afff  com.apple.MessageFramework (5.0 - 1244.3) <266F07DF-4440-3DB4-B059-5D23A57A8041> /System/Library/Frameworks/Message.framework/Versions/B/Message
        0x7fff92f8b000 -     0x7fff92f8bfff  com.apple.CoreServices (53 - 53) <5946A0A6-393D-3087-86A0-4FFF6A305CC0> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff92f8c000 -     0x7fff92f90ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff92f93000 -     0x7fff931b3fff  com.apple.CalendarStore (5.0 - 1127) <0E9BE7E8-4DBD-3C2F-97DE-CAC5AE0EE3AD> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff931dd000 -     0x7fff931dffff  com.apple.TrustEvaluationAgent (2.0 - 1) <80AFB5D8-5CC4-3A38-83B9-A7DF5820031A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff931e9000 -     0x7fff93de1fff  com.apple.AppKit (6.7 - 1138) <C8D2FDDA-B9D5-3948-A376-6B9B6F0596C6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff93de2000 -     0x7fff93df5ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff93f39000 -     0x7fff94016fef  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
        0x7fff94017000 -     0x7fff94170ff7  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <296F10D0-A871-39C1-B8B2-9200AB12B5AF> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff94171000 -     0x7fff94905fff  com.apple.CoreAUC (6.11.03 - 6.11.03) <5A56B2DC-A0A6-357B-ADF2-5714AFEBD926> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff94906000 -     0x7fff949a5fff  com.apple.LaunchServices (480.19 - 480.19) <41ED4C8B-C74B-34EA-A9BF-34DBA5F52307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff949a6000 -     0x7fff94c17fff  com.apple.CoreImage (7.77 - 1.0.1) <AB6ECCF3-4B04-3363-9158-08F305BF15FA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff94c5e000 -     0x7fff94e31ff7  com.apple.CoreFoundation (6.7 - 635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff94e32000 -     0x7fff94eccff7  com.apple.SearchKit (1.4.0 - 1.4.0) <B7573888-BAF6-333D-AB00-C0D2BF88DF0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff94ecd000 -     0x7fff94ed2fff  libGIF.dylib (??? - ???) <21851808-BFD2-3141-8354-A419479726BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff94ed3000 -     0x7fff94ed3fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <3E4582EB-CFEF-34EA-9DA8-8421F1C3C77D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff94ed8000 -     0x7fff94ee2ff7  com.apple.aps.framework (2.0 - 2.0) <4A15EAFC-937F-3448-B63C-5304AEB416DD> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff94ee3000 -     0x7fff94ee3fff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff94ee4000 -     0x7fff94f35fff  com.apple.iCalendar (5.0 - 100) <68B0900B-9E7B-30E9-B575-C2F86E76863C> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff94faa000 -     0x7fff94fb0fff  IOSurface (??? - ???) <06FA3FDD-E6D5-391F-B60D-E98B169DAB1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff94fb1000 -     0x7fff94fb4ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff94fcb000 -     0x7fff950c7ff7  com.apple.avfoundation (2.0 - 180.23) <C4383696-561D-33F3-AD7C-51E672F580B2> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff950c8000 -     0x7fff9512ffff  com.apple.Symbolication (1.2 - 87) <C8F38870-0C4E-3A7F-9B12-0E970DE92F24> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff95130000 -    

    I simply deteled the database /Users/cperuta/Library/Application Support/AddressBook/MailRecents-v4.abcdmr and now Mail no longer crashes, but I'm still curious as to what caused this problem in the first place.

  • Java Session problem while sending mail(using javamail) using Pl/SQL

    Hello ...
    i am using Java stored procedure to send mail. but i'm getting java session problem. means only once i can execute that procedure
    pls any help.

    props.put("smtp.gmail.com",host);I doubt javamail recognizes the 'smtp.gmail.com' property. I think it expects 'mail.host'. Of course since it cannot find a specified howt it assumes by default localhost
    Please format your code when you post the next time, there is a nice 'code' button above the post area.
    Mike

  • Java Programming Problem

    Hi all,
    I was looking for this java programming problem which had to do with a large building and there was some gallons of water involved in it too somehow and we had to figure out the height of the buiding using java. This problem is also in one of the java books and I really need to find out all details about this problem and the solution. NEED HELP!!
    Thanks
    mac

    Yes, it will. The water will drain from the bottom of
    the tank until the pressure from the water inside the
    tank equals the pressure from the pipe. In other
    words, without a pump, the water will drain out until
    there is the same amount of water in the tank as in
    the pipe The water pressure depends on the depth of the water, not the volume. So once the depth of the water inside the pipe reaches the same depth as the water inside the tank it will stop flowing. This will never be above the height of the tank.
    I found this applet which demonstrates our problem. If you run it you can drag the guy up to the top, when water in his hose reaches the level of the water in the tank it will stop flowing out.

  • Java Uninstall Problem

    Java Uninstall Problem
    This all came about because of a failed uninstall, using Your Uninstaller.
    The {Java runtime which is all I want) is not listed now & I tried all the other fix bad uninstall type features, all to no avail.} )
    When I DL & run the latest package (jxpiinstall-6u11-fcs-bin-b90-windows-i586-25_nov_2008.exe}
    & run it I get:
    1st message:
         "This software has already been installed on your computer.
         Would you like to install it?"
    If I say no, it exits.
    If I say yes, I get this second message:
         :This action is only valid for products that are currently installed."
    So Now I have no Java & have no idea what to do.
    Any help would be greatly appreciated.
    Thanks, Neuromancer23

    Sorry...after posting it i realized there was a more appropriate forum, of which it took quiet awhile to find.)
    Now that I know where to find the forum list I will never double-post again.
    I'll close the question if I can

  • What   the   Enviroment  required  for java databases programs?

    Hi guys
    What the enviroment required for java databases programs?
    If I have oracle of version 9i and java 1.4.1 platform
    do I need Jdeveloper platform ?

    What the enviroment required for java databases programs?What do you mean by "environment"?
    f I have oracle of version 9i and java 1.4.1 platformYou just need to download Oracle's 9i JDBC driver (ojdbc14.jar) and put that in your CLASSPATH. Then write JDBC code to connect to Oracle and issue SQL commands.
    do I need Jdeveloper platform ?No, JDeveloper is an IDE. Not required.
    Why Java 1.4.1? We're up to Java 6 now. You're two major versions of the JDK behind.
    %

  • Re: Java Database

    Hello,
    I'll like some advice on the topic mentioned above. I'm a beginner of java programming and have elementry knowledge about java. I'll like to know how is it possible to input the list of data in Excel format into Java Database Connectivity and how am I able to extract out the info. that I'll need. Like say the columns/field on designation and name. How am I able to extract the data and change it like to delete or edit the info.??
    Pls. explain it step-by-step your patience is really appreciated. Thanks and God Bless.

    You should search Javaworld for "Excel" - they've had a few articles about using JDBC to access Excel. As far as I recall, though, you can't alter data in Excel through JDBC, only read it.
    http://www.javaworld.com
    There are other ways of getting at Excel data through Java but they're not very good either (unless you want to use a Java-COM bridge).

  • FLEX+CAIRNGORM+BLAZEDS+JAVA+DATABASE

    A very simple example for FLEX+CAIRNGORM+BLAZEDS+JAVA+DATABASE.
    http://vijaaay.limewebs.com/forum/viewthread.php?tid=26&extra=page%3D1
    or
    visit  www . flexindia . tk >> Flex Examples
    The attachment zip contains the source  files[ FLEX and JAVA ] and Readme.txt which helps you to setup this  example.
    Regards,
    Vijay

    Yeah i registered, but i couldn't find zip file. Could you please tell me where is that example
    Thanks,
    ApacheFlex.

  • Sun Java security problems

    Please any one tel me about Sun Java security problems
    with Desktop application

    Hi.
    If you're using SSGD 4.41, please download the Admin guide from here:
    http://docs.sun.com/app/docs/doc/820-4907
    There, at page #41 you'll find useful info concerning "Client Connections and Security Warnings".
    Hope this helps,
    Rob

  • Java Export hangs at 'Export Java Database Content' phase

    Hi All -
    As part of system refresh activities,we are doing Java Export from our Production system(PE1) & we will use that export to import it in our Qulaity system(QE1).So while doing Java Export,the export gets stucks/hangs at 'Export Java Database Content" phase which is the last phase in Java Export steps.We have been doing this task since many years  & we did not encounter this kind of issue ever.There are no errors or at least warnings in the logs like sapinst_dev.log,jload.log,jload.java.log,sapinst.log etc.Our environment details are as below
    EP -6.0
    OS - AIX 5.3,64 BIT
    DB - DB2 UDB
    SAPINST version - 642
    Java version is below
    pe1adm> java -fullversion
    java full version "J2RE 1.4.2 IBM AIX 5L for PowerPC (64 bit JVM) build caix64142ifx-20100918 (SR13 FP6)"
    Please note with the SAPINST we are using currently, the exports of remaining systems in EP & other solutions like ECC,CR,SRM,XI,BI are successfull.We are having this issue only in PE1.Looks like some bug in code.So request the experts in this forum to please take a look at it & provide me with solution if any of you have faced the similar situation.
    Thanks & regards,
    Nagendra.

    Thank you for your reply Subhash.The below is the last entry in jload.log.It is at EP_ATTR_HEADERS.While doing the Java export,we asked our DBA to monitor to find out any errors at DB side.He monitored and said that no deadlocks or no infinite loops are found.Also he said that he cannot create index for that too because it is trying to do select *.In our first 2 or 3 attempts it used to hang at CA_PRODUCTS meta data exported,CA_PROPERTY meta data exported.Now here.Our DBA said that EP_ATTR_HEADERS has 1.4M rows.We tried to bounce the entire system also,but no luck.We have the same issue.Peculiar thing is we dont see any errors or warnings in the logs.
    23.06.11 09:54:21 com.sap.inst.jload.Jload dbExport
    INFO: EP_ATTR_DEFS exported (6 rows)
    23.06.11 09:54:21 com.sap.inst.jload.Jload dbExport
    INFO: EP_ATTR_HEADERS meta data exported
    Please let me know if you need any further info in resolving this issue.
    Thanks & regards,
    Nagendra.

  • Free Java Database?

    I'm looking for a free Java database. A few recommended MySQL, but after going to their site, it looks they charge and aren't free.
    The database would be used in my own commercial product that would be sold to stores. Perhaps MySQL is just free for development? Anyone know?
    If anyone knows of other free Java databases that would be appreciated too.
    Thanks,

    You can always check out Postgres. And I'm not sure if they bundle it anymore, but there used to be a pure-Java database called Cloudscape (I think).
    - saish
    "My karma ran over your dogma." - Anon

Maybe you are looking for

  • How to create a table with the spaces between the row..

    Hello, I am using jdev 11.1.1.6 and I need to insert the spaces between the rows. How this can be done? Thanks and Regards, Tarun Agrawal

  • Bette way to referenced tree model nodes from UI to perform actions on them

    A singleton facade is built. Its init() method loads several "tree model configs", each of them referenced by a name. This singleton creates a Project instance for a given "tree model config" calling the facade method -> createProject(String pjrName,

  • Async os 6.5.1

    Just after the new year started, I upgraded my first of three x1050s to 6.5.0. A few days later after no issues were encountered by this first upgrade, I processed upgrades to my remaining two X's and my M. Unfortunately, on one of these X's I upgrad

  • Two business areas

    Hi all I have one G/R. In one G/R i have multiple line items. How to enter multiple business area. In Accouting document it is updating only one business area againist one Gr/Ir accounting. Remaining line items business area is empty Please help. It

  • How to delete audio converter lite from my Macbook?

    Please help.  I have tried to drag it to the trash but didn't w