New configuration

I have installed Berkeley DB 11gR2 5.1.25 on Windows XP pro.
I did download db-5.1.25, from Oracle and installed.
I do not know where to start and how to create a database, is there any oracle based example for the configuration BD.
Do I need Visual studio in order to use Berkeley database.
Any help would be greatly appreciated.
Thanks,
glad

Hi Gladson,
Did you install Berkeley DB with the msi Windows installer?
In that case by default the BDB libraries will be located
under Berkeley_DB_11gR2_5.1.25\lib.
If you are using the BDB SQL Interface then you can use
the command line utility dbsql.exe which is automatically built
and installed in the Berkeley_DB_11gR2_5.1.25\bin
directory. Just make sure that this directory is in your
path or provide the full path to dbsql.exe. In this
case Visual Studio is not necessary. Use dbsql.exe directly.
In you want to make use one of the other APIs, C, C++ for
example, then you will need Visual Studio or some other
mechanism to to compile/build your application. There is a
set of sample programs provided with the distributions under the
<BDB_HOME>\examples directory. Project files for running the
sample programs can be found under the <BDB_HOME>\build_windows.
If this does not answer your question, please let me know.
Thanks,
Sandra
Edited by: Oracle, Sandra Whitman on Mar 2, 2011 9:09 PM

