Error Code...0x8AB1023 Error Accessing Historical Database

Hi,
I have recently started development using LabView7.1 (DSC Module). There is a nice example in the Getting Started Manual showing Real Time Trending and Historical data view. I followed the development steps but running the VI given displays the error message. Error Code 0x8AB1023: Failed to map database file to shared memory. I have attached the screenshots of the error messages. The same error messages are displayed even if I run the DSC examples. I am new to Labview so cannot really figure out the reason
Thanks
Attachments:
aaa.jpg ‏85 KB
bbbb.jpg ‏107 KB
ccc.jpg ‏136 KB

Hello Nustian,
As Dennis said- LabVIEW 7.1 was released nearly ten years ago and is not supported on Windows 7; since the error you are getting appears to be related to file I/O, memory access, or a database driver, it's a good bet that something has changed in the OS that is affecting the examples you're trying to use.
If you do need to use LabVIEW 7.1 and MAX 3.1, you'll probably need to use an earlier version of Windows as well (XP SP1 or similar).  The software may be operable in Windows 7 compatability mode, but this isn't a recommended or supported configuration and there are probably going to be more problems down the road.
That being said, it looks like there is at least one (quite old) help document mentioning a similar error that you might want to take a look at:
KnowledgeBase 27PGKDJ6: Error Accessing Historical Database System Error from the LabVIEW DSC Engine
http://digital.ni.com/public.nsf/allkb/4263DA141111EA2086256A1B00821611
Regards,
Tom L.

