Data base error SQL8001N

hi experts
I am getting an error during the creation of any master data's like XD01, XK01 etc and Migo level
the error is as below
Runtime Errors         DBIF_RSQL_SQL_ERROR
Exception              CX_SY_OPEN_SQL_DB
Database error text........: "SQL8001N An attempt to connect to the database
failed due to a product licence problem. SQLSTATE=42968"
Internal call code.........: "[RSQL/DELE/PAKDATBUF ]"
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:
what should be done.
Regards,
Sudhir

Hello Sudhir,
Always try to search according to SQLxxxxN code or SQLSTATE code, you will get more and clear understanding of the cause of the error and the resolution direction as well.
For e.g. for SQLSTATE=42968, you will find below IBM link. If you are on regular support for 'SAP on DB6' then you can include this practice as a regular habit. So as Hans said, please go ahead to verify the license using database user or ask your sap admin/dba team to verify it.
http://publib.boulder.ibm.com/infocenter/db2luw/v8/index.jsp?topic=/com.ibm.db2.udb.doc/core/rsql8000.htm
Thanks

Similar Messages

  • Window pops up saying can not complete request data base error, disk is full

    Window pops up saying can not complete request data base error, disk is full

    I am using the latest ID version with update and I am using a Mac running 10.9.5. This all started when I tried to make a PDF file from a pub I was working on. The application made the file but went into a spinning beach ball and I had to force quit. Now the window pops up when I open ID and also when I am working on a documents.

  • Data Base Error

    Hi,
    I have a report with Date prompt like
    Start Date : 01/07/2013
    End Date:01/12/2013
    I am enter small intervals like 6 months the report is working fine.
    But more than one year like
    Start Date : 01/07/2013
    End Date:01/12/2014
    its giving Data base error
    . Please give any solution for this
    Thanking You Advance
    Regards,
    G

    Bhargav,
    I had a similar problem, what I did to really find outt what was happening is.
    Enable trace on your Desktop Rich Client, that way you will be able to capture the MDX code genarated by you report.
    Copy that MDX go to your BW and test it on MDXTEST transaction, there you should get a more detailed explanation of the error.
    To fix it we had to apply a bunch of MDX notes on our BW, i tried the find the notes here, but no success.. sorry.
    Talk to your basis once you find the root cause.
    Best
    Leandro

  • Applet and data base error.    java.security.AccessControlException:

    Hi All
    I am new to java.
    I am trying to access data base SQL 7.0 thru an applet but its giving an error "java.security.AccessControlException:"
    Can any one help me plz!!!!
    Thx in advance
    Vipin

    Is a Applet Application so, u have to sign the application using jarsigner tool
    visit :
    http://java.sun.com/j2se/1.3/docs/tooldocs/win32/jarsigner.html
    http://java.sun.com/j2se/1.3/docs/tooldocs/win32/keytool.html
    If NOT/before
    Create a file name called ".java.policy" and placed/saved it in user home directory.
    All the best
    Edward.I

  • How to solve that error in primavera p6 version 8.4 installation???????upgarding Data Base((missing permissions: DBMS_REPUTIL. Run the manual script first -- manual_script_before_upgrade.sql)

    please advice how to solve that problem (in steps):
    after completing p6 installation and during upgrading the old Data Base from p6 v8.3 to P6 v8.4 I'm facing that error
    ((missing permissions: DBMS_REPUTIL. Run the manual script first --> manual_script_before_upgrade.sql)

    for more help this image is much helpful
    1. Open cmd prompt >> Type sqlplus / as sysdba; >> connect sys/oracle@XE as sysdba;
    2. Type @ <path>\manual_script_before_install.sql
    thanks for      Pablo Oyarzo - Oracle    for his help as the above answer related to him

  • Entourage error message 4362 - damaged data base - cannot back up , compact

    I've been using 10.5.8 on my G5 for 2 yrs NO problems - THEN - error message 4362 starts to appear as Entourage (2004 Office) gets close to 1.5G bytes. Disk utility can run and verify YES there is a damage in data base.
    BUT the rebuild option will NOT last more than 30secs before I/O error.
    I have tried to open Entourage with option key down and I have thrown out any email older than 1yr.
    Next move is to re-install Entourage - and import folders - unless some one has a better idea/solution. Please -- Ray

    Hi Ray,
    http://www.entourage.mvps.org/error/number.html#error4362
    See if the above helps before you remove and then re-install MS Office.
    Da Vinci

  • Error while fetching data from Logical data base

    Hi All,
    I need to fetch the data from Logical data base DDF.First when i am trying demo code
    REPORT demo_program_read_tables_2.
    NODES: spfli, sflight.
    GET spfli FIELDS carrid connid cityfrom cityto.
      WRITE: / spfli-carrid,
               spfli-connid,
               spfli-cityfrom,
               spfli-cityto.
    GET sflight FIELDS fldate.
      WRITE: / sflight-fldate.
    I am getting error like ""spfli is not a node of the logical data base __S""
    Should i declare anything esle?
    Madhu

    REPORT demo_logical_database.
    DATA wa_spfli TYPE spfli.
    SELECT-OPTIONS s_carr FOR wa_spfli-carrid.
    DATA: callback TYPE TABLE OF ldbcb,
          callback_wa LIKE LINE OF callback.
    DATA: seltab TYPE TABLE OF rsparams,
          seltab_wa LIKE LINE OF seltab.
    callback_wa-ldbnode     = 'SPFLI'.
    callback_wa-get         = 'X'.
    callback_wa-get_late    = 'X'.
    callback_wa-cb_prog     = sy-repid.
    callback_wa-cb_form     = 'CALLBACK_SPFLI'.
    APPEND callback_wa TO callback.
    CLEAR callback_wa.
    callback_wa-ldbnode     = 'SFLIGHT'.
    callback_wa-get         = 'X'.
    callback_wa-cb_prog     = sy-repid.
    callback_wa-cb_form     = 'CALLBACK_SFLIGHT'.
    APPEND callback_wa TO callback.
    seltab_wa-kind = 'S'.
    seltab_wa-selname = 'CARRID'.
    LOOP AT s_carr.
      MOVE-CORRESPONDING s_carr TO seltab_wa.
      APPEND seltab_wa TO seltab.
    ENDLOOP.
    CALL FUNCTION 'LDB_PROCESS'
         EXPORTING
              ldbname                     = 'F1S'
              variant                     = ' '
         TABLES
              callback                    = callback
              selections                  = seltab
         EXCEPTIONS
              ldb_not_reentrant           = 1
              ldb_incorrect               = 2
              ldb_already_running         = 3
              ldb_error                   = 4
              ldb_selections_error        = 5
              ldb_selections_not_accepted = 6
              variant_not_existent        = 7
              variant_obsolete            = 8
              variant_error               = 9
              free_selections_error       = 10
              callback_no_event           = 11
              callback_node_duplicate     = 12
              OTHERS                      = 13.
    IF sy-subrc <> 0.
      WRITE: 'Exception with SY-SUBRC', sy-subrc.
    ENDIF.
    FORM callback_spfli USING name  TYPE ldbn-ldbnode
                              wa    TYPE spfli
                              evt   TYPE c
                              check TYPE c.
      CASE evt.
        WHEN 'G'.
          WRITE: / wa-carrid, wa-connid, wa-cityfrom, wa-cityto.
          ULINE.
        WHEN 'L'.
          ULINE.
      ENDCASE.
    ENDFORM.
    FORM callback_sflight USING name  TYPE ldbn-ldbnode
                                wa    TYPE sflight
                                evt   TYPE c
                                check TYPE c.
      WRITE: / wa-fldate, wa-seatsocc, wa-seatsmax.
    ENDFORM.

  • Flash Builder Premium (update data base method error)

    Hi,
    I've run into this error with Flash Premium when updating a data base. Evidently there is a glich in the auto generated code. I explain it in the second half of the video below. If you want the code you can download it from kshunter.wordpress.com 
    I also discuss the work around solution.

    Hello everyone -
    Since I last posted an interesting update happened. I tested my  Flex application again, it is calling a Jetty Server that returns a JSON object, in different BROWSERS.  I disabled HTTPS for now, and the crossdomain.xml policy file is wide open for testing (ie. allowing every request to return data). So the app accessing the data using HTTP only. Browsers  -  IE, Opera, Firefox and Chrome. Each browser contained the SAME application, revision of the Flash Player (10.3.183.10 debugger for firefox, chrome, opera, safari PC; 11.0.1.129 consumer version in IE9,) take a look at the screen shot (safari not shown although the result was the same as IE and chrome)
    Note that Opera and Firefox returned successful values (i.e. successful JSON objects) using the same code generated from the Data Services Wizard. Chrome, IE and, Safari failed with an Internal error. So I am left wondering - WHY? Is it something with the Flash Player? the Browsers?  the Flex SDK? Any thoughts are appreciated. Again, the code is found in the original thread above.

  • Error while adjusting data base

    Hi All,
    while adjusting data base in SE14 i got an error in converting QCM8TAB to TAB so i unlock the table and continue. Actually in this process QCM8TAB is a temporary table its need to be deleted after adjusting. but because of the process was not completed QCM8TAB was not deleted.how to delete QCM8TAB.
    Thanks,
    Ananth

    Have u deleted the records in the table and then tried to delete the table from SE11? I think after u delete the records u can also delete the table from SE14.. Try it..
    Hope it may helps.
    Please reward if it helps.
    Thanks in advance,
    Phani

  • Error opening data base for the library for Aperture

    Hello,
    I have been using Aperture all day and for some reason am now getting this error message when trying to open it again.
    Te was an error opening the data base for the library "users/*******/pictures/aperture3triallibrary.aplibrary
    Has this happened for anyone else?
    Many Thanks

    When I hold down ⌘⌥ firmly, at the same time, and with these keys held down double click the Aperture library that I want to repair, I get this panel:
    Then, when I select "Repair"  Aperture will show a progress bar and the Dock icon will stay highlighted.
    When it is finished, the Aperture window will open.
    When I select repair, it seems as though it doesn't run. I don't get a dialog box to confirm it's happening and on the dock the little light under the Aperture icon isn't lit, which seems it is'nt open or running.
    After you select "Repair", does the panel close and then nothing? Or does the panel not react?
    I still don't see fully, what is going on on your mac.
    But it is a good sign, that you can create a new library. That suggests, that Aperture is running correctly on your mac, and "only" your old library has a problem. Try to test the new library - import a few images and try to adjust them.
    Once you are convinced, that the new library is working well, you have three options.
    Try "Rebuild" instead of "Repair".
    Or try to import your old library into the new library (Aperture's main menu bar > File >Import > Library) - that is another approach to rebuilsd the library.
    Or restore from backup. To restore from Time Machine, open a Finder Window showing your Aperture library, and then enter Time Machine. Go back in time to the most recent date that has a working Aperture library and select "Restore". If you have enough space on your disk, restore to a different folder and don't overwrite your current library.
    Regards
    Léonie

  • Can't open aperture 3,  warning box comes up," warning there was an error opening the data base for the library /pictures/aperture library .aplibrary  Whats up?

    I have had Aperture 3 loaded on my computer for a while now. Never had any problems till tonight. Restarted my computer and went to open Aperture and a "warning" box poped up, There was an error opening the data base for the library /picture/aperture library ap library.   Then a "quit" button.
    What is going on and how can I open my aperture. I have pictures that need worked for clients.  Help!

    Have you run through the steps in Aperture 3: Troubleshooting Basics. If not that's always a good place to start.
    If that doesn;t resolve the problem when you post back describe your hardware and software setup.
    good luck

  • Library Update rqstd on Aperture 3.2; now won't open get msg "error opening data base for the library "~/Pictures/Aperture Library.aplibrary"   TIme machine won't load backup "error code -8003"

    Aperture working on OS 10.6.8 then Library Update rqstd on Aperture 3.2; said yes;
    now Aperture won't open,  get msg "error opening data base for the library "~/Pictures/Aperture Library.aplibrary"  
    TIme machine won't load backup "error code -8003"
    Tried reloading Aperture 3.2 but get same result.

    You’re running an outdated copy of Safari on your Desktop. That won’t work.
    In the Finder, select
    Go ▹ Applications
    from the menu bar, or press the key combination shift-command-A to open the Applications folder. Check that the Safari application is in that folder. If it is, use it, and delete the copy on your Desktop. Never move or copy built-in applications.
    If you've deleted Safari from the Applications folder, back up all data, then reinstall OS X. If your Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade, so make a note of those before you begin.

  • Error to Access Data Base on SAP Netweaver 6.40 Sneak Preview SP14

    Hi guys,
    If someone could help me I'd be very grateful!
    I've installed the NW 6.40 Sneak preview SP 19 and it's working well, however I tried to access the Data Base by MaxDB. So I provided the configuration data, such as:
    Server: myServer like 192.168.0.12
    DataBase: J2E
    User: SAPJ2EDB
    Password: myPassword
    but when I try to connect on it, the system does not allow and display me the following message:
    24950 user authorization failed,
    I tryed to use the user Custom but it also didn't work! the system display me the following message:
    Invalid Session ID!
    PS: When I try to access my ConfigTool to change the SAPJ2EDB password the ConfigTool doesn't open and display me this message:
    Error occurred while working with Configuration (Scanning).
    Msg: Error while connecting to DB.
    In my opinion I suppose that I need to apply some note. What do u think about that? I suppose it coz I've installed the WAS and I didn't do anything more!
    beforehand, thanks for help!
    Cheers!
    Eduardo

    Hello Eduardo,
    1. Could you please check if you could connect to the database using dbmcli tool:
    Login as j2eadm user, run the following commands & update with outputs:
    dbmcli db_enum
    dbmcli u2013d J2E u2013u control,<pwd> db_state
    dbmcli u2013d J2E u2013u control,<pwd> user_getall
    2. What ist he database version?
    Thank you and best regards, Natalia Khlopina

  • Error when saving data basis

    Dear Eugene
    I am on an implementation project. I copied 0BCS_C11 cube and modified the characteristics to my requirements the data stream generation is successful but when i save the data basis the system gives me the following error.
    Role Document Type is not yet allocated in data basis SB
    Role Period is not yet allocated in data basis SB
    Role Fiscal Year is not yet allocated in data basis SB
    Role Group Currency is not yet allocated in data basis SB
    Role Value in Group Crcy is not yet allocated in data basis SB
    Role Item is not yet allocated in data basis SB
    Role Partner Unit is not yet allocated in data basis SB
    Role Consolidation Group is not yet allocated in data basis SB
    Role Consolidation Unit is not yet allocated in data basis SB
    Role Version is not yet allocated in data basis SB
    I have assigned the roles to the characteristics. But still the error persists. Can i you please guide me.
    Thanks and Regards
    Maneesh Dhingra.

    Try using an alias for the column like this statement:
    select code as CODE from lm_code
    Thanks,
    Bipuser

  • Error on data base insert

    hello mike,       
                           i am getting error  when i insert the data in to sql data base, check my code, last day i was using the same method it was workking well, now i am getting problem ... please find this attachment.
    Regards,
    Balaji DP
    Attachments:
    db1.JPG ‏63 KB
    insert.vi ‏30 KB

    It looks like your database reference is invalid; check your UDL file.
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice

Maybe you are looking for

  • GarageBand: Error while trying to synchronize Audio and MIDI.

    This error recently started popping up for me while using garageband. GarageBand: Error while trying to synchronize Audio and Midi Sample rate xxxxxx recognized Check conflict between garageband and external device When I use garageband, my input and

  • Problems importing my classes

    Greetings! I am new to JSP and Struts. I need to use some of the classes I created in one of my JSP pages so I placed an import statement specifying the classes which I need. The problem is that each time I tried to view the page, I see this exceptio

  • Exporting WMF's to Microsoft Word and preserving anchors toggles

    I'm creating artwork (lineart) in Illustrator CS3, and would like to place the art into a Microsoft Word 2003 text document and when completed with the project save the word document as a pdf. So that in the end we can open the pdf and be able to edi

  • "own checkboxes" in Web with Table Interface?????????u00DF

    Hi to all experts, i have the following scenario: I am using a query in web. Well in the lines there is a characteristic (for example sales org) and in the columns a keyfigure with an exception and a top10 condition. I think exception and condition a

  • How to configure GB P60s in the SAP Portal?

    How to configure GB P60s in the SAP Portal, so that they can be viewed and printed/reprinted by the employee themeselves? Will HMRC accept P60s printed on any stationeries? Also, Client does not want employee address to be available in the address se