Database startup error message

Hi Guys,
When I startup my Database, I always see this error message printed in the trace file:
Error in executing triggers on database startup
*** 2005-12-09 11:12:42.817
ksedmp: internal or fatal error
ORA-00604: error occurred at recursive SQL level 1
ORA-12663: Services required by client not available on the server
ORA-36961: Oracle OLAP is not available.
ORA-06512: at "SYS.OLAPIHISTORYRETENTION", line 1
ORA-06512: at line 15
Error in executing triggers on database startup
*** 2005-12-09 11:12:42.869
ksedmp: internal or fatal error
ORA-00604: error occurred at recursive SQL level 1
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at line 4
I have a few questions about the above message:
1. How can I see which database startup trigger is having this error? Is there a way to determine that?
2. Is there a way I can disable all triggers that fire on database startup? (just like we can disable triggers on a table)
3. Any idea what ORA-36961: Oracle OLAP is not available. means?
Thanks

hey..thanks for the reply, I have checked to see if any triggers are enabled on startup from the USER_TRIGGERS
SQL> select TRIGGER_NAME from DBA_TRIGGERS where TRIGGERING_EVENT='STARTUP';
no rows selected
SQL>
But when I start my database, I again see this error message:
Error in executing triggers on database startup
*** 2005-12-12 05:32:40.778
ksedmp: internal or fatal error
ORA-00604: error occurred at recursive SQL level 1
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at line 4
Is there any way I can check what trigger Oracle is complaining about?
Also, how can I disable OLAP so that I don't see the OLAP error message?
Thanks

