SQLException General Error

Hello
I am trying to query a MS Access database using the servlet container provided by tomcat. Sometimes the query has no problem in executing itself...but I keep getting a general error on my tomcat display:
java.sql.SQLException: General error
at sun.jdbc.odbc.JdbcOdbc.throwGenericSQLException(JdbcOdbc.java:6160)
at sun.jdbc.odbc.JdbcOdbc.SQLFreeEnv(JdbcOdbc.java:2742)
at sun.jdbc.odbc.JdbcOdbcDriver.closeConnection(JdbcOdbcDriver.java:842)
at sun.jdbc.odbc.JdbcOdbcConnection.close(JdbcOdbcConnection.java:736)
at dlnet.Browse1.dlGetXMLLocs(Browse1.java:182)
at dlnet.Browse1.dlBrowse1(Browse1.java:138)
at dlnet.Browse.doPost(Browse.java:85)
The results are retrieved from the database though....
I am more concerned as to why the error occurs in he first place though
Any input on this would be very helpful
Thanks
Prashanth

java.sql.SQLException: General error...
sun.jdbc.odbc.JdbcOdbcDriver.closeConnection(JdbcOdbcDr
ver.java:842)Prashanth,
Did you ever find the reason for this? I have a similar problem runing an application against a SQL-Server database using the jdbc-odbc bridge. The problem occurs with some programs but not with others, and only on closeConnection, after all the real work is done.
Jay