Similar Messages

  • Real time Procedure for new configuration

    In real time what is the procedure for new configuration like new payment term. I want procedure in real time
    . thanks , Sravas   ...

    Hello,
       As long as your S2000 has an USB ADD, you will be able to use it with OmniDriver-SPAM.  The HR2000 will work fine.
      Here are two good videotutorials that will show you how to use OmniDriver-SPAM with its LabView dll to acquire spectra:
    http://spectroscopytv.com/2009/02/02/omnidriver-la​bview-part-1/
    http://spectroscopytv.com/2009/02/02/omnidriver-la​bview-part-2/
      Hope this helps,
    R

  • New Configuration Editor

    Hi,
    Just wanted to know is the new configuration editor is available in Netweaver 7.0. We are currently on basis SP 16.
    For SAP delivered demo configurations we can see the data just like the configuration editor as explained in Mentor hands on session excercises. For new configuration of custom development we still get the old editor.
    Is this a bug or new editor is not supported in 7.0
    Regards
    Rohit Chowdhary

    Hi,
    the new config editor (for component configuration) was introduced with 7.0 SP14.
    You could check the parameters of CONFIGURE_COMPONENT_OLD, if there's the parameter for the old configurator on X, then the old editor is shown.
    Regards, Heidi

  • Getting Java error While click on Test model for New configuration.

    From ” Configurator Administrator responsibility” we use the below link and getting Java Error:
    Log in -> Configurator Administrator responsibility -> Configurator Developer -> Simple Search -> Item Name: r100s -> Click Edit -> Click Test Model -> select Start New Configuration -> Click Next -> select Model UI -> Click Finish -> get java.lang.NullPointerException.
    If any body have encountered the same error , Please let me know the solution.
    Regards,

    Below is the Error:
    [Dec 1, 2009 9:48:51 AM GMT+00:00]:1259660931381:Thread[Thread-127,10,main]:1467:85913090:essapdu31z1.emrsn.com:10.236.93.46:27619:27620:EXCEPTION:[cz.servic
    e.ConfiguratorServiceLocal.From processMessage()]:[null_3a1685d_2 # 31] null
    java.lang.NullPointerException
    at oracle.apps.cz.service.ConfiguratorService.fetchModeldata(ConfiguratorService.java:1708)
    at oracle.apps.cz.service.ConfiguratorService.processMessage(ConfiguratorService.java:447)
    at oracle.apps.cz.service.ConfiguratorServiceLocal.onMessage(ConfiguratorServiceLocal.java:18)
    at oracle.apps.cz.runtime.PageController.postServiceMessage(PageController.java:535)
    at oracle.apps.cz.runtime.PageController.fetchModelData(PageController.java:707)
    at oracle.apps.cz.runtime.oa.server.CZApplicationModuleImpl.submitDataRequest(CZApplicationModuleImpl.java:954)
    at oracle.apps.cz.runtime.oa.webui.AbstractMainPageController.getModelData(AbstractMainPageController.java:547)
    at oracle.apps.cz.runtime.oa.webui.AbstractMainPageController.loadPageStructure(AbstractMainPageController.java:2313)
    at oracle.apps.cz.runtime.oa.webui.MainPageController.processRequest(MainPageController.java:65)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:587)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1136)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:959)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:926)
    Regards

  • VC : Update Equipment with new configuration number

    Hi,
    I am trying to update an existing equipment with a new configuration number (cuobj).
    I used try to use 'BAPI_EQUI_CHANGE' to achieve this but apparently they didn't work even though i've received no exceptions. (no luck either with EQUIPMENT_MODIFY)
    For 'BAPI_EQUI_CHANGE'  i used following code :
    data : v_equipment like BAPI_ITOB_PARMS-EQUIPMENT,
              v_datageneral like BAPI_ITOB,
              v_datageneralx like BAPI_ITOBX,
              v_dataspec like BAPI_ITOB_EQ_ONLY,
              v_dataspecx type BAPI_ITOB_EQ_ONLYX,
              return type BAPIRET2.
    CALL FUNCTION 'BAPI_EQUI_GETDETAIL'
    EXPORTING
      EQUIPMENT = v_equipment
    IMPORTING
    DATA_GENERAL_EXP = v_datageneral
       DATA_SPECIFIC_EXP = v_dataspec
    return = return.
    IF return is initial.
    v_dataspec-READ_CUOBJ = newcuobj.
    v_dataspecx-READ_CUOBJ = 'X'.
      CALL FUNCTION 'BAPI_EQUI_CHANGE'
      EXPORTING
        EQUIPMENT = v_equipment
        DATA_GENERAL = v_datageneral
        DATA_GENERALX = v_datageneralx
        DATA_SPECIFIC = v_dataspec
        DATA_SPECIFICX = v_dataspecx
      IMPORTING
        RETURN = return.
    IF return is initial.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    ENDIF.
    ENDIF.
    thanks for your help.

    Hi,
    Please try this FM EQUIPMENT_UPDATE.
    Check program RISTEQ01 for sample code on how to use above FM.
    Regards,
    Ferry Lianto

  • "Access denied. Login again" when creating New Configuration in Object Edit

    Hi all,
    I am trying to complete ]<a href="http://help.sap.com/saphelp_nw70/helpdata/en/43/8d77556536267fe10000000a1553f7/content.htm">My First Composite Application</a> but got stuck at the step <a href="http://help.sap.com/saphelp_nw70/helpdata/en/43/95c95b9fc32293e10000000a1553f6/content.htm">Configuring the Object Editor User Interface</a>. When I try to create a new configuration, I get the error message "Access denied. Login again", but I have no idea where to change to overcome this.
    Please advise me, if you have any idea.
    Thanks,
    Masa

    It was due to missing user role.

  • [svn:bz-trunk] 9522: Add new configuration options to cluster defined in qa-regress.

    Revision: 9522
    Author:   [email protected]
    Date:     2009-08-24 10:37:30 -0700 (Mon, 24 Aug 2009)
    Log Message:
    Add new configuration options to cluster defined in qa-regress. These options were added in checkin 9201 and expose JGroups channel configuration settings that weren't configurable previously.
    Modified Paths:
        blazeds/trunk/qa/apps/qa-regress/WEB-INF/flex/services-config.mods.xml

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Problem to compile new configuration with imsimta

    After I patched 116568-53, iit was impossible to compile new configuration with "imsimta chbuild". The response is:
    13:57:09.20: Internal error in cl_init -- cannot open command definition file IMTA_BIN:pmdf.cld
    Any one know how to solve this problem?
    Thanks in advance.

    I checked the file as you suggested and i didn't find any tcp_lmtpss-daemon channel so i inserted the following lines:
    [CHANNEL=tcp_lmtpss*]
    master_command=IMTA_BIN:tcp_lmtp_server
    [CHANNEL=tcp_lmtpsn*]
    master_command=IMTA_BIN:tcp_lmtpn_server
    but i obtained the same errors.
    what's wrong? (i am new to sun one messaging server)
    thanks

  • Add new configuration item in the List Settings

    All,
    I would like to add a new item "configuration" in the list settings. For example, the list settings already have following items
    List name, description and navigation
    Versioning settings
    Advanced settings
    Validation settings
    Audience targeting settings
    Rating settings
    I would like to add a new one and do coding on it
    Thanks ^_^

    Hi Andy,
    Thanks for posting your query, Kindly browse the below mentioned URLs to add custom properties in List/library settings step by step
    http://sp2013.blogspot.in/2013/01/sharepoint-2013-list-custom-form.html
    http://www.enjoysharepoint.com/Articles/Details/create-custom-list-property-in-sharepoint-list-settings-10536.aspx
    http://www.c-sharpcorner.com/UploadFile/sagarp/create-custom-list-property-in-sharepoint-list-setting/
    http://johanolivier.blogspot.in/2010/07/custom-settings-for-sharepoint-list-or.html
    http://www.dotnetspark.com/kb/5657-create-custom-list-property-sharepoint-list.aspx
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • New configurable position in sales order

    My greetings!!!!))))
    This is a question, how can I create a new additional position in sales order by copying already existent configurable position with inheriting all characteristics values, source document number and e.t.c.?

    hai justin,
    check the variant condition type VA00, in your pricing procedure.
    if you maintained VA00 condition type in in pricing procedure, it will pick the particular configurable material price, according to the charectrestics You maintained.
    In Transaction code: v/06, you can see all the condition types.  If you are not finding conditon types when you are creating sales order, those condition types are not maintained in your pricing procedure.
    hope this will help you
    srinivas

  • Why Solaris 10 could not remember my new configured IP?

    Hello, All,
    My problem/question is that:
    Solaris 10 on T2000 server seems not remembering IP configuration,
    I searched the past posts, there are some topics related, but after all that
    suggestions/solutions I've tried, it still doesn't work.
    What I wanted to do:
    1. Add a logic IP address on ipge0,
    e.x.
    ifconfig ipge0:1 plumb 10.1.200.69 netmask 255.255.0.0 up
    check with ifconfig -a
    it is up running
    2. Add a new NIC,
    e.x.
    ifconfig ipge3 plumb 192.168.1.11 netmask 255.255.255.0 up
    After reboot, it is back to all the original configuration which ipge0 only has original address,
    and No ipge3 configuration AT ALL!
    BTW. I have configured /etc/inet/ipnodes files
    /etc/inet/hosts
    /etc/nsswitch.conf
    /etc/netmasks
    /etc/resolv.conf
    Please suggest what i missed here?
    Thanks
    ---wangk

    Hi, Paul,
    Thanks for the reply, yes, I did create those files, and you are right, I missed "hostname.ipge3" file
    hostname.ipge0:1
    hostname.ipge3
    defaultrouter
    Now, some how, the virtual NIC ipge0:1 always gets the wrong Netmask, and BOTH ipge0:1 and ipge3 have to be manually brought up after reboot, here is a copy/paste after system reboot, you can see a different Netmask and "No up" status, please ANY Idea?
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    ipge0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 10.1.200.68 netmask ffff0000 broadcast 10.1.255.255
    ether 0:14:4f:7e:4e:d0
    ipge0:1: flags=1000842<BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 10.1.200.69 netmask ff000000 broadcast 10.255.255.255
    ipge3: flags=1000842<BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
    inet 192.168.1.11 netmask ffffff00 broadcast 192.168.1.255
    ether 0:14:4f:7e:4e:d3
    Thanks alot
    ----wangk

  • Google News Configuration

    Hi,
    On HOME work center, we have dashboard for latest news which provide the top stories from google news.
    I need to know, how we can control the news like category, source, display, etc.
    Kindly let me know if there any configuration available to personalize it.
    Thanks in advance
    Govind Sharma

    Hi Govind,
    if you are using HTML client then this link will be helpful http://www.youtube.com/watch?v=JFj4aUkWAtI
    In Silverlight client you can personalise the screen, you can add other RSS feed from different sources.
    give a try and let me know if it helps.
    Regard
    Sunil

  • New Configurations on MBP C2D!!!! (ironic)

    MBP 15" somtimes at 2,33ghz
    MBP 15" sometimes at 2,16ghz
    MBP 17" Sometmes at 2,33ghz
    YES!, this are the new pro laptops configurations
    We know all the problems MBP CD had, we thought it will be fixed in C2D after using people as laboratory rats in first generation. Well, C2D is here, and problems too, all computer trademarks have problems, but apple is always telling us they are the best, but now, they have same configuration of normal pc´s and less Please, all users of MBP, C2D and CD, plug your computer, install coreduotemp, quit the battery, look the processor speed, you will see it at 1ghz. And with battery, notice the continously speed variation, normal in some energy configurations and in some temperatures, but not always.
    Of course, we continue with noise problems and eEtcetera

    That behavior is normal. Intel's chips use a technology called (I believe) "SpeedStep", which dynamically adjusts the processor speed as is needed. This improves battery life and has no impact on performance.
    With respect to quitting the battery, I assume you mean to remove it... This will, in fact, freeze the processors at a max of 1GHz, which is a safety feature.
    A quick review of these forums would have revealed that, btw.
    Thanks for trolling, though!

  • Getting the following error while creating a new configuration

    Hi team,
    I am trying to create configuration of my web dynpro application. When
    I right click on my application and choose create/change configuration,
    browser started. Now when I give a name ( e.g zabc) to it and choose the
    function create, the following error occurs... Can you please give me
    suggestion to overcome it
    Error when processing your request
    What has happened?
    The URL https://gsdcb261.in.ibm.com:8443/sap/bc/webdynpro/sap/zims_issue/ was not called due to an error.
    Note
    The following error text was processed in the system SD4 : Screen output without connection to user.
    The error occurred on the application server gsdcb261_SD4_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    SYSTEM-EXIT of program SAPLSKEY
    Function: TADIR_OBJECT_CHECK of program SAPLSKEY
    Function: CHECK_ACCESS_KEYS of program SAPLSKEY
    Method: CHECK_TROBJ_BEFORE_EDIT of program CL_WD_CONFIGURATION_MODEL=====CP
    Method: FILL_APPL_CONFIG_CONTEXT of program CL_WD_CONFIGURATION_MODEL=====CP
    Method: UPDATE_APPLICATION_TREE of program /1BCWDY/0A4VPNTYZEA2W6Q9CMDX==CP
    Method: IF_COMPONENTCONTROLLER~UPDATE_APPLICATION_TREE of program /1BCWDY/0A4VPNTYZEA2W6Q9CMDX==CP
    Method: ONACTIONACTION of program /1BCWDY/0A4VPNTYZEA2W6Q9CMDX==CP
    Method: ONACTIONACTION of program /1BCWDY/0A4VPNTYZEA2W6Q9CMDX==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/0A4VPNTYZEA2W6Q9CMDX==CP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system SD4 in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server gsdcb261_SD4_01 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server gsdcb261_SD4_01 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-https -c: 100 -u: AGAURAV -l: E -s: SD4 -i: gsdcb261_SD4_01 -w: 0 -d: 20070426 -t: 200845 -v: RABAX_STATE -e: DYNPRO_SEND_IN_BACKGROUND
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team

    Hello Thomas,
    I am sorry but I haven't check this forum in the last weeks because of lack of time. Thanks for your hint regarding a potential solution. Taking a look a the note I have some problem in "using" it.
    This note contains a number of potential solutions regarding our problem.
    Solution 1.) one could use the modification as described. Surprising to read that SAP is saying: do a modification to solve the problem. => this is only possible "manually"  I am not sure If I will follow this approach
    Solution 2.) Change the URL: This solution scenario I do not understand. The solution path is "very" short and not very instructive. This is the story:
    You can do this by adding "_OLD" to the name of the application of the URL created for the configuration: Use "CONFIGURE_APPLICATION_OLD" instead of "CONFIGURE_APPLICATION"
    and "CONFIGURE_COMPONENT_OLD" instead of "CONFIGURE_COMPONENT". If you want to use this function as your standard, you have to change the original application. To do this, set the parameter "OLD_TR" to "X".
    This solution path is "to short". I do not get the "message" what to do.
    Furthermore: Does that mean you have to use this peculiar solution any time durnig software development of webdynpro components using configurations? In my opinion yes. This is therefore only a "workaround solution" and nothing else.
    And there can I find this parameter "old_tr" they are talking about?
    Sap note 1060287 is the "same" kind (Symptom of this note:
    If you use the configuration editor, there may be errors during transport handling or
    DYNPRO_SEND_IN_BACKGROUND crashes.).
    Here they are saying:
    "Solution
    A final solution will be provided for Release 7.0 BASIS Support Package 13."
    So in SP13 there seems to be a solution (I haven't found up to now the corresponding note). But does that now mean I must implement the complete support package?
    So I am sorry: No progress on my side up to now. May be you have had some success?
    With best regards
    Christoph

  • Is there some new configuration for Design Editor in RH11 that I am missing?

    I just upgraded from RH7 to RH11.
    All topics in Design Editor appear as though the style sheet is not applied.
    The Normal style appears as Times New Roman - 12pt font, but it is defined in the style sheet as Arial 10pt.
    Hyperlinks appear in the correct font type, but 12pt instead of 10pt.
    Headings seem to be the only styles that appear correctly.
    When I preview the topic, or view it in a browser, everything looks correct, as it is defined in the style sheet.
    Is there some new setting for Design Editor, like "Ignore part of the style sheet"?
    Thanks...

    Thanks for your response, but a look in the html and the GUI confirms that the correct style sheet is applied. In addition, (from my original post) "When I preview the topic, or view it in a browser, everything looks correct, as it is defined in the style sheet."
    I just noticed that the 'Normal' style as seen in the RH GUI shows "Times New Roman" and 12 pt. even though the P style in the style sheet shows:
    /*Created with Adobe RoboHelp 11.*/
    P {
        font-size: 10.0pt;
        color: #000000;
        background-color: Transparent;
        font-family: Arial, sans-serif;
        margin-top: 5pt;
        margin-bottom: 5pt;
    I simply edited the Normal style in the GUI to the Arial font and size.
    All of the P styles, and all styles based on the P style, changed to the correct font and size.
    The P style in the .css file did not change!
    Another RH bug?

Maybe you are looking for

  • I can no longer turn off programs after ios7 update

    I just upgraded my iPhone 5 to iOS 7 and can  I longer turn off apps to conserve battery. (Double-tap home, touch & hold on the app to close and then touch the   X to close it). I just end up in the app I want to close. Has anyone else figured out ho

  • Re linking Cinema 4D

    Hey there - Is seems re - linking is different for every outside software (PS, Ai and so on), and so I'd like to ask you how to re link my C4D file with my AE project... I've begun working on a AE project using some 3D elements and the Maxon link, an

  • What happens when i click restore?

    I accidently deleted a video i recorded on my touch. If the video was there the last time i synced it and i haven't synced it yet, can i recover it? Do I restore?

  • Control center not working well on whatsapp

    HI, with the new version of Whatsapp 2.11.11 the control center its not working well, anyone with this issue?

  • Using CS6 on another computer

    My computer that had CS6 and Light Room on it crashed. I have the disc for Lightroom but not CS6. How do I put CS6 on another computer?