Similar Messages

  • Try to retrieve data from database got error message

    Try to retrieve data from database got error message *"java.lang.ArrayIndexOutOfBoundsException: 2*
    *     sun.jdbc.odbc.JdbcOdbcPreparedStatement.clearParameter(JdbcOdbcPreparedStatement.java:1023)*
    *     sun.jdbc.odbc.JdbcOdbcPreparedStatement.setDate(JdbcOdbcPreparedStatement.java:811)*
    *     guestbk.doGet(guestbk.java:32)*
    *     guestbk.doPost(guestbk.java:73)*
    *     javax.servlet.http.HttpServlet.service(HttpServlet.java:710)*
    *     javax.servlet.http.HttpServlet.service(HttpServlet.java:803)"*
    I have used prepared statment
    java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("dd/MM/yy");
                java.util.Date dt = sdf.parse(str3);
                       Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                       con=DriverManager.getConnection("jdbc:odbc:gbook");
                       //Statement stmt=con.createStatement();
    PreparedStatement ps = con.prepareStatement("SELECT * from gbook where emailid =? AND date =?");
    ps.setString(1,str1);
    ps.setString(2,str2);
    ps.setDate(3,new java.sql.Date(dt.getTime()));
    //ps.executeQuery();
                       //ResultSet rs=stmt.executeQuery("select * from gbook where emailid = str1");
                  ResultSet rs = ps.executeQuery();
                       out.println("<Html>");
                    out.println("<Head>");
                       out.println("<Title>GuestBook</Title>");
                       out.println("</Head>");
                       out.println("<Table border=1 align=center >");
                       out.println("<H4><B><center>Teacher's Lesson Plan</center></B></H4><BR>");
                       out.println("<TR><TD><b>Teacher Name</b></TD><TD><b>Class</b></TD></TR>");
               while(rs.next())
                        ctr++;
                        String email=rs.getString("emailid");
                        String cmt=rs.getString("comment");
                        out.println("<TR><TD>"+email+"</TD><TD>"+cmt+"</TD></TR>");
            }Please anybody help .

    PreparedStatement ps = con.prepareStatement("SELECT * from gbook where emailid =? AND date =?");
    ps.setString(1,str1);
    ps.setString(2,str2);
    ps.setDate(3,new java.sql.Date(dt.getTime()));Your SQL query has 2 placeholders but you try to set 3 values.
    And didn't you read the stack trace?
    guestbk.doGet(guestbk.java:32)You could've tracked down line 32 and seen what was there at that line.
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://www.catb.org/~esr/faqs/smart-questions.html
    ----------------------------------------------------------------

  • How to show a database trigger error message as a notification on a page

    I have a database with database triggers to ensure data integrity.
    If an insert or update does not comply to all the business rules, a database triggers raises an exception. When using Apex this exception is caught in the Error Screen, a separate screen, where the whole error stack is displayed.
    Does anyone know a way to display only the error in RAISE_APPLICATION_ERROR as a notification in the screen from which the transaction was initiated?
    Dik Dral

    Well, having had so little response, i had to figure it out myself ;-)
    Using Patrick Wolff's ideas from ApexLib I 'invented' a solution for my problem, that I would like to contribute to the community. I hope that it will come out a bit nicely formatted:
    Apex: Show Database Error Message in calling form
    The purpose is to show a neat error message in the notification area of the calling form.
    Default Apex show the whole error stack raised by a DB trigger in a separate error page.
    With acknowledgement to Patrick Wolf, I lent parts of his ApexLIB code to create this solution.
    <br./>
    Assumptions
    <ul><li>The error message is raised from a DB trigger using RAISE_APPLICATION_ERROR(-20000,’errormessagetext’).</li>
    <li>The relevant part of the error stack is contained within the strings ‘ORA-20000’ and the next ‘ORA-‘-string, i.e. if the error stack is ‘ORA-20000 Value should not be null ORA-6502 …’, than the relevant string is ‘Value should not be null’ .</li>
    <li>Cookies are enabled on the browser of the user </li>
    </ul>
    Explanation
    The solution relies heavily on the use of Javascript. On the template of the error page Javascript is added to identify the error stack and to extract the relevant error message. This message is written to a cookie, and then the control is passed back to the calling page (equal to pushing the Back button).
    In the calling page a Javascript onLoad process is added. This process determines whether an error message has been written to a cookie. If so the error message is formatted as an error and written to the notification area.
    Implementation
    The solution redefines two template pages, the two level tab (default page template) and the one level tab (error page template).
    Javascript is added to implement the solution. This Javascript is contained in a small library errorHandling.js:
    <pre>
    var vIndicator = "ApexErrorStack=";
    function writeMessage(vMessage)
    {       document.cookie = vIndicator+vMessage+';';
    function readMessage()
    { var vCookieList = document.cookie;
    var vErrorStack = null;
    var vStart = null;
    var vEnd = null;
    var vPos = null;
    vPos = vCookieList.indexOf(vIndicator);
    // No cookie found?
    if (vPos == -1) return("empty");
    vStart = vPos + vIndicator.length;
    vEnd = vCookieList.indexOf(";", vStart);
    if (vEnd == -1) vEnd = vCookieList.length;
    vErrorStack = vCookieList.substring(vStart, vEnd);
    vErrorStack = decodeURIComponent(vErrorStack);
    // remove the cookie
    document.cookie = vIndicator+"; max-age=0";
    return(vErrorStack);
    function getElementsByClass2(searchClass,node,tag)
    var classElements = new Array();
    if ( node == null )
    node = document;
    if ( tag == null )
    tag = '*';
    var els = node.getElementsByTagName(tag);
    var elsLen = els.length;
    var pattern = newRegExp('(^|\\s)'+searchClass+'(\\s|$)');
    for (i = 0, j = 0; i < elsLen; i++) {
    if ( pattern.test(els.className) ) {
    classElements[j] = els[i];
    j++;
    return classElements;
    function processErrorText()
    var errorElements = new Array();
    errorElements = getElementsByClass2("ErrorPageMessage",document,"div");
    if (errorElements.length > 0 )
    { errorText = errorElements[0].innerHTML;
    errorText = errorText.substr(errorText.indexOf("ORA-20000")+ 11);
    errorText = errorText.substr(0,errorText.indexOf("ORA")-1);
    // errorElements[0].innerHTML = errorText;
    writeMessage(errorText);
    function show_message()
    { var vCookieList = document.cookie;
    var vErrorStack = null;
    var vErrorName = null;
    var vErrorMessage = null;
    var vStart = null;
    var vEnd = null;
    var vPos = null;
    // get errorStack
    vErrorStack = readMessage();
    if (vErrorStack == -1) return;
    // search for our message section (eg. t7Messages)
    var notificationArea = document.getElementById("notification");
    if (notificationArea != null)
    { notificationArea.innerHTML = '<div class="t12notification">1 error has occurred<ul class="htmldbUlErr"><li>' + vErrorStack + '</li></ul>'; }
    else
    { alert(vErrorStack); }
    </pre>
    This code is loaded as a static file in Application Express (no application associated).
    In both templates a reference to this code is added in the Definition Header section:
    <pre>
    <script src="#WORKSPACE_IMAGES#errorHandling.js" type="text/javascript"></script>
    </pre>
    This library is called from the two level tab to show the error message (if any) in het onLoad event of the body tag.
    <body onLoad="javascript:show_message();">#FORM_OPEN#
    This code checks whether a message has been written to a cookie and if found displays the message in the notification area.
    In the error template page the Error section has the content:
    <script language="javascript">
    processErrorText();
    window.history.go(-1);
    </script>
    Back
    The call to processErrorText() looks for the error message, extracts the relevant part of it (between ‘ORA-20000’ and the next ‘ORA-‘), writes it to a cookie and returns to the previous screen.
    The link to the previous page is added should an error in the Javascript occur. It provides the user with a path back to the application.
    With these actions taken, the error messages issued from triggers are shown in the notification area of the form the user has entered his data in.
    The need for database driven messaging
    In some cases the need exists to process error messages in the database before presenting them to the user. This is the case, when the triggers return message codes, associated to error messages in a message table.
    This can be done by using a special Error Message Processing page in Apex.
    The error message page extracts the error message, redirecting to the Error Message Processing page with the error message as a parameter. In the EMP page a PL/SQL function can be called with the message as a parameter. This function returns the right message, which is written to a cookie using dynamically generated Javascript from PL/SQL. Than the contol is given back to the calling form.
    The redirect is implemented by location.replace, so that the error message page does not exist within the browsing history. The normal history(-1) will return to the calling page.
    Implementation of database driven messaging
    The solution redefines two template pages, the two level tab (default page template) and the one level tab (error page template).
    Javascript is added to implement the solution. This Javascript is contained in a small library errorHandling.js already listed in a previous paragraph.
    In both templates a reference to this code is added in the Definition Header section:
    <script src="#WORKSPACE_IMAGES#errorHandling.js" type="text/javascript"></script>
    This library is called from the two level tab to show the error message (if any) in het onLoad event of the body tag.
    <body onLoad="javascript:show_message();">#FORM_OPEN#
    This code checks whether a message has been written to a cookie and if found displays the message in the notification area.
    In the error template page the Error section has the content:
    <script language="Javascript">
    var errorText = null;
    function redirect2oracle()
    { window.location.replace("f?p=&APP_ID:500:&APP_SESSION.::::P500_MESSAGE:"+errorText); }
    function getError()
    { errorText = processErrorText(); }
    getError();
    redirect2oracle();
    </script>
    Go to Error Message Porcessing Page
    Back to form
    The call to processErrorText() looks for the error message, extracts the relevant part of it (between ‘ORA-20000’ and the next ‘ORA-‘), writes it to a cookie.
    Then the EPM-page (500) is called with the extracted message as parameter.
    The link to the EPM page and the previous page is added should an error in the Javascript occur. It provides the user with a path back to the application.
    We need to create an Error Message Porcessing Page.
    Create a new page 500 with a empty HTML-region “Parameters”
    Create an text-area P500_MESSAGE in this region
    Create a PL/SQL region “Process Messages” with source:
    convert_message(:P500_MESSAGE);
    Create a PL/SQL procedure convert_message like this example, that reads messages from a message table. If not found, the actual input message is returned.
    CREATE OR REPLACE procedure convert_message(i_message in varchar2) is
    v_id number := null;
    v_message varchar2(4000) := null;
    function get_message (i_message in varchar2) return varchar2 is
    v_return varchar2(4000) := null;
    begin
    select msg_text into v_return
    from messages
    where msg_code = upper(i_message);
    return(v_return);
    exception
    when no_data_found then
    return(i_message);
    end;
    begin
    v_message := get_message(i_message);
    // write the message for logging/debugging
    htp.p('Boodschap='||v_message);
    // write cookie and redirect to calling page
    htp.p('<script language="Javascript">');
    htp.p('document.cookie="ApexErrorStack='||v_message||';";');
    htp.p('window.history.go(-1);');
    htp.p('</script>');
    // enter return link just in case
    htp.p('Ga terug');
    end;
    Note: The way the message is converted is just an example
    With these actions taken, the error messages issued from triggers are shown in the notification area of the form the user has entered his data in.
    Message was edited by:
    dickdral
    null

  • Database access error message????

    Hello,
    Could U please Help??????
    I am getting the below error message when running the program. Is there any mistake in the database connection method? I am using MS Access database and below is the connection code
    java.sql.*;
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String database = "jdbc:odbc:MinuteMgt";
    Connection conn = DriverManager.getConnection(database," ", " ");
    java.sql.SQLException: Column not found
    java.lang.Throwable(java.lang.String)
    java.lang.Exception(java.lang.String)
    java.sql.SQLException(java.lang.String, java.lang.String)
    int sun.jdbc.odbc.JdbcOdbcResultSet.findColumn(java.lang.String)
    int sun.jdbc.odbc.JdbcOdbcResultSet.getInt(java.lang.String)
    minutemgt.datalayer.UserData minutemgt.datalayer.UserFactoryImpl.logonUserData(java.lang.String)
    boolean minutemgt.business.SecurityService.validate(java.lang.String, java.lang.String)
    void minutemgt.ui.LoginUI.enterButton_ActionPerformed(java.awt.event.ActionEvent)
    void minutemgt.ui.LoginUI.connEtoC1(java.awt.event.ActionEvent)
    void minutemgt.ui.LoginUI$IvjEventHandler.actionPerformed(java.awt.event.ActionEvent)
    void com.sun.java.swing.AbstractButton.fireActionPerformed(java.awt.event.ActionEvent)
    void com.sun.java.swing.AbstractButton$ForwardActionEvents.actionPerformed(java.awt.event.ActionEvent)
    void com.sun.java.swing.DefaultButtonModel.fireActionPerformed(java.awt.event.ActionEvent)
    void com.sun.java.swing.DefaultButtonModel.setPressed(boolean)
    void com.sun.java.swing.plaf.basic.BasicButtonListener.mouseReleased(java.awt.event.MouseEvent)
    void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)
    void java.awt.Component.processEvent(java.awt.AWTEvent)
    void java.awt.Container.processEvent(java.awt.AWTEvent)
    void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
    void java.awt.LightweightDispatcher.retargetMouseEventjava.awt.Component, int, java.awt.event.MouseEvent)
    boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)
    boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)
    void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
    void java.awt.EventDispatchThread.run()
    THANK YOU VERY MUCH!!!

    You most probably have a typo in your column name (likeint i = rs.getInt ("cutsomer");Kind regards,
      Levi

  • Startup error message while starting up Windows after installing NI Circuit Design Suite 10

    Hi.
    I recentely acquired NI Circuit Design Suite Student Edition v10.
    After installing it on my computer I began receiving the following error message everytime I booted up Windows.
    Faulting application nidmsrv.exe, version 4.7.1.8, faulting module unknown, version 0.0.0.0, fault address 0x007fc66f.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    I checked the Windows logs and found other error messages when the system booted:
    Event Type: Error
    Event Source: Application Error
    Event Category: (100)
    Event ID: 1000
    Date:  12-01-2008
    Time:  13:17:54
    User:  N/A
    Computer: THINKPADT30
    Description:
    Faulting application nidmsrv.exe, version 4.7.1.8, faulting module unknown, version 0.0.0.0, fault address 0x007fc66f.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 41 70 70 6c 69 63 61 74   Applicat
    0008: 69 6f 6e 20 46 61 69 6c   ion Fail
    0010: 75 72 65 20 20 6e 69 64   ure  nid
    0018: 6d 73 72 76 2e 65 78 65   msrv.exe
    0020: 20 34 2e 37 2e 31 2e 38    4.7.1.8
    0028: 20 69 6e 20 75 6e 6b 6e    in unkn
    0030: 6f 77 6e 20 30 2e 30 2e   own 0.0.
    0038: 30 2e 30 20 61 74 20 6f   0.0 at o
    0040: 66 66 73 65 74 20 30 30   ffset 00
    0048: 37 66 63 36 36 66         7fc66f 
    Event Type: Error
    Event Source: Application Error
    Event Category: (100)
    Event ID: 1004
    Date:  12-01-2008
    Time:  13:18:51
    User:  N/A
    Computer: THINKPADT30
    Description:
    Faulting application nidmsrv.exe, version 4.7.1.8, faulting module unknown, version 0.0.0.0, fault address 0x007fc66f.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 41 70 70 6c 69 63 61 74   Applicat
    0008: 69 6f 6e 20 46 61 69 6c   ion Fail
    0010: 75 72 65 20 20 6e 69 64   ure  nid
    0018: 6d 73 72 76 2e 65 78 65   msrv.exe
    0020: 20 34 2e 37 2e 31 2e 38    4.7.1.8
    0028: 20 69 6e 20 75 6e 6b 6e    in unkn
    0030: 6f 77 6e 20 30 2e 30 2e   own 0.0.
    0038: 30 2e 30 20 61 74 20 6f   0.0 at o
    0040: 66 66 73 65 74 20 30 30   ffset 00
    0048: 37 66 63 36 36 66         7fc66f 
    Event Type: Error
    Event Source: Application Error
    Event Category: None
    Event ID: 1001
    Date:  12-01-2008
    Time:  13:21:33
    User:  N/A
    Computer: THINKPADT30
    Description:
    Fault bucket 619997672.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 42 75 63 6b 65 74 3a 20   Bucket:
    0008: 36 31 39 39 39 37 36 37   61999767
    0010: 32 0d 0a                  2..    
    Event Type: Error
    Event Source: Service Control Manager
    Event Category: None
    Event ID: 7034
    Date:  12-01-2008
    Time:  13:18:12
    User:  N/A
    Computer: THINKPADT30
    Description:
    The National Instruments Domain Service service terminated unexpectedly.  It has done this 1 time(s).
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    I checked the forums at NI and found a similar problem with a computer with Windows Vista installed. I have Windows XP Professional installed on the computer, but tried the update through the self updating feature of the NI software.
    After the update the problem remains exactly the same.
    To find out more about the error, I checked several Windows properties to identify the cause of the problem. One thing I found was on the Services control, under Administrative Tools. After the error message during boot, the services window shows up 2 services whose status is "Stopping" and the startup type is "Automatic". This services are:
    Lookout Citadel Driver
    National Instruments Time Sincronization
    I'm using an IBM ThinkPad T30 (Type 2366-BG1) with Windows XP Professional with 768Mb of memory, 80GB HDD.
    Can anyone give me some hints on this matter?
    Thank you in advance.

    Good morning.
    I tried the steps suggested but the problem remained. I then decided to try some aditional steps and apparently the problem is solved. I describe the steps I took bellow.
    The problem was related to my antivirus / firewall solution, Panda Antivirus + Antispyware 2007.
    1. I changed the previously mentioned Windows services startup to "Manual" instead of "Automatic".
    2. Rebooted the computer.
    3. Opened the services control in Administrative Tools.
    4. Selected the first service "Citadel..." and pressed the "Start" button.
    5. After a few seconds, the firewall solution presented a window stating that the program was attempting to access the internet (or my LAN). I selected "Always allow".
    6. I repeated this step for all the others NI services. Some produced the same feedback, others didn't.
    7. Changed the startup type of the services to the values I had written down before.
    8. Rebooted the computer and everything worked fine.
    It seems my firewall solution is unable to cope with a program trying to access the Internet (or network) before a user logs in.
    Thank you for your support.
    Best regards,
    Alexandre Ventura
    Message Edited by AlexandreV on 01-25-2008 04:56 AM

  • LV Startup error message - windows installer

    Hello Everyone,
    Whenever I launch startup LV, I get the attached error message. I had installed an application which was located in a network drive. The application was deleted from the network and from my pc. Its no longer used but whenever I launch LV, this message comes up (and at various other times). Is there any way I can get fix this it short of a full re-install?
    thanks.
    Attachments:
    Error Msg.bmp ‏1039 KB

    Hi DavidT!
    The image that you attached said that it is looking for "install.msi". If you had a shortcut to LabVIEW, it should have been pointing towards LabVIEW.exe.
    Secondly, what do you mean by "I had installed an application which was located in a network drive. The application was deleted from the network and from my pc. Its no longer used...". By "application" do you mean an EXE file that you created using Application Builder in LabVIEW? If so, it shouldn't make a difference if you delete the application or not (for starting up LabVIEW purposes).
    Maybe a better explanation of your situation might help too! However, if time is critical, I would probably just reinstall LabVIEW. It really doesn't take that long!
    Hope this helps!
    Travis H.
    National Instruments
    Travis H.
    LabVIEW R&D
    National Instruments

  • Database update error message

    I am testing a database in JDev. I have a table called PUNTERS which has just one field, PUNTER_NAME. I have made this the Primary Key as I don't want duplicates but perhaps I should have made it a Unique key. I have another table, DRAWS, which also has a field called PUNTER_NAME. I am trying to update this field with a List Of Values (PUNTER_NAME) taken from the PUNTERS table. However, when I try to commit I get the following error message:
    (oracle.jbo.DMLException) JBO-26041: Failed to post data to database during "Insert": SQL Statement "BEGIN INSERT INTO DRAWS(PUNTER_NAME) VALUES (:1) RETURNING ROWID INTO :2; END;".
    I would be grateful for any explanation and advice on how I can commit this update.
    Thanks,
    Jim

    Hi,
    Thanks for the reply. Sorry I have been slow in responding but I just couldn't get on to this site over Christmas.
    Yes it is ADF 11g. Looks like the Row Id was created automatically on the DRAWS Table because I didn't define a Primary Key. I did this deliberately as PUNTER_NAME can be duplicated and the other attribute can be blank. I removed the Row Id but it looks like I must have something as a Primary Key. I have got myself into a mess adding an attribute to be the Primary Key and am going to start again.
    This means that it could be a while before I can say that my problem is solved but perhaps you can tell me if this will work. That is, update PUNTER_NAME on the DRAWS Table, where it is not the Primary Key, from a List of Values taken from the PUNTERS Table where PUNTER_NAME is the Primary Key.
    Thanks,
    Jim

  • Database Startup Error - Ora-00600 on Oracle 8.0 in Windows 2000

    While Installing I Am getting Error Message Ora-00600
    The Database is opened. But the user cannot connect to the database.
    While trying to connect the system shows the above error number. It also give SMON error.

    I think, I already know the answer from Oracle Support. Version 8.0 (Database) was never supported on WIN2000, only 8.0.6 client. Before starting an installation it's always a good idea to check the software and hardware requirements in the installation guide.

  • FCE 2 first time startup error message.

    I am trying to install FCE 2 on a mac mini with 0.5Gig ram. I am using the master disk. I get the following message on startup for the first time. You must have at least 1 Easy Setup file. Please re-install Final Cut Express HD and try again.
    I have tried Tom's suggestions. Same problem on the second install. Any ideas. I updated FCE to 2.0.3. The specs list with my account are not correct for this computer. The operating system is 10.4.2.

    To whom it may concern:
    The IMG_ERR_PAR1 error is a little ambiguous and what I've initially found on it indicates that it pertains to a call made to a previous version of the driver embedded inside your driver install. A couple of ideas:
    1) Check that your interface name or board ID is correct in the IMAQ initialization (This is assuming that this error happens when you're running a program to execute a snap or grab. When you said "every first time startup - error occurs," I'm not quite sure what you mean as to when the error actually occurs).
    2) What version of the IMAQ driver are you using? I'd recommend that you make sure you have the most recent version available at http://digital.ni.com/softlib.nsf/webcategories/85256410006C055586256BBB002C0D10?o
    pendocument&node=132070_US. You'll want IMAQ 2.6.1.
    See if this will do anything for you. Best of luck. If we have to go further with this, I'll need more specific information than was initially provided.
    Thanks,
    Jim Laudie
    Applications Engineer, National Instruments

  • Startup error message on Satellite M30-107

    I get the following message when trying to boot up:
    Windows could not start because the following file is missing or corrupt
    \windows\system32\config\system
    You can attempt to repair this file by starting windows setup using the original setup CD-ROM. Select 'r' at the first screen to start repair.
    What is causing this error message as I did not do anything which should have caused an error? I cannot repair using the setup disk as windows XP was already installed when purchased. Any ideas please?

    Hi Linda,
    This message is quite common and can indicate that there is a problem with your hard drive. It is always possible that the quoted file has been over-written or damaged by another application on your notebook but in my experience this is quite rare.
    The Windows repair console is available if you have a copy of the original Windows XP installation CD but if you only have the recovery CDs that were supplied with your notebook then this option will not be available to you since the recovery CDs only contain a restorable copy of your operating system which you can use to restore your system. This will, however, erase all of your own personal data from the notebook.
    If you have access to a stand-alone utility such as Norton Disk Doctor then I would recommend that you run a scan of your hard drive to ascertain what condition it is in.
    regards,

  • Windows 7 startup error message

    I get a popup window of DSD_2468 (not responding) the 4 numbers seem to change each time I boot the system.  Does anyone know what this is and how do I fix this.
    Jimmy Ray Clemons

    DSD stand for Dell System Detect which means a Dell utility is giving you the error message and you need to contact Dell Technical Support for assistance resolving this error message.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Startup Error Message: System Extension Cannot Be Used

    Every time I turn on my computer, this error message appears. I have searched my Library > Extension folders and I cannot find the AppleUSBEthernetHost. I have also searched for the Apple USBEthernet Host, and cannot find this. As far as I know, nothing is working improperly, save for my Sims 3, but I doubt that has any connection. I am running on a MacBook OS X 10.6.8, Build 10K549. Attached is a screen-capture of my error message. Any help would be greatly appreciated.

    Open the Script Editor in the /Applications/AppleScript/ folder, copy and paste the entire following line into it, and press the Run button:
    do shell script "chown -R root:wheel /System/Library/Extensions/AppleUSBEthernetHost.kext" with administrator privileges
    If it doesn’t work, throw that item away and then reinstall iTunes.
    (113835)

  • Startup Error Message

    Ive had my Ibook G4 for awhile now, and never had a problem like this. This happened out of the blue. I started it up today and I get a big error message in the middle of the screen. It has a power button in the middle of it and says "You need to restart you computer. Hold down the Power button for several seconds or press the Restart button."
    then says it in french and some other languages, I tried turning it off and on again and nothing happen.

    ...but I have lost my cd and all I have is my iBook and the power cord, what do I do now?
    If you call AppleCare Support, they can send you a new set of install disks for your iBook. They will usually charge you about $60 to do this, but that's less than the $129 retail price for a copy of Mac OS X that won't include the extras like the Apple Hardware Test and all the iLife applications that came with your iBook.
    -Doug

  • Uninstalled Bonjour, now startup error message.

    I have just set up a network using an Airport Extreme router. The users on the network all use Windows XP. The printer connected to the Airport is an HP 3050 AIO. Bonjour would see the printer but would not send print jobs.
    SWet the printer connections up manually by creating a new port address and setting it to 10.0.1.1 (the address of the router). All the PC's can now print. I uninstalled Bonjour from the PC's.
    The problem now is that when the PC's boot up, they show an error message "an application could not start because dnssd.dll could not be found". What is the application? Is a piece of Bonjour stil in Windows? The PC's have iTunes loaded. Is this the culprit?
    After I click "OK", the PC's finish booting, see the network, print normally, and acess the internet. How can I get rid of the error message?
    All help would be appreciated.

    You might try this:
    http://www.raymond.cc/blog/archives/2008/02/10/how-to-uninstall-or-remove-bonjou r-mdnsresponderexe/
    Here is the text from that page:
    Bonjour, also known as zero-configuration networking, enables automatic discovery of computers, devices, and services on IP networks. Bonjour uses industry standard IP protocols to allow devices to automatically discover each other without the need to enter IP addresses or configure DNS servers.
    *How to uninstall Bonjour*
    If you’ve installed software by Apple such as iTunes, software by Adobe such as Premiere Pro, Skype, Gizmo, chances are there’s already a Bonjour folder in your Program Files. This service starts automatically and runs a process named mDNSResponder.exe which cannot be ended by Windows Task Manager. If you do not want Bonjour to be in your computer and want to uninstall it, sometimes you can’t find any uninstaller for it! Even if you go to Control Panel’s Add or Remove Program, you can’t find the uninstaller there as well.
    Here’s how to safely uninstall Bonjour and remove mDNSResponder.exe
    Just follow the few simple steps below to remove Bonjour fro your computer.
    1. Go to Start > Run > type the command below and hit OK.
    “%PROGRAMFILES%\Bonjour\mDNSResponder.exe” -remove
    2. Navigate to C:\Program Files\Bonjour
    3. Rename the mdnsNSP.dll file in that folder to mdnsNSP.old
    4. Restart your computer
    5. Delete the Program Files\Bonjour folder
    The first command will stop and remove Bonjour Service from your computer. To confirm, go to Start > Run and type services.msc. Look for Bonjour Service name. If it’s not there, you’ve successfully removed it.
    Gizmo Project has created a small tool (35KB TurnOffBonjour.exe http://download.gizmoproject.com/jasmine/TurnOffBonjour.exe) that turns off and removes Bonjour service. However, it will not remove the Bonjour folder from Program Files. You will still need to manually delete the Bonjour folder after restart. The reason why you’re advised to delete the folder after restart is in case there’s a problem, the Bonjour files are still there for you to restore.
    If you encountered problems after uninstalling or removing Bonjour, you can download and reinstall Bonjour.
    http://www.apple.com/support/downloads/bonjourforwindows.html

  • Startup error message - Could not run this script because of a disk error.

    I uninstalled Dates-to-iCal-Launcher and couldn't find any info about how to uninstall it online (just dragged the icon from Applications to the Trash). Now every time I start my iBook, I get an error message from Dates-to-iCal Launcher (there is an icon that looks like a scroll on the left):
    Could not run this script because of a disk error.
    -43
    How do I get rid of this error message? It happens every time I turn on the computer. Thank you!

    thanks for the update.
    there is no risk when changing settings in any OS user interface like System Preferences etc.
    there could be some risk in manually deleting files from Library folders, which is done sometimes to uninstall applications.
    keep in mind to regularly back up important files.

Maybe you are looking for

  • ITunes was fine until I plugged in the iPhone into the computer

    Now, it freezes up, and never does detect the iPhone. All apple usb cables look alike, but they also fall apart rather easily....so we're left with one between an iPod touch, an iPod classic, and an iPhone. I'm not sure if that is the compatibility i

  • Requested query does not exist on current server

    I have transported a query from DEV to PRD and it went in fine. Now when i try to open the query in designer or analyzer i end up getting error " Requested query does not exist on current server". Though i can run this in RSRT and also can see its en

  • ABAP Runtime Errors

    Dear All, I am getting Runtime Error while accessing any of the Equipment related Transaction in Plant Maintenance. The following details given in the Runtime Error. ShrtText     Syntax error in program "SAPLITO0 ". What happened?     Error in ABAP a

  • Possible to import forums 7.0 to 7.3?

    The customer used forums within  Portal 7.0 . Now we decide to implement Portal 7.3. Can I export forums 7.0 data and import into Portal 7.3? without upgrade to Portal 7.3? Thanks.

  • Xrpcc tool error: NullPointerException

    im trying Hello class example. //interface claas defination is import java.rmi.Remote; import java.rmi.RemoteException; import javax.xml.rpc.server.ServiceLifecycle; public class HelloClass implements HelloInterface, ServerLifecycle{ public String my