Strange error code returned!!!

I have a bdb ,version 4.7.25 ,when i put lots of records (above 20,000,000) in it,each record is not bigger than 512 bytes,
when i start my db,first i use DB_MPOOLFILE to read it,it's about 20401665 pages,then i use cursor to read detail records
from this db,after 1,000,000 records was read,it complains about,DB_PAGE_NOTFOUND,but now the db_strerror returns SuccessFul!!!
how can this happen???
another question
in this big db ,sometimes(not so often) ,when i use dbp->exists to check weather a record was exists in my db,
it will return 34548 to me ,and db_strerror returns Unknown error!

For information, we are using the batch file under EAS console directory of Essbase:
\Hyperion\products\Essbase\eas\console\bin\CmdLnLauncher.bat
@echo off
set CPATH=..\lib\CmdLnLauncher.jar
set CPATH=%CPATH%;..\lib\easclientplugin.jar
set CPATH=%CPATH%;..\lib\log4j-1.2.8.jar
set CPATH=%CPATH%;..\lib\framework_common.jar
set CPATH=%CPATH%;..\lib\eas_common.jar
set CPATH=%CPATH%;..\lib\jaxp-api.jar
set CPATH=%CPATH%;..\lib\jdom.jar
set CPATH=%CPATH%;..\lib\dom.jar
set CPATH=%CPATH%;..\lib\xercesImpl.jar
java -DHBR_HOME=..\.. -cp %CPATH% com.hyperion.hbr.cmdlnlauncher.CmdLineLauncher %1 %2 %3 %4 %5 %6