Similar Messages

  • Java.sql.SQLException: General error

    Hi i got this error message:
    java.sql.SQLException: General error
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbcStatement.execute(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbcStatement.executeUpdate(Unknown Source)
    at PersonFrame.actionPerformed(PersonFrame.java:1155)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknow
    n Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Sour
    ce)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    my code is:
    while (rs.next())
    String recnumber = rs.getString("Person_ Record_ Number");
    int reccc=Integer.parseInt(recnumber);
    if (Integer.parseInt(FamilyTree.rowselected)==reccc && AddPersonn!=0)
    System.out.println ("record in table "+reccc);
    System.out.println ("record selected "+FamilyTree.rowselected);
    str.executeUpdate("INSERT INTO Person " +
    "VALUES ('"+nameofperson.getText()+"','"+SurnameOfPersonTxt.getText()+"','"+Bday+"','EMPTY','"+DateOfDeathTogether+"','EMPTY','EMPTY','"+phone+"','"+genre+"','"+Country+"','"+FamilyTree.rowselected+"','"+Nicknametxt.getText()+"','"+Filename+"','"+BioFile+"','"+city+"','"+postal+"','EMPTY','empty','"+TimeOfBirth+"','EMPTY')");
    setVisible(false);
    System.out.println(Filename);
    LINE 1155 that the error message says is line :str.executeUpdate("INSERT INTO Person " +
    <<<PersonFrame.actionPerformed(PersonFrame.java:1155)>>>>>
    also note that i didn't include a try statement here (int reccc=Integer.parseInt(recnumber) because recnumber since is created holds the value 5000 so there is no need
    Also the output.. of
    System.out.println("INSERT INTO Person " + "VALUES ('"+nameofperson.getText()+"','"+SurnameOfPersonTxt.getText()+"','"+Bday+"','EMPTY','"+DateOfDeathTogether+"','"+PlaceOfDeath+"','"+address+"','"+phone+"','"+genre+"','"+Country+"','"+FamilyTree.rowselected+"','"+Nicknametxt.getText()+"','"+Filename+"','"+BioFile+"','"+city+"','"+postal+"','"+Causeofdeath+"','"+PlaceBurried+"','"+TimeOfBirth+"','EMPTY')");
    is:
    INSERT INTO Person VALUES ('fgfgff','dfdgfd','2/1/1988','EMPTY','Person Is Alive','null','EMPTY','EMPTY','Male','EMPTY','0560','dasfds','EMPTY','EMPTY','EMPTY','EMPTY','null','null','EMPTY','EMPTY')
    and my table gets only text values...
    Any Help Will Be Greately Appreciated
    Thanks
    Nick .s

    You cannot do two thing at the same time with the same statement (while your ResultSet is open you are making an insert), try using a separate Statement that the one you used for the query for the insert. If that doesn't work, make a new connection, that will do it.
    If you were using a separate statement then I'm sorry, I couldn't tell from your code. I'd had a similar problem and that's the way I solved it.

  • I am getting Error! java.sql.SQLException:General error

    hi every body,
    I struck with this error , can any one suggest in solving this.
    I had a table in oracledatabase ,i have successfully created a table and inserted clob column with an attachment like xxx.txt.
    table format----> id and text columns
    Now my question is to retrieve that data and store it in local disk i am getting this error
    import java.io.*;
    import java.sql.*;
    //import java.sql.SQLException;
    public class Cread {
    public static void main(String[] args) throws ClassNotFoundException,IOException,SQLException {
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection cn=DriverManager.getConnection("jdbc:odbc:sivadsn","scott","tiger");
    Statement s = cn.createStatement();
    ResultSet rs=s.executeQuery("Select text from ram where id=10");
    if(rs.next()){
    FileOutputStream file=new FileOutputStream("c:/store.txt");
    InputStream fin=rs.getBinaryStream(1);
    int c;
    while((c=fin.read())!=-1){
    file.write(c);
    fin.close();
    s.close();
    rs.close();
    catch(IOException e){
    e.printStackTrace();
    System.out.println("Err:"+e);
    I am getting the error as
    java.sql.SQLException: General error
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbcStatement.execute(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbcStatement.executeQuery(Unknown Source)Error! java.sql.SQLException: General error
    at attach.Clobread.main(Clobread.java:30)

    That usually means something is wrong with the syntax of your sql.
    As a guess 'text' is probably a keyword and shouldn't be used as a field name. It is possible that the same is true for 'id'

  • Getting  javax.servlet.ServletException: General error

    Someone pls help me....
    I am getting General Error while inserting a row in database.I am not able to solve this error...I would really appreciate your help...Thanks in advance...
    Following is my Code ::
    <%! int countBts,countBts1,mmm; %>
    <%! String msg; %>
    <%
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String dataSourceName = "ProjData";
    String dbURL = "jdbc:odbc:" + dataSourceName;
    Connection conn = DriverManager.getConnection(dbURL, "","");
    int dataMgx= Integer.parseInt(request.getParameter("allocMgxId"));
    int dataFrsm=Integer.parseInt(request.getParameter("allocFrsmSlotNo"));
    int dataPort=Integer.parseInt(request.getParameter("allocPortNo"));
    int dataBts=Integer.parseInt(request.getParameter("bts1"));
    int dataRpm=Integer.parseInt(request.getParameter("allocRpmNo"));
    int dataMultiLink=Integer.parseInt(request.getParameter("allocMultiLinkNo"));
    String dataPortStatus= "vacant";
    Statement myStat1 = conn.createStatement();
    myStat1.execute("select count(BTS_ID) from MGX where BTS_ID=" + dataBts);
    ResultSet result1 = myStat1.getResultSet();
    if(result1.next())
         countBts=Integer.parseInt(result1.getString(1));
    countBts1=countBts+1;
    if(countBts > 6)
         msg="Configuration of more than 6 spans not allowed";
    %>
    <h3><%=msg %></h3>
    <%}
    else
    PreparedStatement stmt1 =
    conn.prepareStatement(("Insert into MGX (BTS_ID,Port_Status,MGX_Num,Port_No,FRSM_No,RPM_Card,Multi_Link) values ("+dataBts+",'"+dataPortStatus+"',"+dataMgx+","+dataPort+","+dataFrsm+","+dataRpm+","+dataMultiLink+")"));
    mmm =     stmt1.executeUpdate();
    stmt1.close();
    if(mmm == 1)
    msg="One SpanRecord successfully added in the Database ";
    else
    msg="Failure in Update Operation";     
         result1.close();
         myStat1.close();
         conn.close();           
    %>
    The error I am getting is as follows::
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: General error
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:867)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:800)
         org.apache.jsp._5_jsp._jspService(_5_jsp.java:179)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:133)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:311)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    root cause
    java.sql.SQLException: General error
         sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6987)
         sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7115)
         sun.jdbc.odbc.JdbcOdbc.SQLExecute(JdbcOdbc.java:3150)
         sun.jdbc.odbc.JdbcOdbcPreparedStatement.execute(JdbcOdbcPreparedStatement.java:214)
         sun.jdbc.odbc.JdbcOdbcPreparedStatement.executeUpdate(JdbcOdbcPreparedStatement.java:136)
         org.apache.jsp._5_jsp._jspService(_5_jsp.java:121)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:133)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:311)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    Pls Help me

    Thanks for the reply buddy...
    As per your reply....I have tried modifying my Preparedstatement properly with ? and then binding values...
    But even after doing this i am still getting the same error....
    I am clueless...
    Following is my modified Prepared Statement ::
    conn.prepareStatement(("Insert into MGX (BTS_ID,MGX_Num,Port_No,FRSM_No,RPM_Card,Multi_Link,Port_Status) values (?,?,?,?,?,?,?)"));
    stmt1.setInt(1,Integer.parseInt(request.getParameter("bts1")));
    stmt1.setInt(2,Integer.parseInt(request.getParameter("allocMgxId")));
    stmt1.setInt(3,Integer.parseInt(request.getParameter("allocPortNo")));
    stmt1.setInt(4,Integer.parseInt(request.getParameter("allocFrsmSlotNo")));
    stmt1.setInt(5,Integer.parseInt(request.getParameter("allocRpmNo")));
    stmt1.setInt(6,Integer.parseInt(request.getParameter("allocMultiLinkNo")));
    stmt1.setString(7,"Allocated");
    Awaiting for a solution....

  • JDBC-ODBC BRIDGE (General error)

    I get some time "SQLException : general error" on the screen followed by a "[Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]General network error. Check your network documentation" when i am using the jdbc-odbc bridge on a jsp page
    My configuration:
    OS : WIN NT 4.0
    TOMCAT 4.0
    JSP
    Database : SQL server 2000
    Database driver: Sun JDBC-ODBC bridge
    Could it come from a concurrent access problem?
    Does anyone have an idea?
    Thank you,
    Deenesh

    I've found that the descriptive "General Error" message ususally means there's something wrong with my sql. If your db passes Navin's test (meaning it's up and running), then try to take your sql query and paste it into a sql window for your db. Sometimes this gets you an error message that is a little more descriptive.

  • Very Urgent!General Error?

    Hi,
    I have a part of the code as given :
    // logic above
    Statement st=null;
    out.prinltn("VAL! "+st);
    st=con.createStatement();
    out.println("val now --"+st)
    PreparedStatement ps1=con.prepareStatement("query");
    logic to do the the processs with the above query
    if(ps1!=null)
    ps1.close();
    out.println("VAL"+ps1);
    ps1=con.prepareStatement("query"); //General Error
    // logic below
    THE out put which I get from the specific part is as:
    VAL! null;
    val now-- jdbc.odbc....@somevalue
    VAL null
    java.sql.SQLException General error
    What could be the reason for the occurance of the
    general error?
    thanks
    vickyk

    Hi ,
    The reason for occurance of general error is your database might be open or the record you are trying to store is already there or you have not closed connection.
    Regards
    khiz_eng

  • Error -:  AIP-50014:  General Error: Error -:  AIP-50025:  Repository error

    Hi
    Has anyone seen this exception, any idea what causes this exception
    Description: General Error
    StackTrace:
    Error -: AIP-50014: General Error: Error -: AIP-50025: Repository error : Error -: AIP-11016: SQL error: java.sql.SQLException: Missing defines
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1213)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:833)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: Error -: AIP-50025: Repository error : Error -: AIP-11016: SQL error: java.sql.SQLException: Missing defines
         at oracle.tip.adapter.b2b.msgproc.DbAccess.updateWireMsgState(DbAccess.java:2545)
         at oracle.tip.adapter.b2b.msgproc.Request.postTransmit(Request.java:2291)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1823)
         at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:972)
         at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1166)
         ... 3 more
    Caused by: Error -: AIP-11016: SQL error: java.sql.SQLException: Missing defines
         at oracle.tip.repos.core.driver.CatalogQueryDriver.updateInternalObject(CatalogQueryDriver.java:980)
         at oracle.tip.repos.core.driver.CatalogQueryDriver.getRefreshedObject(CatalogQueryDriver.java:763)
         at oracle.tip.repos.core.driver.CatalogQueryDriver.refresh(CatalogQueryDriver.java:481)
         at oracle.tip.repos.core.driver.CatalogDriver.refresh(CatalogDriver.java:1699)
         at oracle.tip.repos.core.persistency.PersistencyService.refresh(PersistencyService.java:545)
         at oracle.tip.adapter.b2b.msgproc.DbAccess.updateWireMsgState(DbAccess.java:2534)
         ... 7 more
    Caused by: java.sql.SQLException: Missing defines
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:174)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:239)
         at oracle.jdbc.driver.RawAccessor.getBytes(RawAccessor.java:81)
         at oracle.jdbc.driver.T4CRawAccessor.getBytes(T4CRawAccessor.java:336)
         at oracle.jdbc.driver.OracleResultSetImpl.getBytes(OracleResultSetImpl.java:660)
         at oracle.jdbc.driver.OracleResultSet.getBytes(OracleResultSet.java:1678)
         at oracle.tip.repos.core.driver.CatalogQueryDriver.updateInternalObject(CatalogQueryDriver.java:896)
         ... 12 more

    Hi,
    We got this error on our production oracle b2b repeatedly.
    2010.01.07 at 12:52:04:936: Thread-10: B2B - (ERROR) Error -: AIP-50025: Repository error : Error -: AIP-11057: Reading/
    commit LargeString/XMLString before closing writer: Error -: AIP-11057: Reading/commit LargeString/XMLString before closin
    g writer
    Is there anyway to overcome this? What is the possible reason for this error?What steps do we need to take?
    We are on MLR#11 and will be upgrading to MLR#13 in a few weeks.
    Regards
    Kavitha

  • Sql Exception :general error

    Dear friends,
    Here I have mysterious problem connection and operating with Oracle thru bridge drivers.
    That is , I have class JDBCManager which takes care of executing Sql statements like selection , insertion and updating. Another class named Server which contains JDBCManager as static member so that any class can all the member function. The Actual problem is that after executing certain number of queries I need to face "SQLException as General error". So please tell how to get rid of this error.
    JDBCManager establishes new Statement for every query body of one method is defined as follows
    public ResultSet niceQuery(String query)
    ResultSet result;
    try
    //Enumeration keys=connections.keys();
    System.out.println(query);
    Statement stmt=connection.createStatement();
    result=stmt.executeQuery(query);
    //stmt.close();
    return(result);
    catch(SQLException se)
    System.out.println("Sorry i can not");
    System.out.println(se);
    return(null);
    null

    You can try with 3rd type drivers. Which i have used in connecting my code to My SQL. as below:
    jdbc:mysql://192.9.200.20:3306/dbname","username","password"
    Try to find informix's third party drivers if available. Happy coding :)

  • Capture Video FCExpressHD 3.0.1-General Error

    I have an iMac G5 pre intel with 2.5 gb or Ram, My camera is a Panasonic DVG60 it has been capturing video fine until today ( 30 hrs) It is now giving me a GENERAL ERROR when I try to capture video. I can capture files in iMovieHD OK, and import them to FCE, but I need the timecodes to edit as when I shot I recorded specific timecodes and it is 1 1/2 hrs worth of video to edit. I have reinstalled FCE 3.0.1 and still no correction. I also tried to as a suggestion on this group said take out the receipts to QT 7. and I did still no go.

    This article is for FCE2 but it works for FCE3 as well:-
    http://docs.info.apple.com/article.html?artnum=93690
    Ian.

  • Every time I try to open a project in final cut pro it says general error. What do I need to do to make it stop saying this? Please help me.

    My final cut pro software is acting up!!! Every time I try to open a project it says "general error" and the timeline doesn't even show up. What do I ahve to do to fix  this?

    Has it ever worked? What version are you using? Generally the overwhelming suggestion for problems like this are to remove the preferences.

  • Urgent: SQLException: Internal Error: Image is not in 8.1 format

    Hello there,
    I have never come accross such error.
    Scenario
    1 using JDeveloper EA1, Database 9i (9.2.0.6)
    2 calling Oracle package procedure with in/out parameters.
    3 Package has been imported into jDeveloper (jPublisher) with defaults settings.
    4 procedure call is successfull, but when accessing out value getting this error
    Code
    try{
    // imported package
    PailinWebPolicy webPolicy=new PailinWebPolicy(conn);
    System.out.println("web issue policy");
    // call of package procedure both parameters are in/out
    webPolicy.issuepolicy(policyData,errors,processStatus);
    System.out.println("web issue policy done");
    result=processStatus[0];
    System.out.println("result assigned policy length "+policyData.length);
    Wtpolicycore resultPolicy=policyData[0];
    System.out.println("policy data assigned");
    // error at accessing getPolicyno
    String policyRef =resultPolicy.getPolicydata().getPolicyno();
    System.out.println("policy ref assigned");
    catch(SQLException e)
    System.out.println("Exception "+e);
    System.out.println("Exception "+e.getErrorCode()+" state "+e.getSQLState());
    opus.close();
    output:
    web issue policy
    web issue policy done
    result assigned policy length 1
    policy data assigned
    Exception java.sql.SQLException: Internal Error: Image is not in 8.1 format
    Exception 17001 state null
    Any idea what might be wrong? I dont see any error on db side at all.
    ferdo
    Message was edited by:
    frpkoo

    I found similar bug reported on Metalink on April 8,2005
    Bug no 4294423
    Getting java.sql.SQLException: Internal Error: Image is not in 8.1 format Error Code: 17001 When running JDBC program that access many User defined Types .
    But cannot find out what is the status of it.
    Any idea?
    ferdo

  • "General Error" when exporting unrendered clip?

    I have .mov clips in my project that already have an alpha channel in them (format is Animation millions of colors +).
    They're on the timeline in a sequence, with a single transition between them.
    I want to export back to Animation Millions of Colors + in order to keep the alpha channel (this is for Flash video conversion).
    The composite mode for the clips are set to normal, with straight alpha. I can see that the alpha is intact on the clips in the timline by temporarily placing an image on a layer under them.
    I understand that you have to export without rendering in order to preserve the alpha channel.
    However, when I try to export to ANY codec without rendering, I get a dialog that says only "General Error." Rendering will allow export, but of course the alpha channel is gone now.
    I'm running System 10.4.10 with the QuickTime 7.3 upgrade installed, FCE 3.5.1. Did QT 7.3 break something?
    Thanks in advance,
    Steve

    Tom,
    Thanks for your reply. The problem isn't that I didn't use the right codec (I did, as I said in my original post). The problem is that I am not able to export an undrendered clip using any codec. All I get is the "General Error" message.
    Thus no transparency in the exported file.
    Also to clarify, I am not keying the source files to create transparency in FCE. The source files already have an alpha channel in them.
    I have downgraded to QuickTime 7.2, so 7.3 was not the culprit. I have also run the usual system cleanup utilities like AppleJack, etc.
    Thanks,
    Steve

  • Getting a general error message in FCE when putting .mov file onto timeline

    Putting a .mov film onto the timeline above a moving image so we see the mov file playing in a reduced size in the background of whats going on ( a window). Don't know why this is happening but any advice would be appreciated!
    We are really stuck so any help would be so appreciated!
    thanks.

    Its converted to an mpeg4 file but i think it may be the fact it is running at 30fps as oppose to the rest of the project which is 25fps. When I try to put it on the timeline it gives me the general error and then the footage which was on below it on timeline no longer exists. Very strange.

  • General Error while exporting QT

    The last couple of projects I've done have been online conforms to HD 10bit uncompressed.
    After finishing all of my tweeks, I wish to output a master Quicktime. As usual I place my in and out markers at the beginning and end of my timeline, and select Export to QuickTime Movie. I select current settings and make self contained. I target my XRAID with better than 1.5 TB available.
    I've had both of these project fail well into the output process. All FCP says is "General Error". After a little research I discover that I'm not the only one with this problem. I tried trashing all of my FCP prefs and trashing my render files and re-building them.
    If I Export to Compressor, the entire timeline will output without failing.
    So, why is this happening? and... If I have a 1920x1080 23.98p 422 10bit uncompressed timeline and I export thru Compressor set to transcode to the very same settings. Is my video compromised in any way?
    My latest piece is about 60 minutes, it appears to fail while halfway done. The previous one was 20 minutes and failed earlier.
    Intel 8 core 3.0Ghz, 6 Gig of RAM, OSX 10.5.5, QT 7.5.5, FCP 6.0.5, Kona3 (v6 software)
    STeve

    I eventually found a couple of clips 3/4s into my timeline that were fixes from Color. They were rendered out in an AJA YUV codec instead of the normal Uncompressed 10bit 422 codec. Although they looked fine, they were the fly in the ointment. When I ran the two offending clips out thru Compressor and replaced them in the timeline, the entire project exported in one go.
    I wish FCP would do a better job of informing what and where the problem is, instead of the "General Error" message.
    STeve

  • DI API Error Code - 1, Error Message - General Error while adding order

    Hi All,
        While adding sales order using di api(in .net web application), i receives error(code-1, message-general error) if some particular items are inserted as line items. For all other items, it works fine.
        I put code to export the order to be added as xml if its giving such error. Then I have written one vb code which accepts xml as input and adds order from it. I tried exported xml with this application and it worked, without any change in exported xml order.
        So I thought if general error comes, .net web page should export order xml and import it again and then use add method. But its not working. Though exported xml gets imported and order gets created if I use the other vb code(i run this after some 5 to 10 min, after order is not created from web application).
        Please help me out of this problem.
    Thanks and Regards,
    Yogesh.

    Hi Yogesh,
    I am not sure about the cause for your problem, but I would recommend to:
    a) use SQL Profiler to find out (hopefully) where the transaction actually breaks and
    b) involve SAP Support to find out what doesn't work when you use these particular items.
    HTH,
    Frank

Maybe you are looking for

  • OBIEE Group Authentication Maintenance

    Hi All, I have set up Authorisation Via ms ADSI Server for OBIEE 10g , I have also setup Group Authorisation via Table .. Works well. But my problem is " Each user and group has to be created in the table" , Is there way around this or any common pra

  • Wi-Fi Reception Question

    I know that previous models of the powerbook had somewhat poor Wi-Fi reception even compared to the iBook (something about an antenna/case issue). Does anyone know which model was the problem - aluminum/titanium? Q: How is the signal reception workin

  • Sort control does not show in drill down ?

    I have a sort control attached to a column header in one of my report and it works fine. However it does not show up in the drill down sections. Is there a way to fix that ? Thanks

  • Can you un-do firefox remembering your password for a specific website?

    Firefox has remembered a user name and password on a site that shows my visa number. I do not know how to un-do it.

  • Transferring My Catalog To Daughter's Computer

    Both my daughters and I use PSE9.  I have a large family ancestry catalog that I want to pass on to them.  They both have their own PSE catalogs with their family pictures.  So I want to give them my ancestry catalog which would create a 2nd catalog