Null pointer when trying to initialise speech recognition

Hi all,
I am attempting to utilise the JSAPI for a project for display at my Uni that utilises freeTTS and also some Java speech recognition. Through the tutorials online (such as the Hello World) I have built my speech recognizer but as I try to allocate() for the speech recogniser the program gives me a null pointer.
The grammar file that I load into the file reader exists and I do not get a file not found exception. Can anyone see a blindingly obvious error that I am missing?
Code below. The rec.allocate() (third line after the try... is where i am getting my null pointer from.
Cheers
Mark
public BigEars(SpeakEasy gui){
          mainGui = gui;
          try {
               EngineModeDesc desk = new EngineModeDesc(Locale.ENGLISH);
               rec = Central.createRecognizer(desk);
               rec.allocate();
               FileReader reader = new FileReader("speechRecog/grammar.txt");
               RuleGrammar rules = rec.loadJSGF(reader);
               rules.setEnabled(true);
               rec.addResultListener(this);
               rec.commitChanges();
               rec.requestFocus();
               rec.resume();
          catch (Exception e) {
               message("There is a problem with this code.");
               e.printStackTrace();
     

Hi dheeraj_chd,
I never got a reply to this so to move forward I actually incorporated the Sphinx4 speech recognition program into my project. I do not know if this is any help to you but I got it up and running OK with it.
http://cmusphinx.sourceforge.net/sphinx4/
I hope this helps. It does dramatically increase the size of the application you are writing but at least it works!
Cheers
Mark

Similar Messages

  • Null connection when trying to connect to SQL Server 2000 in Tomcat4.1.29

    Hi All,
    I am still struggling with null connection when trying to connect to sql server 2000 with tomcat using sun.jdbc.odbc.JdbcOdbcDriver
    Here is my server.xml
    <Server port="8005" shutdown="SHUTDOWN" debug="0">
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"
    debug="0"/>
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
    debug="0"/>
    <GlobalNamingResources>
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved">
    </Resource>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <Resource auth="Container" description="Users and Groups
    Database" name="UserDatabase"
    scope="Shareable"
    type="org.apache.catalina.UserDatabase"/>
    <Resource name="jdbc/DefaultDS" scope="Shareable"
    type="javax.sql.DataSource"/>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.
    MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <ResourceParams name="jdbc/DefaultDS">
    <parameter>
    <name>validationQuery</name>
    <value></value>
    </parameter>
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>4</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>2</value>
    </parameter>
    </ResourceParams>
    </GlobalNamingResources>
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8080" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="100" debug="0" connectionTimeout="20000"
    useURIValidationHack="false" disableUploadTimeout="true" />
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to -1 -->
    <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8443" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="100" debug="0" scheme="https" secure="true"
    useURIValidationHack="false" disableUploadTimeout="true">
    <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
    clientAuth="false" protocol="TLS" />
    </Connector>
    -->
    <!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8009" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="0"
    useURIValidationHack="false"
    protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    <!-- Define an AJP 1.3 Connector on port 8009 --><Logger className="org.apache.catalina.logger.FileLogger"
    prefix="catalina_log." suffix=".txt"
    timestamp="true"/>
    <!-- Define the default virtual host -->
    <Host name="localhost" debug="0" appBase="webapps"
    unpackWARs="true" autoDeploy="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    directory="logs" prefix="localhost_log." suffix=".txt"
    timestamp="true"/>
    <Environment name="maxExemptions" type="java.lang.Integer"
    value="15"/>
    <Parameter name="context.param.name" value="context.param.value"
    override="false"/>
    <Resource name="jdbc/DefaultDS" auth="container" type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/DefaultDS">
    <!-- Maximum number of dB connections in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxActive</name>
    <value>8</value>
    </parameter>
    <!-- Maximum number of idle dB connections to retain in pool.
    Set to 0 for no limit.
    -->
    <parameter>
    <name>maxIdle</name>
    <value>4</value>
    </parameter>
    <!-- Maximum time to wait for a dB connection to become available
    in ms, in this example 10 seconds. An Exception is thrown if
    this timeout is exceeded. Set to -1 to wait indefinitely.
    -->
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <!-- MS Sql Server dB username and password for dB connections
    -->
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>sa</value>
    </parameter>
    <!-- Class name for MS Sql Server JDBC driver
    -->
    <parameter>
    <name>driverClassName</name>
    <value>sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    <!-- The JDBC connection url for connecting to MS Sql Server dB.
    -->
    <parameter>
    <name>url</name>
    <value>jdbc:odbc:JBoss-SQL://localhost:1433;databaseName=Development;selectMethod=cursor;</value>
    </parameter>
    <!-- This Databae Connection Pool Description.
    -->
    <parameter>
    <name>description</name>
    <value>JDBC Driver: sun.jdbc.odbc.JdbcOdbcDriver</value>
    </parameter>
    </ResourceParams>
    <Resource name="mail/Session" auth="Container"
    type="javax.mail.Session"/>
    <ResourceParams name="mail/Session">
    <parameter>
    <name>mail.smtp.host</name>
    <value>localhost</value>
    </parameter>
    </ResourceParams>
    <ResourceLink name="linkToGlobalResource"
    global="simpleValue"
    type="java.lang.Integer"/>
    </Host>
    </Engine>
    </Service>
    </Server>
    and my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <!-- Standard Action Servlet Mapping -->
    <web-app>
    <resource-ref>
    <res-ref-name>jdbc/DefaultDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    and JBoss-SQL is data source I created from control panel settings and here is way I am retrieving connetion
    InitialContext initCtx = new InitialContext();
    DataSource ds = (DataSource) initCtx.lookup("java:comp/env/jdbc/DefaultDS");
    Connection con = ds.getConnection();
    return con;
    I tried connecting as mentioned in this website
    http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html#Common%20Problems.But didn't help
    Please help urgent
    Sorry for long file. Can any one please help me in solving this problem.
    Thanks in advnace
    Kurakula

    I'd recommend that you not use the JDBC-ODBC bridge driver to connect to SQL Server. M$ and jTDS are two free type IV JDBC drivers that you should use instead. Put those JARs in the WEB-INF/lib directory.
    The database URL you're using is not correct if you change drivers. Consult the docs to find out what the proper syntax is.
    MOD

  • [svn] 4619: Bug: BLZ-313 - HTTPProxyService throws null pointer when non-turnkey BlazeDS app is deployed to Tomcat 6 .0.16

    Revision: 4619
    Author: [email protected]
    Date: 2009-01-22 10:47:12 -0800 (Thu, 22 Jan 2009)
    Log Message:
    Bug: BLZ-313 - HTTPProxyService throws null pointer when non-turnkey BlazeDS app is deployed to Tomcat 6.0.16
    QA: Yes
    Doc: No
    Checkintests: Pass
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-313
    Modified Paths:
    blazeds/trunk/modules/proxy/src/flex/messaging/services/HTTPProxyService.java

    I submitted a bug, and this was fixed in the latest trunk
    version.

  • Null Pointer when fetching VARRAY / OBJECT TYPE

    Hi,
    i'm trying to fetch a VARRAY, containing an Obeject Type consisiting of two NUMBERS (see scripts below). Now i used JDeveloper to generate corresponding Java Klasses. What i'm trying to do is this:
    String SQL = "select quantityprice from ts_transaction_q_history where hist_id = 125608";
    Map map = null;
    Class obj = null;
    Connection tmpCon = null;
    PreparedStatement tmpStmt = null;
    ResultSet tmpRS = null;
    VaQuantitypriceQ100 tmpQP100 = null;
    OtQuantityprice tmpQP = null;
    OtQuantityprice[] tmpQPArr = null;
    ARRAY tmpQP100ARR = null;
    try {
    tmpCon = getConnection();
    map= tmpCon.getTypeMap();
    obj = Class.forName("ch.egl.emis.persistence.wrapper.VaQuantitypriceQ100");
    map.put(VaQuantitypriceQ100._SQL_NAME, obj);
    tmpCon.setTypeMap(map);
    tmpStmt = tmpCon.prepareStatement(SQL);
    tmpRS = tmpStmt.executeQuery();
    while (tmpRS.next()) {
    tmpQP100ARR = (ARRAY) tmpRS.getObject(1);
    System.out.println(tmpQP100ARR.toString());
    ORADataFactory factory = VaQuantitypriceQ100.getORADataFactory();
    tmpQP100 = (VaQuantitypriceQ100) factory.create(tmpQP100ARR, OracleTypes.ARRAY);
    Long quan = tmpQP.getQuantity().longValue();
    Long price = tmpQP.getPrice().longValue();
    Well, everything works fine, as far as i can see. I get a Quantity (quan), but when i try to get the price, i get a null pointer.
    I am sure, that there is data on the DB and the value for price is nut null. i an using JBoss 3.2.7 and Oracle 9i. Connection is "thin" (may that be the Ptoblem)?
    Anybody there who had similar problems or has a solution for this?
    Many thanks
    Sven
    ********************** VA_QUANTITYPRICE_Q_100 *********************************
    CREATE OR REPLACE TYPE VA_QUANTITYPRICE_Q_100 AS VARRAY(100) OF OT_QUANTITYPRICE
    ********************** OT_QUANTITYPRICE *********************************
    CREATE OR REPLACE TYPE "OT_QUANTITYPRICE" as object (
    quantity number,
    price number
    )

    Hi,
    i'm trying to fetch a VARRAY, containing an Obeject Type consisiting of two NUMBERS (see scripts below). Now i used JDeveloper to generate corresponding Java Klasses. What i'm trying to do is this:
    String SQL = "select quantityprice from ts_transaction_q_history where hist_id = 125608";
    Map map = null;
    Class obj = null;
    Connection tmpCon = null;
    PreparedStatement tmpStmt = null;
    ResultSet tmpRS = null;
    VaQuantitypriceQ100 tmpQP100 = null;
    OtQuantityprice tmpQP = null;
    OtQuantityprice[] tmpQPArr = null;
    ARRAY tmpQP100ARR = null;
    try {
    tmpCon = getConnection();
    map= tmpCon.getTypeMap();
    obj = Class.forName("ch.egl.emis.persistence.wrapper.VaQuantitypriceQ100");
    map.put(VaQuantitypriceQ100._SQL_NAME, obj);
    tmpCon.setTypeMap(map);
    tmpStmt = tmpCon.prepareStatement(SQL);
    tmpRS = tmpStmt.executeQuery();
    while (tmpRS.next()) {
    tmpQP100ARR = (ARRAY) tmpRS.getObject(1);
    System.out.println(tmpQP100ARR.toString());
    ORADataFactory factory = VaQuantitypriceQ100.getORADataFactory();
    tmpQP100 = (VaQuantitypriceQ100) factory.create(tmpQP100ARR, OracleTypes.ARRAY);
    Long quan = tmpQP.getQuantity().longValue();
    Long price = tmpQP.getPrice().longValue();
    Well, everything works fine, as far as i can see. I get a Quantity (quan), but when i try to get the price, i get a null pointer.
    I am sure, that there is data on the DB and the value for price is nut null. i an using JBoss 3.2.7 and Oracle 9i. Connection is "thin" (may that be the Ptoblem)?
    Anybody there who had similar problems or has a solution for this?
    Many thanks
    Sven
    ********************** VA_QUANTITYPRICE_Q_100 *********************************
    CREATE OR REPLACE TYPE VA_QUANTITYPRICE_Q_100 AS VARRAY(100) OF OT_QUANTITYPRICE
    ********************** OT_QUANTITYPRICE *********************************
    CREATE OR REPLACE TYPE "OT_QUANTITYPRICE" as object (
    quantity number,
    price number
    )

  • Null Pointer when fetching VARRAY / OBJEC TYPE

    Hi,
    i'm trying to fetch a VARRAY, containing an Obeject Type consisiting of two NUMBERS (see scripts below). Now i used JDeveloper to generate corresponding Java Klasses. What i'm trying to do is this:
    String SQL = "select quantityprice from ts_transaction_q_history where hist_id = 125608";
    Map map = null;
    Class obj = null;
    Connection tmpCon = null;
    PreparedStatement tmpStmt = null;
    ResultSet tmpRS = null;
    VaQuantitypriceQ100 tmpQP100 = null;
    OtQuantityprice tmpQP = null;
    OtQuantityprice[] tmpQPArr = null;
    ARRAY tmpQP100ARR = null;
    try {
    tmpCon = getConnection();
    map= tmpCon.getTypeMap();
    obj = Class.forName("ch.egl.emis.persistence.wrapper.VaQuantitypriceQ100");
    map.put(VaQuantitypriceQ100._SQL_NAME, obj);
    tmpCon.setTypeMap(map);
    tmpStmt = tmpCon.prepareStatement(SQL);
    tmpRS = tmpStmt.executeQuery();
    while (tmpRS.next()) {
    tmpQP100ARR = (ARRAY) tmpRS.getObject(1);
    System.out.println(tmpQP100ARR.toString());
    ORADataFactory factory = VaQuantitypriceQ100.getORADataFactory();
    tmpQP100 = (VaQuantitypriceQ100) factory.create(tmpQP100ARR, OracleTypes.ARRAY);
    Long quan = tmpQP.getQuantity().longValue();
    Long price = tmpQP.getPrice().longValue();
    Well, everything works fine, as far as i can see. I get a Quantity (quan), but when i try to get the price, i get a null pointer.
    I am sure, that there is data on the DB and the value for price is nut null. i an using JBoss 3.2.7 and Oracle 9i. Connection is "thin" (may that be the Ptoblem)?
    Anybody ther who had similar problems or has a solution for this?
    Many thanks
    Sven
    ********************** VA_QUANTITYPRICE_Q_100 *********************************
    CREATE OR REPLACE TYPE VA_QUANTITYPRICE_Q_100 AS VARRAY(100) OF OT_QUANTITYPRICE
    ********************** OT_QUANTITYPRICE *********************************
    CREATE OR REPLACE TYPE "OT_QUANTITYPRICE" as object (
    quantity number,
    price number
    )

    Sven,
    Here is my simplified example. I hope it helps you.
    I am using JDK 1.5.0_06, Oracle 9.2.0.1 database and latest Oracle JDBC driver ("ojdbc14.jar").
    create or replace type OBJ as object (
      QUANTITY  number
    ,PRICE     number
    create or replace type VA_OBJ as varray(100) of OBJ
    create table TBL (
      CLMN  VA_OBJ
    insert into TBL (CLMN)
    values (VA_OBJ(OBJ(0,1),OBJ(10,100),OBJ(100,1000)))
    import java.sql.Connection;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.util.Arrays;
    import oracle.jdbc.pool.OracleDataSource;
    import oracle.sql.ARRAY;
    import oracle.sql.STRUCT;
    public class ArStruct {
      public static void main(String[] args) {
        Connection c = null;
        OracleDataSource ods = null;
        ResultSet rs = null;
        Statement s = null;
        try {
          ods = new OracleDataSource();
          ods.setURL("jdbc:oracle:thin:scott/tiger@//host:1521/orcl");
          c = ods.getConnection();
          s = c.createStatement();
          rs = s.executeQuery("select CLMN from TBL");
          if (rs.next()) {
            ARRAY ar = (ARRAY) rs.getObject(1);
            Object[] obj = (Object[]) ar.getArray(1L, 1);
            if (obj != null) {
              STRUCT struct = (STRUCT) obj[0];
              obj = struct.getAttributes();
              System.out.println(Arrays.asList(obj));
        catch (Exception x) {
          x.printStackTrace();
        finally {
          if (c != null) {
            try {
              c.close();
            catch (SQLException xSql) {
              System.err.println("Failed to close database connection.");
              xSql.printStackTrace();
          if (ods != null) {
            try {
              ods.close();
            catch (SQLException xSql) {
              System.err.println("Failed to close datasource.");
              xSql.printStackTrace();
    }When I run the above class, this is the output:
    [0, 1]Good Luck,
    Avi.

  • My HP Desktop HD BD07 comes up with an I/O device error when trying to initialise

    I have an HP Desktop HD BD07 2TB harddrive which i use in conjunction with a media player with my tv to access my video files. After watching a movie, leaving and returning home an hour later the media player no longer registering my device. I plugged it into my laptop (HP G61) and found it was coming up as a USB device in devices but not in My Computer. I tried updating drivers, but they were up -to-date. Following the advice of another post here, I went into disc management where I found it, however it was not initialised. When i tried to initialise it to (GPT?GUID? not the root file one) it comes up with a I/O device error and wont initialise the harddrive. I have gathered this means it is corrupted? Can anyone help me - in laymens terms - to try recover this harddrive as it contains precious photos etc on it. Or has anyone encountered the same problem that got their harddrive readable again?
    TIA
    Kathleen

    Initializing will destroy the files.  Likely your already at that point. But read here.
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • Null Pointer Exception Trying to Read File?

    I get a Null Pointer Exception when I try to perform the read hex2.txt, which i know exists and is in the same folder as this java file. Anyone see where my problem is?
    <code>
    import java.io.*;
    public class BytesToZeros
              int count = 0;
              int[] data;
              public static void main (String[] args)
                        BytesToZeros btz = new BytesToZeros();
              public BytesToZeros()
                        this.readFile();
                        this.writeFile();
              private void readFile ()
                        try
                                  FileInputStream fis = new FileInputStream("hex2.txt");
                                  BufferedInputStream bis = new BufferedInputStream(fis);
                                  boolean eof = false;
                                  while (!eof)
                                            int input = bis.read();
                                            if (input == -1)
                                                 eof = true;
                                            else
                                                 data[count] = input;
                                                 count++;          
                                  bis.close();
                        catch (IOException e)
                                  System.err.println("Error Reading File: " + e.getMessage());
                                  count = 0;
              private void writeFile ()
                        String zeros;
                        try
                                  FileOutputStream fos = new FileOutputStream("hex2.txt");
                                  BufferedOutputStream bos = new BufferedOutputStream(fos);
                                  for (int i=0; i<data.length; i++)
                                            bos.write(0);
                                  bos.close();
                        catch (IOException e)
                                  System.err.println("Error writing file: " + e.getMessage());
    </code>

    Doesn't the stack trace you get show which line it was thrown from?
    That should tell you where the problem is.
    It's weird to do a file read and a file write in the constructor like that. It would make somewhat more sense to do
    public static void main (String[] args) {
      BytesToZeros btz = new BytesToZeros();
      btz.readFile();
      btz.writeFile();
    }Although I realize this is just a test.
    Finally, to quote code use square brackes around the code tags:
    &#91;code]&#91;/code]

  • Null Pointer when hiding view attribute

    Hi,
    Attached is my override of doDML of table media. The view object contains fields from tables media and idn. The primary key to both, and the link field is called udid. I try to hide the media.udid but I get a null pointer error.
    Do these line (also below) need the primary key of the media table (the table whose doDML the code is located)?
    EntityDefImpl home = IdnImpl.getDefinitionObject();
    IdnImpl idn = (IdnImpl)home.findByPrimaryKey(getDBTransaction(),getPrimaryKey());
    The point of the above code is to grab another field I need for a procedure(from table IDN). When I comment these lines out the error goes away. Procedure doesn't work, but it runs. It seems weird I know to go to another table to capture udid as you can see below, even though it's available to this table instance. The reason I did that (and chose to hide media.udid) is to have a primary key available to table IDN, so as to grab the other field I need (min_val).
    ANy thoughts? I haven't hid a view attribute before..
    Thanks.
    protected void doDML(int operation, TransactionEvent e)
    //super.doDML(operation, e);
    switch(operation)
    case DML_INSERT: {
    CallableStatement st = null;
    EntityDefImpl home[i]Long postings are being truncated to ~1 kB at this time.

    protected void doDML(int operation, TransactionEvent e)
    //super.doDML(operation, e);
    switch(operation)
    case DML_INSERT: {
    CallableStatement st = null;
    EntityDefImpl home = IdnImpl.getDefinitionObject();
    IdnImpl idn = (IdnImpl)home.findByPrimaryKey(getDBTransaction(),getPrimaryKey());
    String min_val = idn.getMinVal();
    Number udid = idn.getUdid();
    try
    String stmt = "BEGIN DA_YAMS.MED_INS(?,?); END;";
    DBTransaction tr = getDBTransaction();
    st = tr.createCallableStatement(stmt,1);
    st.setInt(1,udid.intValue());
    st.setString(2,getFileName());
    st.executeUpdate();
    stmt = "BEGIN DA_YAMS.IDN_INS(?,?);END;";
    DBTransaction idn_tr = getDBTransaction();
    st = idn_tr.createCallableStatement(stmt,1);
    st.setInt(1,udid.intValue());
    st.setString(2,min_val);
    st.executeUpdate();
    catch (SQLException s)
    throw new JboException(s);

  • Null Pointer Exceptino: Trying to delete linked lists

    the following is a continuation of a code that deletes a specific string in this case aString. the head node is already checked but i need to check the rest of the node and delete all occurences of aString using
    the following code. but i get a NullPointerException on the line if (currNode.getNext().getData().equalsIgnoreCase(aString))this is the code
    else
                    StringLLNode currNode = headNode;
                    boolean keepGoing = false;
                    while(keepGoing == false)
                                       //Null pointer here
                        if (currNode.getNext().getData().equalsIgnoreCase(aString))
                            if(currNode.getNext().getNext() != null)
                                currNode.setNext(currNode.getNext().getNext());
                                currNode = currNode.getNext();
                            else
                                currNode.setNext(null);
                        else{
                        currNode = currNode.getNext();
                }Any suggestions
    Edited by: deyiengz on Jul 8, 2009 6:53 AM
    Edited by: deyiengz on Jul 8, 2009 6:54 AM
    Edited by: deyiengz on Jul 8, 2009 6:55 AM

    Tolls wrote:
    BigDaddyLoveHandles wrote:
    Tolls wrote:
    Filtered through an old sock?What, no Scotch handy?Oh, you mean throw away the green abomination and sup on something altogether more pleasant?
    Why didn't you say so in the first place!So you're telling me to throw the Exceptino?

  • "Value cannot be null" error when trying to edit or create Maintenance Plan in SQL Server 2008

    I have SQL Server 2008 installed on Windows Server 2008 64bit, every time I try to open or create a new Maintenance Plan I receive the error:
    Value cannot be null.
    Parameter name: component (System.Design)
    Program Location:
       at System.ComponentModel.Design.DesignerHost.System.ComponentModel.Design.IDesignerHost.GetDesigner(IComponent component)
       at Microsoft.DataTransformationServices.VsIntegration.DtsDesignerService.OpenDesigner(String connectionString, Object connection, String objectUrn)
       at Microsoft.SqlServer.Management.DatabaseMaintenance.MaintDesignerMenuHandler.Invoke()
    And in the Design view screen
    "Microsoft SQL Server Management Studio is unable to load this document: Could not load type 'Microsoft.SqlServer.Dts.runtime.Wrapper.IDTSPackageSigning100' from assembly 'Microsoft.SqlServer.DTSRunTimeWrap, Version=10.0.0.0, Culture=neutral'. 
    I have searched for a possible solution and have tried some suggestions of registering the msxml6.dll but and have installed VS2008 SP1 but I'm not in a position where I can do a full reinstall of SQL Server right now. Any help is appreciated. My SQL server
    environment information is below. 
    Microsoft SQL Server Management Studio
    10.0.1600.22 ((SQL_PreRelease).080709-1414 )
    Microsoft Analysis Services Client Tools
    2007.0100.1600.022 ((SQL_PreRelease).080709-1414 )
    Microsoft Data Access Components (MDAC)
    6.0.6002.18005 (lh_sp2rtm.090410-1830)
    Microsoft MSXML 3.0 4.0 5.0 6.0 
    Microsoft Internet Explorer 8.0.6001.18943
    Microsoft .NET Framework 2.0.50727.4206
    Operating System 6.0.6002

    I digged a little deeper and figured out it was a missing directory/file in %TEMP%. Seems some CleaningTool removes all files/directories in %Temp% and after that SSMS was not working any longer. The missing file is actually not needed, but the
    missing directory causes the "Value cannot be null" error.
    My missing file name was:
    C:\Users\<username>\AppData\Local\Temp\2\6vvdaozf.tmp
    But the file name changes on every startup.
    So my missing directory name was:
    C:\Users\<username>\AppData\Local\Temp\2
    After creating a empty directory with the name "2" in %TEMP% all went back to work fine for me.
    I'm not sure the directory name is every time the same, but you can discover your missing file with the process monitor from Sysinternal Tools and filters to "Process Name is ssms.exe" and "Path contains AppData\Local\Temp"
    Hope this helps other people to solve their issues too.
    Thank you!! When I run %temp% it takes me to "C:\Users\Admin ...~\AppData\Local\Temp\some random number". At first the random number was 3, after I logged off and back on it was 2. My temp variable in enviromental variables is correct. I looked on another machine
    running SQL2008 and temp is correct there. If I try to rename the numbered folder SSMS stops working. Any idea?

  • "sqlplus: free(): invalid pointer:" when trying to connect to SSL listener

    Hi,
    I'm trying to get an SSL connection configured with my Oracle 11.2.0.1 database and I am getting the following error after entering the password (and when I try to just tnsping the connection):
    NOTE: I cut out a big chunk of the trace dump. If you'd like to see the entire dump, please let me know.
    [po@la4 oracle]$ sqlplus cots_usr@LA2_COTS_SSL
    SQL*Plus: Release 11.2.0.1.0 Production on Mon Jun 4 11:55:03 2012
    Copyright (c) 1982, 2009, Oracle. All rights reserved.
    Enter password:
    *** glibc detected *** sqlplus: free(): invalid pointer: 0x000000001ef6d490 ***
    ======= Backtrace: =========
    /lib64/libc.so.6[0x3b34e70d7f]
    /lib64/libc.so.6(cfree+0x4b)[0x3b34e711db]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nzumfree+0x74)[0x2adbcffd190c]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nztiFIC_Free_Identity_Contents+0x42)[0x2adbcfe3224c]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nztiDI_Destroy_Identity+0x37)[0x2adbcfe321e5]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nztiFIL_Free_Identity_List+0x3c)[0x2adbcfe32182]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nztnFPC_Free_Persona_Contents+0x41)[0x2adbcfe329ad]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nztnDAP_Destroy_A_Persona+0x37)[0x2adbcfe32947]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nztnFPL_Free_Persona_List+0x3c)[0x2adbcfe328e6]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nztwFWC_Free_Wallet_Contents+0x6d)[0x2adbcfe331e3]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nztwCloseWallet+0x43)[0x2adbcfe33103]
    7fffc9fa9000-7fffc9fac000 r-xp 7fffc9fa9000 00:00 0 [vdso]
    ffffffffff600000-ffffffffffe00000 ---p 00000000 00:00 0 [vsyscall]
    [po@la4 oracle]$
    TNSPING results in the same...
    [po@la4 oracle]$ tnsping LA2_COTS_SSL
    TNS Ping Utility for Linux: Version 11.2.0.1.0 - Production on 04-JUN-2012 12:08:27
    Copyright (c) 1997, 2009, Oracle. All rights reserved.
    Used parameter files:
    /opt/oracle/11g_client/WALLETS/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCPS)(HOST = la2.po.org)(PORT = 2484)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = la2.po.org_cots)))
    *** glibc detected *** tnsping: free(): invalid pointer: 0x0000000011a1f0a0 ***
    ======= Backtrace: =========
    /lib64/libc.so.6[0x3b34e70d7f]
    /lib64/libc.so.6(cfree+0x4b)[0x3b34e711db]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nzumfree+0x74)[0x2b829cd5a90c]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nztiFIC_Free_Identity_Contents+0x42)[0x2b829cbbb24c]
    /opt/oracle/11g_client/product/11_2/lib/libnnz11.so(nztiDI_Destroy_Identity+0x37)[0x2b829cbbb1e5]
    However, the non-SSL connection works fine:
    [po@la4 oracle]$ tnsping LA2_COTS
    TNS Ping Utility for Linux: Version 11.2.0.1.0 - Production on 04-JUN-2012 12:10:26
    Copyright (c) 1997, 2009, Oracle. All rights reserved.
    Used parameter files:
    /opt/oracle/11g_client/WALLETS/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = la2.po.org)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = la2.po.org_cots)))
    OK (10 msec)
    -- AND I can connect using sqlplus as well.
    MY TNSNAMES.ORA file:
    # NON-SSL Connector for DB running on LA2 server
    LA2_COTS =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = la2.po.org)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = la2.po.org_cots)
    # SSL Connector for DB running on LA2 server
    LA2_COTS_SSL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCPS)(HOST = la2.po.org)(PORT = 2484))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = la2.po.org_cots)
    MY SQLNET.ORA file
    [po@la4 WALLETS]$ cat sqlnet.ora
    BEQUEATH_DETACH=YES
    NAMES.DIRECTORY_PATH=(TNSNAMES)
    SQLNET.EXPIRE_TIME=10
    SQLNET.AUTHENTICATION_SERVICES = (beq,tcps)
    SQLNET.OUTBOUNT_CONNECTION_TIMEOUT = 3
    SSL_CLIENT_AUTHENTICATION = true
    SSL_VERSION = 3.0
    SSL_CIPHER_SUITES = (SSL_RSA_WITH_3DES_EDE_CDC_SHA, SSL_RSA_WITH_RC4_128_SHA)
    WALLET_LOCATION =
    (SOURCE =
    (METHOD = FILE)
    (METHOD_DATA =
    (DIRECTORY = /home/po/certs)
    Does anyone have any ideas as to what the problem may be?
    Thanks

    I have since reinstalled the 11gR2 database after noticing that I was missing some library paths (/lib and /usr/lib) in my LD_LIBRARY_PATH env var.
    The database that I reinstalled at this point seems to be working fine but all the clients on the other VIPs are installed with those same paths missing from the LD_LIBRARY_PATH. We are in the process of updating the paths on those boxes and then will try reinstalling the clients with the hopes that this will help.

  • Alert tones get SUPER LOUD when trying to record speech

    Ok I am not sure how to search for this problem, even, and therefore haven't been able to find anyone else mentioning it anywhere.
    If I am in the process of recording any speech to text on my iPhone 4s and a text message comes in at the same time, or if one comes in right before I'm going to press the mic button to record, then as soon as I press the mic, or in other words, while recording, the alert tone gets REALLY LOUD.  I mean, REALLY loud.  Instead of shutting off when you press the mic button, it actually gets too loud.
    I haven't tried it with a regular ringtone to see if I get the same thing.  I imagine it would probably stop recording if a phone call came in because it would kick me out of messages entirely. But this seems like a bug to me... if a text message or other alert is sounding and you hit record, it should shut off whatever alert is going on before it starts recording your speech.
    Hope this makes sense.  I am not sure if it started before or after this latest software update... I hadn't used the speech to text as much until recently.  I love it (though some days it doesn't seem to understand me very well!  I guess it's almost human in that way.  ;-)

    I'm having the same issue with my iPhone 4S.  I was hoping to find a solution around here somewhere. 

  • What is the grey triangle and exclamation point when trying to view pics in iPhoto?

    having troubles with photoes that appear in iphoto as a thumnail but when selected a screen appears with a grey triangle and exclamation point !
    what is this about?other photoes in the same album appear as they are selected!

    This indicates a disconnect between the Thumbnail and the original
    this can be caused by two things
    1 - User action deleting items from inside the iPhoto  library - can be directly - can be from the All images list (never delete from there) - can be from running cleanup software like MacKeeer, CleanMac2  or other dangerous, defective software that improperly deletes or changes things in the iPhoto library - if you have done any of these things you must restore your backup from before you did them and damaged your iPhoto library - and I recommend getting rid of any "clean up software" ASAP (although being essentially MalWear it is not easy)
    2 - corruption of the iPhoto library - If it is not #1 then Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your database
    LN

  • Black screen with exclamation point when trying to view photos

    In iphoto 8, when I try to make some pics bigger by clicking on it, the screen changes to a black screen with a white exclamation point in it. This does not happen to all the photos, only some of them. Can someone tell me what happened and how do I fix it?
    Thanks!

    Welcome to the Apple Discussions.
    The ! or ? turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Regards
    TD

  • Java Null Error when Trying to commit

    Hello,
    I just received a new PC and installed OWB Client 10.1.0.2.0 on it.
    When I try to commit, I receive the following java null error:
    null
    null
         at oracle.wh.repos.impl.foundation.DirtyCache.persist(DirtyCache.java:442)
         at oracle.wh.repos.impl.foundation.DirtyCache.persist(DirtyCache.java:355)
         at oracle.wh.repos.impl.foundation.DirtyCache.persist(DirtyCache.java:230)
         at oracle.wh.repos.impl.foundation.CacheMediator.postChanges(CacheMediator.java:458)
         at oracle.wh.repos.impl.foundation.CacheMediator.postChanges(CacheMediator.java:451)
         at oracle.wh.repos.impl.foundation.CacheMediator.commit(CacheMediator.java:1419)
         at oracle.wh.repos.impl.transaction.TransactionManager.commitGlobalTransaction(TransactionManager.java:328)
         at oracle.wh.repos.impl.transaction.TransactionManager.commit(TransactionManager.java:444)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandUtil.commitAllChanges(WHRuntimeCommandUtil.java:321)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandGenerateDeploy.doCompile(WHRuntimeCommandGenerateDeploy.java:870)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandGenerateDeploy.generate(WHRuntimeCommandGenerateDeploy.java:917)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandGenerateDeploy.doDeployment(WHRuntimeCommandGenerateDeploy.java:1105)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandHandler.doCommand(WHRuntimeCommandHandler.java:536)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandHandler.actionPerformed(WHRuntimeCommandHandler.java:329)
         at oracle.wh.ui.common.OWBConsumer.dataItemAvailable(OWBInfoBus.java:380)
         at javax.infobus.DefaultController.fireItemAvailable(DefaultController.java:90)
         at javax.infobus.InfoBus.fireItemAvailable(InfoBus.java:989)
         at oracle.wh.ui.common.OWBInfoBus.produce(OWBInfoBus.java:159)
         at oracle.wh.ui.common.OWBInfoBus.produce(OWBInfoBus.java:76)
         at oracle.wh.ui.runtime.RuntimeController$8.actionPerformed(RuntimeController.java:3331)
         at oracle.wh.ui.runtime.WHJMenuToolBar$2.actionPerformed(WHJMenuToolBar.java:367)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    \nCMPException message and stack trace:\nnull
         at oracle.wh.repos.impl.foundation.DirtyCache.persist(DirtyCache.java:442)
         at oracle.wh.repos.impl.foundation.DirtyCache.persist(DirtyCache.java:355)
         at oracle.wh.repos.impl.foundation.DirtyCache.persist(DirtyCache.java:230)
         at oracle.wh.repos.impl.foundation.CacheMediator.postChanges(CacheMediator.java:458)
         at oracle.wh.repos.impl.foundation.CacheMediator.postChanges(CacheMediator.java:451)
         at oracle.wh.repos.impl.foundation.CacheMediator.commit(CacheMediator.java:1419)
         at oracle.wh.repos.impl.transaction.TransactionManager.commitGlobalTransaction(TransactionManager.java:328)
         at oracle.wh.repos.impl.transaction.TransactionManager.commit(TransactionManager.java:444)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandUtil.commitAllChanges(WHRuntimeCommandUtil.java:321)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandGenerateDeploy.doCompile(WHRuntimeCommandGenerateDeploy.java:870)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandGenerateDeploy.generate(WHRuntimeCommandGenerateDeploy.java:917)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandGenerateDeploy.doDeployment(WHRuntimeCommandGenerateDeploy.java:1105)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandHandler.doCommand(WHRuntimeCommandHandler.java:536)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandHandler.actionPerformed(WHRuntimeCommandHandler.java:329)
         at oracle.wh.ui.common.OWBConsumer.dataItemAvailable(OWBInfoBus.java:380)
         at javax.infobus.DefaultController.fireItemAvailable(DefaultController.java:90)
         at javax.infobus.InfoBus.fireItemAvailable(InfoBus.java:989)
         at oracle.wh.ui.common.OWBInfoBus.produce(OWBInfoBus.java:159)
         at oracle.wh.ui.common.OWBInfoBus.produce(OWBInfoBus.java:76)
         at oracle.wh.ui.runtime.RuntimeController$8.actionPerformed(RuntimeController.java:3331)
         at oracle.wh.ui.runtime.WHJMenuToolBar$2.actionPerformed(WHJMenuToolBar.java:367)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    I remember something similar happening when I upgraded from 9 to 10g on my last machine. A co-worker provided a fix by adding a line to some sort of java file, I think. However, he is un-available to ask about this issue again.
    Any help would be much appreciated!
    -Ryan

    Does this happen after a particular operation (Metadata Import, a mapping creation, etc)? Or does it happen regardless of the preceding operation - i.e. start the Client, immediately after logon do the commit - get that error?
    Nikolai Rochnik

Maybe you are looking for

  • Adobe Media Encoder P2 File Size Too Big for Fat32

    Hi everyone, I'm working on a project that has to be delivered on an actual P2 card. I'm on a Mac running 10.9.1 using Media Encoder 7.2.2.29. My final files are ProRes files and I dropped them into Media Encoder and selected the P2 AVC-Intra 100 108

  • Outer Join without Outer Join

    I'm trying to do is learn how to do an outer join without specifying right, left or full outer join. Why? Performance reasons mostly and to gain a better understanding of Oracle. Thanks, Charles.

  • I have the first dual core macbook. Do I get all the multi touch features?, I have the first dual core macbook. Does I get all the multi touch features with Lion?

    I want to upgrade but want to know that I will be getting many of the features that I am expecting to. As of right now, running Snow Leopard, I only have 2 finger scrolling via trackpad. I have a magic mouse, but was wondering if the upgrade to Lion

  • How to use variables in DVM

    I have a string variable called codeValue and I want to use it in a dvm:lookupValue. Do you know how to use a variable in a dvm function? Below is my lookup function but I got an XPath error dvm:lookupValue ('cityMap.dvm','Code',codeValue,'CityNames'

  • Zen Touch Gets The Sh

    New Zen 20gb? what is this? oo la la you can put stickers on it, what is this? Creative Stick to just afew players instead of making a bunch of others. Meet the demands of the Curent players such as Zen Touch Firmware?! Hmm ya that would be an idea!