Similar Messages

  • Error Accessing Historical Database! Error Code: -1967390696 (0x8ABC0018)

    Historical Database error code of 1967390696 (0x8ABC0018) message appears a few seconds after lauching my program.

    What I have done so far was to uninstall all LabVIEW and other related NI modules from Windows. Edited the registry to remove any items releated to LabVIEW and then reinstalled the software. This cleared up all the DSC engine faults that I was having. However, trying to run HTV (Historical Trend Viewer) I can not change the date and time stamp on my data, it always folds back to a March, 1998 as soon as it is started up to collect data. Also when I try to export the data even though it is being displayed, there is nothing in the export file.
    I have pretty much given up on 6.1, the local NI Sales Engineer is supposed to be in the next day to look at this one issue. In the mean time I'm going to use a new computer and try loading LabView to
    see if the problem still exists.

  • Error accessing domain database for selected domain

    when attempting to install the groupwise gateway for microsoft exchange 7.02, i receive the following error:
    error accessing domain database for selected domain. invalid or non-existant domain database.
    the existing gw80 environment consists of a few sles 10 servers (mta, po, gwia, webacc) with edirectory 8.8 sp2, and an external bind dns. i've built a gateway system with the following components:
    ws03sp2
    ex2k3sp2
    novell client 4.91sp5
    c1 1.3.6h
    edir88sp3
    gw801 mta
    can anybody share tips for getting the gateway to see the domain database? are there installation logs i can check? are there any srv records that i need to verify are manually created in the bind dns? will i need microsoft's exchange connector for novell groupwise?

    Hi
    I am having the same issue with GW6.5 Exch2003 both running on Win2003 server.
    Do you have a solution? If so please update this thread.
    Thanks
    Jason
    Originally Posted by csp122
    when attempting to install the groupwise gateway for microsoft exchange 7.02, i receive the following error:
    error accessing domain database for selected domain. invalid or non-existant domain database.
    the existing gw80 environment consists of a few sles 10 servers (mta, po, gwia, webacc) with edirectory 8.8 sp2, and an external bind dns. i've built a gateway system with the following components:
    ws03sp2
    ex2k3sp2
    novell client 4.91sp5
    c1 1.3.6h
    edir88sp3
    gw801 mta
    can anybody share tips for getting the gateway to see the domain database? are there installation logs i can check? are there any srv records that i need to verify are manually created in the bind dns? will i need microsoft's exchange connector for novell groupwise?

  • Error accessing repository database

    I am trying to access my local repository database and I am receiving the error in the screen shot below.  It is a SQL Server DB and I have verified that I can access the server and the database through SQL Server Management Studio.  This was working about 6 weeks back when I had it originally set up and I was able to access all of the database tables.  Any thoughts on what to check next?

    Ken,
    No clue. Is the local repository corrupt? Designer is trying to get the object version of the repository that are you trying to connect. You say it was working fine. Try accessing any other local repository, or if you don't have one, create a local repo and log into designer accessing the new local repo. If that works, then I'm afraid your local repo is corrupt.
    Arun J

  • Error accessing mysql database from a remote host

    Hi all,
    I'm running the following PL/SQL script and encountered some errors. The MySQL server is hosted off campus by a hosting company. However, when I run the same script against a MySQL database server hosted on campus, the script works fine. Here's the error:
    ERROR at line 3:
    ORA-04052: error occurred when looking up remote object
    cmswhit_odbc13.mdl_user@RLTEST
    ORA-00604: error occurred at recursive SQL level 1
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [MySQL][ODBC 5.1 Driver][mysqld-4.1.22-standard]SELECT command denied to user
    'cmswhit_odbc13'@'192.160.216.13' for table 'mdl_user'
    ORA-02063: preceding 2 lines from RLTEST
    Here's the script:
    sqlplus -s <<endofit
    $USERPASS
    set serveroutput on;
    DECLARE
    user_name varchar2(30);
    moo_user_name varchar2(300);
    routine VARCHAR2(40);
    cntr NUMBER(8);
    CURSOR read_saradap is
    select gobtpac_external_user
    from gobtpac
    where gobtpac_external_user in ('greenup','yfeng');
    CURSOR read_mdl_user is
    select "username" from "mdl_user"@rltest where "username" = user_name;
    -- E N D O F C U R S O R S --
    BEGIN
    dbms_output.enable(1000000000);
    -- STEP 1: Read through Banner
    cntr := 0;
    OPEN read_saradap;
    LOOP
    routine := 'Read applicant';
    -- Read an applicant record
    dbms_output.put_line('Reading Banner user');
    FETCH read_saradap INTO user_name;
    EXIT WHEN read_saradap%NOTFOUND;
    dbms_output.put_line('Read Banner username=' || user_name);
    cntr := cntr + 1;
    -- Read the Moodle user;
    routine := 'Read moodle user';
    OPEN read_mdl_user;
    FETCH read_mdl_user INTO moo_user_name;
    IF read_mdl_user%NOTFOUND THEN
    dbms_output.put_line('Moodle user not found');
    ELSE
    dbms_output.put_line('Read Moodle username=' || moo_user_name);
    END IF;
    CLOSE read_mdl_user;
    END LOOP;
    rollback;
    CLOSE read_saradap;
    dbms_output.put_line('Total processed: ' || cntr);
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line(SQLCODE);
    dbms_output.put_line(SQLERRM);
    dbms_output.put_line('Error user=' || user_name);
    dbms_output.put_line(routine);
    END;
    EXIT;
    endofit

    The error seems to be quite clear: the user 'cmswhit_odbc13'@'192.160.216.13' lacks the SELECT privilege on the 'mdl_user' table...
    Max
    http://oracleitalia.wordpress.com

  • Error accessing User-Database from Jython CLI

    Hi All,
    once again, we experience a problem, when running udb commands from the Jython CLI, namely one of 'udb.g.la' or 'udb.u.la' (Others may be affected as well).
    Our user is logged on and the application handle works well for any other CLI calls.
    Our code looks something like this:
    app = PyCLUI()
    app.execRaw('udb.login'{...})   # as admin user
    app.execRaw('udb.g.la',{})This fails with a ClientException. I have printed the stack-trace:
    com.sun.n1.sps.model.util.ClientException
         at com.sun.n1.sps.model.util.ClientException.wrap(ClientException.java:96)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.innerExecute(CommandManagerImpl.java:312)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.execute(CommandManagerImpl.java:170)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:173)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at clui$py.execRaw$4(clui.py:46)
         at clui$py.call_function(clui.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyTableCode.call(PyTableCode.java:333)
         at org.python.core.PyFunction.__call__(PyFunction.java:195)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at org.python.pycode._pyx0.dumpUsers$36(cli_base.py:327)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyFunction.__call__(PyFunction.java:189)
         at org.python.core.PyObject._callextra(PyObject.java:786)
         at org.python.pycode._pyx0.main$44(cli_base.py:556)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:277)
         at org.python.core.PyFunction.__call__(PyFunction.java:174)
         at org.python.pycode._pyx0.f$0(cli_base.py:563)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyCode.call(PyCode.java:14)
         at org.python.core.Py.runCode(Py.java:1211)
         at org.python.core.__builtin__.execfile_flags(__builtin__.java:319)
         at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:158)
         at org.python.util.jython.main(jython.java:190)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java:386)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.run(BootStrap.java:254)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.main(BootStrap.java:52)
    java.lang.ArrayStoreException
         at com.raplix.util.proxy.ProxyManager.privateToPublicInstance(ProxyManager.java:422)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.innerExecute(CommandManagerImpl.java:304)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.execute(CommandManagerImpl.java:170)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:173)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at clui$py.execRaw$4(clui.py:46)
         at clui$py.call_function(clui.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyTableCode.call(PyTableCode.java:333)
         at org.python.core.PyFunction.__call__(PyFunction.java:195)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at org.python.pycode._pyx0.dumpUsers$36(cli_base.py:327)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyFunction.__call__(PyFunction.java:189)
         at org.python.core.PyObject._callextra(PyObject.java:786)
         at org.python.pycode._pyx0.main$44(cli_base.py:556)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:277)
         at org.python.core.PyFunction.__call__(PyFunction.java:174)
         at org.python.pycode._pyx0.f$0(cli_base.py:563)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyCode.call(PyCode.java:14)
         at org.python.core.Py.runCode(Py.java:1211)
         at org.python.core.__builtin__.execfile_flags(__builtin__.java:319)
         at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:158)
         at org.python.util.jython.main(jython.java:190)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java:386)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.run(BootStrap.java:254)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.main(BootStrap.java:52)I am not able to dig deeper, unfortunately. Is this worth filing a bug?
    Regards,
    Frank

    I believe there was a bug filed on this issue. A patch for this issue has been released.
    I think following solaris patches address this issue for MS/CLI 122989-02, 122990-02, 122991-02, 122992-02.
    hope this helps,
    Aj

  • SQL error in the database when accessing a table.

    Hi,
    I got below error at production server. Please suggest how to reslove this error.
    <br>
    <br>
    <br>
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    <br>
    Exception              CX_SY_OPEN_SQL_DB
    <br>
    Date and Time          02.01.2011 15:55:06
    <br>
    <br>
    <br>
    <br>
    <br>
    Short text
    <br>
    SQL error in the database when accessing a table.
    <br>
    <br>
    <br>
    How to correct the error
    <br>
    Database error text........: "[10054] TCP Provider: An existing connection was
    <br>
    forcibly closed by the remote host.
    <br>
    [10054] Communication link failure"
    <br>
    Internal call code.........: "[RSQL/INSR/SWFCNTBUF ]"
    <br>
    Please check the entries in the system log (Transaction SM21).
    <br>
    <br>
    If the error occures in a non-modified SAP program, you may be able to
    <br>
    find an interim solution in an SAP Note.
    <br>
    If you have access to SAP Notes, carry out a search with the following
    <br>
    keywords:
    <br>
    <br>
    "DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB"
    <br>
    "CL_SWF_CNT_FACTORY_SHMEM======CP" or "CL_SWF_CNT_FACTORY_SHMEM======CM001"
    <br>
    |    "ADD_INSTANCE"         
    <br>
    <br>
    <br>
    Information on where terminated
    <br>
    Termination occurred in the ABAP program "CL_SWF_CNT_FACTORY_SHMEM======CP" -
    <br>
    in "ADD_INSTANCE".
    <br>
    The main program was "SAPMSSY1 ".
    <br>
    <br>
    In the source code you have the termination point in line 16
    <br>
    of the (Include) program "CL_SWF_CNT_FACTORY_SHMEM======CM001".
    <br>
    The termination is caused because exception "CX_SY_OPEN_SQL_DB" occurred in
    <br>
    procedure "ADD_INSTANCE" "(METHOD)", but it was neither handled locally nor
    <br>
    declared
    <br>
    in the RAISING clause of its signature.
    <br>
    <br>
    The procedure is in program "CL_SWF_CNT_FACTORY_SHMEM======CP "; its source
    <br>
    code begins in line
    <br>
    1 of the (Include program "CL_SWF_CNT_FACTORY_SHMEM======CM001 ".
    <br>
    <br>
    <br>
    <br>
    Source Code Extract
    <br>
    <br>
    Line
    SourceCde
    <br>
    <br>
    1
    METHOD add_instance .
    <br>
    2
    <br>
    3
    data: ls_id type swfcntbuf.
    <br>
    4
    <br>
    5
    check buffer method - store in local buffer if necessary
    <br>
    6
    retcode = cl_swf_cnt_factory=>add_instance( ibf_por = ibf_por instance = instance ).
    <br>
    7
    <br>
    8
    CHECK m_buffer_method EQ mc_buffer_shared.
    <br>
    9
    <br>
    10
    append key to list of tasks to add stored in database table SWFCNTBUF
    <br>
    11
    will be evaluated by build process for shared memory area (UPDATE_BUFFER method)
    <br>
    12
    <br>
    13
    ls_id-mandt = sy-mandt.
    <br>
    14
    ls_id-id    = ibf_por.
    <br>
    15
    <br>
    >>>>>
    INSERT swfcntbuf CONNECTION r/3*wfcontainer
    <br>
    17
    FROM ls_id.
    <br>
    18
    <br>
    19
    IF sy-subrc EQ 0.
    <br>
    20
    Commit seems to be necessary always, even if INSERT has failed, to get rid of
    <br>
    21
    database locks
    <br>
    22
    COMMIT CONNECTION r/3*wfcontainer.
    <br>
    23
    ENDIF.
    <br>
    24
    <br>
    25
    ENDMETHOD.
    <br>

    duplicate here SQL error in the database when accessing a table.
    Do not post the same question in more than on forum.

  • DBIF_RSQL_SQL_ERROR with SQL error in the database when accessing a table.

    dear all,
      i have done a system copy from production server into quality server. quality was scrapped and freshly installed with SAP then used the DB flush method to carry out the system copy. i had to change the DBS_ORA_SCHEMA in environment variables to SAP<SOURCE SID> from SAPSR3. the sap version is ECC6.0,DB is ORACLE10.2 on WIN NT.
      after MMC opened, i get "SQL error in the database when accessing a table" error is coming. in SM21, I am getting "Transaction Canceled 00 671 ( DBIF_RSQL_SQL_ERROR 20081018130339sibqty_QTY_00 SAPSYS 000 )
    Database error 8103 at SEL access to table TBTCO
    Run-time error "DBIF_RSQL_SQL_ERROR" occurred
    Database error 8103 at FET access to table TBTCP
    Run-time error "DBIF_RSQL_SQL_ERROR" occurred
    > Short dump "081018 130339 sibqty_Q TY_00 " generated
    Transaction Canceled 00 671 ( DBIF_RSQL_SQL_ERROR 20081018130339sibqty_QTY_00 SAPSYS 000
    > Short dump "081018 130339 sibqty_Q TY_00 " generated
    Transaction Canceled 00 671 ( DBIF_RSQL_SQL_ERROR 20081018130339sibqty_QTY_00 SAPSYS 000
    Delete session 001 after error 023
    Database error 8103 at DEL access to table TMSALOGAR
    Run-time error "DBIF_RSQL_SQL_ERROR" occurred
    > Short dump "081018 130432 sibqty_Q TY_00 " generated
    Database error 8103 at FET access to table SNAP
    Run-time error "DBIF_RSQL_SQL_ERROR" occurred
    > Short dump "081018 130432 sibqty_Q TY_00 " generated
    Transaction Canceled SY 002 ( SQL error in the database when accessing a table. )
    Database error 8103 at FET access to table TSP02"
    please find the st22 DUMP:
    ow to correct the error                                                                          |
    Database error text........: "ORA-08103: object no longer exists"
    Internal call code.........: "[RSQL/READ/TBTCO ]"
    Please check the entries in the system log (Transaction SM21).
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB"
    "SAPMSSY2" or "SAPMSSY2"
    "INITIATE_JOB_START"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    The exception must either be prevented, caught within proedure
    "INITIATE_JOB_START" "(FORM)", or its possible occurrence must be declared in
    the
    RAISING clause of the procedure.
    |   
    please do me this favor if you know to avoid this problem..
    thanks a lot..

    Hello Anuj,
    This is because the COUNT(*) is returning a value which is longer than the INT4 data type it is expecting. If you restrict the selection by introducing a WHERE clause, then you won't get the dump:
    DATA: dyn_from    TYPE string,
          dyn_where   TYPE string,
          gx_sql_err  TYPE REF TO cx_sy_open_sql_error,
          gv_text     TYPE string.
    dyn_from  = `DD01L INNER JOIN DD02L ON DD02L~AS4LOCAL = DD01L~AS4LOCAL AND DD02L~AS4VERS = DD01L~AS4VERS`.
    dyn_where = `DOMNAME LIKE 'Z%'`.
    TRY .
        SELECT COUNT(*) FROM (dyn_from) WHERE (dyn_where).
        WRITE: / sy-dbcnt NO-GROUPING.
      CATCH:  cx_sy_open_sql_db             INTO gx_sql_err,
              cx_sy_dynamic_osql_semantics  INTO gx_sql_err,
              cx_sy_dynamic_osql_syntax     INTO gx_sql_err.
    ENDTRY.
    IF gx_sql_err IS BOUND.
      gv_text = gx_sql_err->get_text( ).
      WRITE: / gv_text.
    ENDIF.
    BR,
    Suhas

  • DBIF_RSQL_SQL_ERROR: SQL error in the database when accessing a table

    Hi Gurus,
    Im getting DBIF_RSQL_SQL_ERROR: SQL error in the database when accessing a table error while I was importing support pack in the system. This is ERP 6.0 with EHP4 with MS SQL in back ground and I was applying the BASIS SP 04. It was in the TEST scenario and in the SPDD_SPAU_CHECK phase it threw the error.
    Short text
        SQL error in the database when accessing a table.
    What can you do?
        Note which actions and input led to the error.
        For further help in handling the problem, contact your SAP administrator
        You can use the ABAP dump analysis transaction ST22 to view and manage
        termination messages, in particular for long term reference.
    How to correct the error
        Database error text........: "[601] Could not continue scan with NOLOCK due to
         data movement."
        Internal call code.........: "[RSQL/FTCH/E071 ]"
        Please check the entries in the system log (Transaction SM21).
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB"
        "SAPLSVRT" or "LSVRTU01"
        "TR_LAST_IMPORT_OF_OBJECT"
    SPAM  is ending with the above short dump. I have checked the space availability and it is OK.
    Kindly help.
    Renju Aravind.

    Hi,
    this error is very often seen in case of a database corruptions. Please follow note 142731 and perform a complete database check. Send the results when they show errors.
    Best regards
      Clas

  • Error -18351 when accessing TS database options

    I have not used the system in a month and now when I try to access the 'Database options' window in Teststand from the Configure menu I receive the following message:
    Details
    The type library information for 'TestStand API 2.0' was not found.
    Make sure the server is registered with the system.
    Error Code
    -18351; An error occurred reading an ActiveX Automation server type library.
    Location
    Step 'Create UUTResult' of sequence 'Edit Database Options' in 'Database.seq'
    Has anyone seen this before? I am using TS 3.1 on Win2K.

    Hey plf,
    Have you seen this Discussion Forum.   I think it is very similar to the error you are seeing.  Try the steps in there and if that fails then let me know and we'll see what else we can figure out. 
    You need to open the Database.seq file inside of this directory: C:\Program Files\National Instruments\TestStand 3.1\Components\NI\Models\TestStandModels\Database  and go to the Edit Database Options from the View drop down.  Then you can right click on Create UUTResult and click on Specify Module.  Yours should be similar to the one I'm attaching.  Check and make sure it is.
    Message Edited by Sam R on 02-09-2006 12:47 PM
    Message Edited by Sam R on 02-09-2006 12:48 PM
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~
    Attachments:
    SpecifyModule.jpg ‏1177 KB

  • Getting error "SQL error in the database when accessing a table."

    Hi All,
    We are getting Dump Error SQL error in the database when accessing a table for the batch job EISSD/REQUISITION 14 / which includes program AQ20FD==========A2============. Please reply. The Dump error details are as follows
    Short text
        SQL error in the database when accessing a table.
    How to correct the error
        Database error text........: "ORA-01555: snapshot too old: rollback segment
         number 21 with name "_SYSSMU21$" too small"
        Internal call code.........: "[RSQL/FTCH/VBRK ]"
        Please check the entries in the system log (Transaction SM21).
    Thanks
    Padmakar Kudtarkar
    Edited by: Rob Burbank on May 19, 2011 9:38 AM

    The query where we are getting error in Standard program AQ20FD==========A2============ for Job
    EISSD/REQUISITION 14 / is as follows:
    select VBRKBUKRS VBRKFKART VBRKFKDAT VBRKFKTYP VBRKGJAHR VBRKKUNAG VBRKKUNRG VBRKKURRF VBRKVBELN VBRKWAERK VBRP~AUBEL
           VBRPAUPOS VBRPFKIMG VBRPKVGR2 VBRPKZWI1 VBRPMATNR VBRPMWSBP VBRPNETWR VBRPPSTYV VBRPVBELN VBRPVGBEL VBRP~VGPOS
           VBRPVKBUR VBRPVKGRP VBRPVRKME VBRPWAVWR
    into (VBRK-BUKRS , VBRK-FKART , VBRK-FKDAT , VBRK-FKTYP , VBRK-GJAHR , VBRK-KUNAG , VBRK-KUNRG , VBRK-KURRF , VBRK-VBELN
         , VBRK-WAERK , VBRP-AUBEL , VBRP-AUPOS , VBRP-FKIMG , VBRP-KVGR2 , VBRP-KZWI1 , VBRP-MATNR , VBRP-MWSBP , VBRP-NETWR
         , VBRP-PSTYV , VBRP-VBELN , VBRP-VGBEL , VBRP-VGPOS , VBRP-VKBUR , VBRP-VKGRP , VBRP-VRKME , VBRP-WAVWR )
    from ( VBRK
           inner join VBRP
           on VBRPVBELN = VBRKVBELN )
           where VBRK~BUKRS in SP$00004
             and VBRK~FKDAT in SP$00001
             and VBRK~KUNAG in SP$00002
             and VBRK~VBELN in SP$00006
             and VBRP~MATNR in SP$00003.
      %dbacc = %dbacc - 1.
      if %dbacc = 0.
        stop.
      endif.
      check SP$00004.
      check SP$00001.
      check SP$00002.
      check SP$00006.
      check SP$00003.
      add 1 to %count-VBRK.
      %linr-VBRK = '01'.
      extract %fg01.
      %ext-VBRP01 = 'X'.
        extract %fgwrVBRP01.
    endselect.

  • Root cause of "SQL error in the database when accessing a table. "

    Dear experts,
    I meet this dump "SQL error in the database when accessing a table" when executing a sql.
    Sql:
        SELECT sesssessno poscrm_serplan_id poscrm_ser_h_id poscrm_ser_i_id
               possolution_id sessbundle_id sessdbid sessinstno pos~crm_ordered_prod
               sessdbid sessinstno
          INTO CORRESPONDING FIELDS OF TABLE et_sess_list
          FROM dsvassessadmin AS sess JOIN service_posn_sm AS pos
            ON possession_id     = sesssessno
          FOR ALL ENTRIES IN lt_contractno
          WHERE sess~contractno = lt_contractno-contract_no
           AND sess~status IN lt_status_range
           AND bundle_id IN lt_bundle_id
           AND pos~solution_id GT 0
    This sql works well in dev system SD7, however, it causes dump in another dev system "SMV".
    Can anyone give me any ideas?
    Thanks

    Hi Jovito,
    This is info from ST22
    Short text
        SQL error in the database when accessing a table.
    What can you do?
        Note which actions and input led to the error.
        For further help in handling the problem, contact your SAP administrator
        You can use the ABAP dump analysis transaction ST22 to view and manage
        termination messages, in particular for long term reference.
    How to correct the error
        Database error text........: "SQL0101N The statement is too long or too
         complex. SQLSTATE=54001"    Internal call code.........: "[RSQL/OPEN/DSVASSESSADMIN ]"
        Please check the entries in the system log (Transaction SM21).
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB"
        "CL_AGS_SERVICE_SERV===========CP" or "CL_AGS_SERVICE_SERV===========CM018"
        "GET_OVS_SESSION_LIST"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
        3. If the problem occurs in a problem of your own or a modified SAP
        program: The source code of the program
           In the editor, choose "Utilities->More
        Utilities->Upload/Download->Download".
        4. Details about the conditions under which the error occurred or which
        actions and input led to the error.
        The exception must either be prevented, caught within proedure
        "GET_OVS_SESSION_LIST" "(METHOD)", or its possible occurrence must be declared
         in the
        RAISING clause of the procedure.
        To prevent the exception, note the following:
    It seems that after translation the native sql is too long. But I think this can be solved.

  • DBIF_RSQL_INVALID_RSQL  " Error in the module RSQL accessing the database i

    TYPES: BEGIN OF lty_bkpf,
               xblnr LIKE bkpf-xblnr,
             END OF lty_bkpf.
      DATA: li_bkpf TYPE STANDARD TABLE OF lty_bkpf
                    WITH HEADER LINE.
      RANGES: lr_xblnr FOR bkpf-xblnr,
              lr_xblnr1 FOR bkpf-xblnr,
               s_bukrs FOR bseg-bukrs.
    IF NOT lr_xblnr1[] IS INITIAL.
        SELECT xblnr
            FROM bkpf
            APPENDING CORRESPONDING FIELDS OF TABLE li_bkpf
            WHERE bukrs IN s_bukrs
            AND bstat = ''
            AND xblnr IN lr_xblnr1  
            AND blart EQ 'SA'.
      ENDIF.
    s_bukrs has a single value .
    lr_xblnr1 has 3000 entries and also with  wild characters.  ( I     CP   4903813253* ) .
    the SELECT statement is going into dump  with the message  : DBIF_RSQL_INVALID_RSQL
    " Error in the module RSQL accessing the database interface."
    please suggest me alternate code  to encounter this issue .
    thanks,
    Raghu V

    Moderator message - Please search before asking - post locked
    Rob

  • Error code: MapiExceptionJetDatabaseCorruption: Unable to mount database. (hr=0x80004005, ec=-338)

    We are on Exchange 2007
    We have one database that will not mount. Whenever we try to mount we get the below error
    Exchange is unable to mount the database that you specified. Specified database: EXG01\SG3-DB\SG3-DB; Error code: MapiExceptionJetDatabaseCorruption: Unable to mount database. (hr=0x80004005, ec=-338)
    I ran the eseutil /mh against the DB & found the database to be in clean shutdown state. I moved all the log files and chk files to another location and tried mounting the DB but the very same error.
    Initiating FILE DUMP mode...
             Database: SG3-DB.edb
            File Type: Database
       Format ulMagic: 0x89abcdef
       Engine ulMagic: 0x89abcdef
     Format ulVersion: 0x620,12
     Engine ulVersion: 0x620,12
    Created ulVersion: 0x620,12
         DB Signature: Create time:06/07/2011 00:22:54 Rand:482525 Computer:
             cbDbPage: 8192
               dbtime: 3942751903 (0xeb019e9f)
                State: Clean Shutdown
         Log Required: 0-0 (0x0-0x0)
        Log Committed: 0-0 (0x0-0x0)
       Streaming File: No
             Shadowed: Yes
           Last Objid: 877765
         Scrub Dbtime: 0 (0x0)
           Scrub Date: 00/00/1900 00:00:00
    Please help us on how to clear this error and mount the database.

    We are on Exchange 2007
    We have one database that will not mount. Whenever we try to mount we get the below error
    Exchange is unable to mount the database that you specified. Specified database: EXG01\SG3-DB\SG3-DB; Error code: MapiExceptionJetDatabaseCorruption: Unable to mount database. (hr=0x80004005, ec=-338)
    I ran the eseutil /mh against the DB & found the database to be in clean shutdown state. I moved all the log files and chk files to another location and tried mounting the DB but the very same error.
    Initiating FILE DUMP mode...
             Database: SG3-DB.edb
            File Type: Database
       Format ulMagic: 0x89abcdef
       Engine ulMagic: 0x89abcdef
     Format ulVersion: 0x620,12
     Engine ulVersion: 0x620,12
    Created ulVersion: 0x620,12
         DB Signature: Create time:06/07/2011 00:22:54 Rand:482525 Computer:
             cbDbPage: 8192
               dbtime: 3942751903 (0xeb019e9f)
                State: Clean Shutdown
         Log Required: 0-0 (0x0-0x0)
        Log Committed: 0-0 (0x0-0x0)
       Streaming File: No
             Shadowed: Yes
           Last Objid: 877765
         Scrub Dbtime: 0 (0x0)
           Scrub Date: 00/00/1900 00:00:00
    Please help us on how to clear this error and mount the database.

  • Error accessing file template file not found (error code 2)

    We have 3 admins that work on the website so we use the Check In/ Check Out feature of DW. We all have DW CS6.
    When I update the template I have no problem (I work on a mac). However, if one of the other admins (Windows) tries he gets the following message: Error accessing file template file "C:\filepath\filename.dwt": file not found (error code 2).
    I looked at this thread: Re: Dreamweaver Template not updating pages error code 2? but the only solution offered there is to change the template tag from <!-- InstanceBegin... to <!-- TemplateBegin... If this is the solution, how do you do this?
    When I go to the url of the template http://www.christophorushouse.com.au/Templates/chrv-main-template.dwt it says it's been (re)moved or renamed, but then I have a feeling you can't view/access a template this way. All pages of the website feed of this template.
    Any help would be appreciated.
    Thanks

    We have 3 admins that work on the website so we use the Check In/ Check Out feature of DW. We all have DW CS6.
    When I update the template I have no problem (I work on a mac). However, if one of the other admins (Windows) tries he gets the following message: Error accessing file template file "C:\filepath\filename.dwt": file not found (error code 2).
    I looked at this thread: Re: Dreamweaver Template not updating pages error code 2? but the only solution offered there is to change the template tag from <!-- InstanceBegin... to <!-- TemplateBegin... If this is the solution, how do you do this?
    When I go to the url of the template http://www.christophorushouse.com.au/Templates/chrv-main-template.dwt it says it's been (re)moved or renamed, but then I have a feeling you can't view/access a template this way. All pages of the website feed of this template.
    Any help would be appreciated.
    Thanks

Maybe you are looking for

  • CRM 5.0 Transaction BP - Display in BP Role

    Hi Gurus When using Transaction BP we want to have our Consumer BP Role to display as the default. Currently as per SAP Standard the role is Business Partner (Gen.) Is it possible to change this and if so how. Maximum points for a speedy answer. Many

  • Question about NTFS Permissions (Read Permissions)

    Hello All, I hope somebody can help me. I am wondering about the ACL Atribute "Read Permissions" Lets say I created a shre named "Share1"  were "User1" has read Access. I created a Folder named "Folder1" in share. In the NTFS Permssions I specified t

  • My ical calender does not send email alerts anymore, now what?

    The alerts are configured correctly, if I look at the alert it says that an email will be send (for ex. 09.00 the day before). However when the moment comes, the email does not. Can anyone help me with this one. This is the case since the upgrade to

  • HT201250 I use time machine and I can't get a certain backup to allow restore

    My MBPro stopped booting up. I got it up and running again after reinstalling everything(OSX and all). I am now running Mountain Lion, could this be causing problems seeing all the non Mountain Lion era backups. I can only restore those dates now, no

  • Copying text from word to mail???

    Single space will show up as double space?? /trying to copy a single space document in word and paste into mail, it will show up double spaced, Can spacing be adjusted in the Mail????