Similar Messages

  • How to determine the error code, returned from LDAP server

    I use the next code for connect to LDAP server:
            try{
                ctx = new InitialLdapContext(env, null);
                 //if connection successfull ...
            } catch (NamingException){
                 //if error occured ...
            }Is it possible to determine the numeric error code, returned from server?

    I was just working on using openldap, binding to it and checking for expired passwords and locked accounts and it looks like that an AuthenticationException is thrown in these circumstances and the ctx is null so it is not possible process connection response controls. But you can look at operation attributes if you have password policy enabled and you are looking for these type of errors

  • Using a Table Trigger to Trap Error Codes Returned to a SQL Loader seeion

    I would be grateful if anyone knows how to go about this.
    I am trying to insert into a table, details of SQL Loader's rejected records by possibly using a trigger on the loading table to try and trap the error code returned to SQL Loader.
    What I am trying to achieve is to insert in to a table the load or rejected record details that are in SQL Loader’s log file after a load session. For example: records read:, records inserted:, records rejected:...etc..
    My main concern is that the loading table is regularly loaded, with 3m records, has 90 columns, and to check by referencing each column's new value, in the table trigger, may mean very long load times.
    Anyone got any “how to” ideas?
    Many thanks
    Regards
    Carlos

    Folks, thanks for your help.
    Previously, I had briefly considered both ideas and they would work.
    I dismissed the utl_file package solution because I believed that it would take too long to read in each log file line, search for the text and then inserts it into a table.
    I overlooked testing this and when I did (1mb file) it actually was pretty fast. I will go that route.
    Thanks for everyone’s help
    regards
    Carlos

  • RasClient:dialed a connection named "VPN Connection Name " which has failed. The error code returned on failure is 789 on windows 8.1

    Hello,
    i am trying to connect to my corporation VPN Server " ISA 2006" using windows 8.1 client built in VPN,  but its returned the following error:
     Event ID 20227: dialed a connection named "VPN connection Name" which has failed. The error code returned on failure is 789.
    VPN connection is working fine with windows XP and windows 7 with no issue , this error is only appear when try to connect to using windows 8 client machine.
    this error is shows only on windows 8.1 client , same procedures used to enroll the certificate from internal CA " IPsec Type" is followed .
    below are the  ISA server specifications:
    VPN Server : ISA 2006.
    windows Server version 2003. 
    appreciate your quick help and reply .
    Thanks

    Thanks for your reply.
    i would like to add another point for this case, that when we are trying to enroll a certificate from internal CA web enrollment directly using windows 8 " internet explorer 11"  , its install a certificate without Digital
    Signature and non-repudiation in key usage property, then when try to connect , its will give the above error 789 ..
    when try to enroll a certificate into windows 7 " internet explorer 10" and then export and import  this certificate into windows 8.1 machine "with the name of
    windows 8.1 machine" into windows 8.1 machine, the VPN is working normally and without issue.
    The properties of the Certificate are difference between windows 7 machine and windows 8 machine is key usage missing the Digital Signature and non-repudiation properties when enroll
    from windows  8.1 " internet explorer 11", this is in fact because of
    we don't have an option for key usage " both" when subment a certificate on web enrollment page from windows 8 machine ,, the only option available is exchange "
    no signature and both option available "
    i believe that there is something wrong when using windows 8.1 internet explorer 11 so its gave a certificate with wrong key usage property .
    appreciate your quick help in this .
    thanks

  • List of all HTTP error codes returned by EWS

    Hi everybody,
    I need all the HTTP error codes returned by Exchange when we use Exchange Web Services.
    Thanks & regards,
    Talib Hussain

    We don't have a document that lists every possible error. EWS runs through IIS on the CAS server, so theoretically you could receive any HTTP error that IIS can return.

  • How to access error description in a string from error code returned by NI-DAQ driver?

    I am tring to write codes to control NI-6703 for PCI using the NI-DAQ driver for C++.
    In the sample codes, it calls "NIDAQErrorHandler" to retrieve the error description and display in the pop-up message box. The method is included with header file "nideqex.h", and implemented w/ the nidex32.lib
    I would like to get the error description in a string rather than getting a message box. Is there a way to do that? Am I missig something here?
    I managed to find the "NIDAQEx.c" source code on the internet, but it seems like the code is outdated, and the library is NOT really compiled from it, since it does not seems to have a call to any method that will return th
    e error description in a string that got used to be displayed in the message box.
    Is there a method that I can call and pass a error code, which will return the error description in a string?

    There is a function documented in dataacq.h called GetNIDAQErrorString that accomplishes what you would like.
    Raecine Meza
    NI
    http://www.ni.com/ask

  • Error code returned if the business rules not executed

    Recently we found that some Hyperion business rules are not executed during the daily batch file but no error code was returned.
    Is there any method to force the return of error code so that we can check the batch result more easier?
    Thanks a lot!

    For information, we are using the batch file under EAS console directory of Essbase:
    \Hyperion\products\Essbase\eas\console\bin\CmdLnLauncher.bat
    @echo off
    set CPATH=..\lib\CmdLnLauncher.jar
    set CPATH=%CPATH%;..\lib\easclientplugin.jar
    set CPATH=%CPATH%;..\lib\log4j-1.2.8.jar
    set CPATH=%CPATH%;..\lib\framework_common.jar
    set CPATH=%CPATH%;..\lib\eas_common.jar
    set CPATH=%CPATH%;..\lib\jaxp-api.jar
    set CPATH=%CPATH%;..\lib\jdom.jar
    set CPATH=%CPATH%;..\lib\dom.jar
    set CPATH=%CPATH%;..\lib\xercesImpl.jar
    java -DHBR_HOME=..\.. -cp %CPATH% com.hyperion.hbr.cmdlnlauncher.CmdLineLauncher %1 %2 %3 %4 %5 %6

  • Capture error code returned by VB script from the OIM Remote Manager

    Hi All,
    I am trying to provision to Exchange using powershell and OIM remote Manager.
    RM is installed in the Exchange server and a VB script is called by the RM to perform the necessary provisioning operations.
    Certain error codes are configured in VB script according to the script execution.
    How can I get the return codes back to the RM and then to OIM adpater, so that I can publish appropriate error messages by writing them in the Adapter responses.
    Below is my current code, but it does not capture return codes.
    Can the variable 'i' get the return codes fron the VB script?
    if (fScriptFile.exists())
    String sCmd = scriptPath + " " + sUPN;
    log.debug("Firing Powershell command:" + sCmd);
    Process localProcess = localRuntime.exec("cscript.exe " + sCmd);
    log.debug("Script Executed ");
    int i = localProcess.waitFor();
    localProcess.getOutputStream().close();
    log.debug("Process Exit Value " + i);
    sResult = i == 0 ? "EXCHANGE.REMOTE_SCRIPT_RUN_FAILURE" : "EXCHANGE.REMOTE_SCRIPT_RUN_SUCCESS";
    Please help..
    Thanks and Regards.

    Your VB script must be calling a powershell script.Check if powershell script returns any error message to your vbscript.I

  • NI 6624 counter card give a strange error code

    I have a NI 6624 counter timer card which was counting pulses correctly in test mode.  I set the card up using the following commands shown below. (Please note that I am coding in Delphi, so the syntax shown below might not be 100% correct.)  However, I am 99% sure that the error is not caused by syntax).
      DAQmxCreateTask ('Ctr1', myHandle);
    DAQmxCreateCICountEdgesChan (myHandle,
                                 'Dev1/Ctr1',
                                 nil,
                                 DAQmx_Val_Edge1_Rising,
                                 0,
                                 DAQmx_Val_CountDirection1_CountUp);
      When I started using the card for counting gamma pulses rather than counting simulated pulses, I found that I needed to tune the filter.  I tried to set the filter to 100 nanoseconds by adding the following to my previous code:
      DAQmxSetCIFreqDigFltrEnable (myHandle,
                                 'Dev1/Ctr1',
                                 TRUE);
    DAQmxSetCIFreqDigFltrMinPulseWidth (myHandle,
                                        'Dev1/Ctr1', 1.0E-7);
      The first of these new commands returned the error code FFFCF0FC - “ErrorAttributeNotSupportedInTaskContext“.  The computer was programmed to abort if an error is received, so the second command was never executed.  These commands are not included in the DAQmx documentation supplied to me, even though they are included in the C++ interface.
      Can anybody tell me what this error code means and even better why it occurred? 
    Solved!
    Go to Solution.

    Hi MartinVI,
    Thank you for contacting National Instruments.   I have been looking at this error message. This is caused by trying to assign a property to a device that does not support it. In this case it is caused by trying to assign the CIFreq property to a CICountEdgesChan. You will need to use the 
    DAQmxSetCICountEdgesDigFltrEnable
    in order to set this property. When you installed DAQmx you should have a C Reference Help file which should detail many of the commands that you need to use. Generally, this is found at All Programs -> National Instruments ->  NI-DAQ ->DAQmx C Reference Help
    If there is no short cut, it should be located at C:\Program Files\National Instruments\NI-DAQ\docs
    I have also attached a copy of the help file to this post incase you haven't got it installed.
    Please let me know how you get on with this.
    Many thanks,
    Andrew McLennan
    Applications Engineer
    National Instruments
    Attachments:
    docs.zip ‏108 KB

  • How to catch error codes returned from java

    Hi all,
    Is there anyway to capture the exit code that is returned by System.exit() from java. I know a batch file's ERRORLEVEL can do this. However, I want to use c/cpp (JNI) to get this functionality. Please help ..
    Thanks in advance,
    Soujanya.R

    how could you expect me to use JAVA command without compiling it with Javac??
    I complied the java code using javac and then called(executed ) it using the Java..
    I am using JNI_Create/JavaVM() to create a JVM from CPP file. that works fine. Now, my issue is that I want to capture a couple of exit codes that are returned from the System.exit() of the java code.
    now, guys.. is there any way to capture that exit codes returning by Ssytem.exit() in or using JNI ??
    if yes, please help me with the code snippets.
    Thanks,
    Soujanya.R

  • Failed trying to get the state of the cluster node: Cluster Name .The error code returned: 0x80070005. Any help with this?

    Hi,
    We have BizTalk clustered envt in our prod setup. Two active nodes with MSDTC clustered envt.
    We have just gone live. I notice this error in error log from time to time? Is this a serious error?
    But the solutions seem to be working without any issues.
    Does anyone know what this indicates? Any help would be appreciated. Thanks
    Regards
    mythili

    Hi Shankycheil,
    Thanks for your reply. The BizTalk envt. here is set up by a consultantancy and really its a bit too late to change the settings now as its just gone live. As I said at this stage we only have one clustered host instance so we have one clustered DTC instance.
    For rest of the host instances which are running on both servers, they use the local DTC that is not clustered. The envt as of now is functioning well without any issues. Unless this error is a serious fault, I won't be changing the DTC settings. I want to
    know if this error is serious and will cause disruption to functioning of BizTalk, then I will try fixing it with some of the suggestions given here. Thanks
    Mythili

  • Portege R100 strange error code

    Hello,
    I closed my toshiba r100 and it does not want to boot up any more. When i turn it on, screen is blank, fan is turning with full speed, and the mains led flashes (on for 1 sec, off for 1 sec)... this code does not exists in the service manual which i managed to download... any suggestions?
    is the hard reset just holding the power button for say a minute without the battery and mains?
    Thanks for help!
    wooju

    i managed to find this:
    Blinks orange
    Cycle of 2 seconds
    "ON" 1 second, "OFF" 1 second
    means: BIOS is damaged
    Any ideas how to fix it?
    I tried to clear the CMOS by taking the batter out for about an hour.

  • Strange Error Codes

    I recently upgraded my iMac to Snow Leopard (not sure if this has anything to do with it), but since then I cannot work on my websites. When I open the index page, I get this message:
    The following translators were not loaded due to errors:
    PHP_MySQL.htm: has configuration information that is invalid.
    And when I try to insert an image, I get this message:
    While executing objectTagf in Image.htm, a Javascript error occurred.
    I haven't changed anything on my site. This just started happening overnight. Thanks for any ideas.

    Hello
    Have you recreated the site definition  ?
    Check the following on solution :
    Rename the configuration folder to configurationOLD
    Library/application support/adobe/dreamweaver cs5/en_us/configuration
    regards
    Tej

  • Strange error code

    NSInvalidArgumentException
    * -[NSTrackingArea representedObject]: unrecognized selector sent to instance 0x4a978160
    I get this message a lot, can I do something to prevent it?
    Cheers,
    Mike

    Here's mine... NSInvalidArgumentException
    * -[AudioSource model]: selector not recognized [self = 0x16158070]
    It opens a window that says OK or QUIT. If you click OK the message just loops until you say QUIT.
    If you were playing the project and it occurs (auditioning an effect or loop on the fly) SP will allow you to save the project before it quits.
    THIS IS ANNOYING, especially when a client is in the room! I have ended up using ProTools to finish projects in the last few days.... Not GOOD.
    It happens on my G5 when I try to audition an audio clip either from the search or browse window. I can work at startup for usually 10 to 20 edits, then once it starts, I have to shut down. It is actually occurring more often.

  • A fatal error when attempting to access the SSL server credential private key. Error code 0x8009030d. Windows 8.1.

    Hi,
    We develop a server-side application which receives incoming https connections using self-signed certificate. It was all ok while we were using Windows 7 or Windows 2008 as OS, but when our clients started installing Windows 8 as server OS they encountered
    big problem: application got unavailable in few hours after start. 
    In event logs we have following:
    A fatal error occurred when attempting to access the SSL server credential private key. The error code returned from the cryptographic module is 0x8009030d. The internal error state is 10001.
    After restart, application recreates certificate and all works normal few hours till next fatal error.
    This
    article did not help us. And I repeat that this error appears only on Windows 8 (we tested on Windows 8.1). Windows 2012 Server we did not test yet.
    How we can solve this problem?
    Best regards.

    Hi,
    Since this article released in 2008,I suspect the code mentioned in this article doesn't  supprot Windows 8.
    And since the certificate was written by C#,I suggest you submit a new case on MSDN Forum as they will be more professional on your issue:
    https://social.msdn.microsoft.com/Forums/en-US/home
    Regards,
    Kelvin hsu
    TechNet Community Support

Maybe you are looking for