Is there any tutorial regarding the berkeley db C# API

I am a C# programmer , and install the new bits of v 4.8, there is one C# library. and help doc of each objects. But there isn't one system get-started doc , where can find those docs?

What version of Berkeley DB are you using?
I don't see any evidence in your sample code that you are following the procedure for a primordial startup. The very first time that you start your first replication manager site, you need to configure it as DB_GROUP_CREATOR as well as DB_LOCAL_SITE. You need to do this to create the initial version of our internal group membership database. Later startups for this site do not need to configure DB_GROUP_CREATOR, but if it is specified it is ignored. I suspect that your later restarts are returning DB_REP_UNAVAIL because they are looking for our internal group membership database and not finding it.
In your case, you should start again from scratch with an empty environment directory. Add a second call to dbsite->set_config() to also configure DB_GROUP_CREATOR before you call db_env->repmgr_start(). See if this changes the behavior when you later try to restart your master site.
You can find more information about the primordial start procedure in the Berkeley DB Programmer's Reference Guide section "Managing Replication Manager group membership".
Paula Bingham
Oracle

Similar Messages

  • Is there any documentation regarding the fuego.fdi.* libraries

    Is there any documentation regarding the fuego.fdi.* libraries
    thanks

    Hey lloyd,
    It looks like there is!
    Within Studio, click on the 'Documentation' flap on the bottom of the screen.
    Then, open the project flap, and navigate to Catalog -> Fuego -> Fdi
    Double click on any of the individual components, and its documentation will appear within the documentation flap on the lower portion of the screen.
    If you don't see any documentation, check the tabs at the top of the documentation flap - the tabs allow you to switch between the documentation for the current method you're working on, and the component you've selected.
    -Noel

  • Is there any tutorial for integrating struts with hibernate using JDevelope

    Hi Everybody
    I am using Jdeveloper...and I want to know is there any tutorial available for usinfg struts and hibernate.
    If anybody knows abt them...plz tell me the links.
    Thanks and Regards
    K Sreenivas

    A tutorial about using hibernate in JDeveloper is here:
    http://www.oracle.com/technology/pub/articles/vohra_hibernate.html
    There are many papers and tutorials about Struts in JDeveloper - just go to the tutorials page and technical papers pages linked from the JDeveloper home-page.

  • Is there any restriction on the length of all Primary keys in a table

    Hi all,
    Is there any restriction on the length of all Primary keys in a data base table?
    i have some 10 fields as primary key in a DB table and length exceeds 120 and getting a warning.
    Please let me know will there be any problems in future with respect to the same?
    With regards,
    Sumanth

    Well actually there are constraints like
    Total of internal lengths of all primary key columns        1024 Bytes
    Number of primary key columns per table                     512
    For other information about SAP database please refer to http://sapdb.org/sap_db_features.htm  
    Thanks & Regards,
    Vivek Gaur
    Alwayz in high spirits

  • Is there any tutorial for jms development with jdeveloper out there ?

    Hi
    Thank you for reading my post
    is there any tutorial which show us how to use jdeveloper +oc4j for JMS stuff ?
    I mean an end 2 end tutorial to build mdb+jms resources in oc4j + client
    it will be far better if the tutorial shows how we can use jdeveloper features for this task (if it provide any wizard...)

    This is an example of a client:
    public String listeningJMS (Context context) throws Exception
    String topicName = "jms/demoTopic";
    String topicConnectionFactoryName = "jms/TopicConnectionFactory";
    TopicConnectionFactory topicConnectionFactory = null;
    TopicConnection topicConnection = null;
    TopicSession topicSession = null;
    Topic topic = null;
    TopicSubscriber topicSubscriber = null;
    TextMessage message = null;
    String fileName = null;
    * Look up connection factory and topic. If either does
    * not exist, exit.
    try
    topicConnectionFactory = (TopicConnectionFactory)
    context.lookup(topicConnectionFactoryName);
    topic = (Topic) context.lookup(topicName);
    * Create connection.
    * Create session from connection; false means session is
    * not transacted.
    * Create subscriber.
    * Register message listener (TextListener).
    * Receive text messages from topic.
    * When all messages have been received, enter Q to quit.
    * Close connection.
    topicConnection =
    topicConnectionFactory.createTopicConnection();
    topicSession =
    topicConnection.createTopicSession(false,
    Session.AUTO_ACKNOWLEDGE);
    topicSubscriber =
    topicSession.createSubscriber(topic);
    topicConnection.start();
    System.out.println("Receiving: ");
    TextMessage msg = (TextMessage) topicSubscriber.receive();
    String xmlString =msg.getText();
    topicConnection.close();
    System.err.println("Received: "+xmlString);
    fileName = this.getFileName(msg.getText());
    } catch (Exception e) {
    throw e;
    } finally {
    if (topicConnection != null) {
    try {
    topicConnection.close();
    } catch (JMSException e) {throw e;}
    return fileName;
    public static Context getInitialContext() throws NamingException {
    Hashtable env = new Hashtable();
    // Standalone OC4J connection details
    env.put( Context.INITIAL_CONTEXT_FACTORY, "oracle.j2ee.rmi.RMIInitialContextFactory" );
    env.put( Context.SECURITY_PRINCIPAL, "oc4jadmin" );
    env.put( Context.SECURITY_CREDENTIALS, "welcome1" );
    env.put(Context.PROVIDER_URL, "ormi://localhost:12401");
    //env.put(Context.PROVIDER_URL, "ormi://localhost:23791");
    return new InitialContext( env );
    }

  • Is there any update regarding Apple maps from Apple...?

    is there any update regarding Apple maps from Apple...? I live in sydney. I Know there are lots of issues with Apple maps but i reported more than 3 issues and i could see there is no resolution for those issues ?

    Apple does not broadcast anything.   The audio encoding options selected for content is controlled by the services the content comes from.  Apple just distributes content they are provided with.  I am not 100% sure but I believe the current ATV only supports 5.1 so it is pretty likely 7.1 could not be supported with out a new ATV device update, and they have not updated ATV in about four years now.   Starting to wonder if they are going to.   They used to own this market and now have pretty much lost it.   You might check Amazon Fire.   I think it might support 7.1.   I finally gave up on waiting on Apple and bought one and am mostly happy with it.

  • JPA and CAF BO - are there any editors of the JPA data (like CAF)?

    Hello!
    As you know SAP invented some layer above JPA and called it CAF. There is a very convenient way to edit data in CAF.
    But now I have to create a complex database scheme, also with CAF doesn't allow us to work with objects. So we can't use someObject.getChildren().
    So my question is are there any editors of the JPA data (like it is done in CAF)?

    Hi Kirill,
    at the beginning of our project at the end of 2009, we did a deep analysis of CAF since our architect vehemently suggested to use this framework.
    First about the history and purpose of CAF: Initially, CAF was never meant to be a layer above CAF since CAF was invented in the time before EJB 3.0 and JPA standard where writing persistence with EJB 2.x CMP forced the developer to write pages of boiler plate code. This background was approved by SAP.
    With upcoming of JPA, CAF ist mostly useless (except for very simply structured data) and prevents you from writing good software.
    It is easy just to write @Entity, @Id and @OneToMany (for complex database schemes) and CAF forces you to use an ugly, imperformant database scheme (e.g. CAF uses mapping tables even for 1:n relationships, a clear antipattern!)
    The CRUD-services generated with CAF are a pain, too. Usage of pessimistic locking is not up to date for web applications.
    With your complex database schemes, you exceed the limit of CAF.
    (We decided not to use CAF and did never regret this.)
    Concerning your question: There is an "JPA Details" view in NWDS that might help you. It needs JPA Persistence facet on your project to work. Developed by SAP. For JPA beginners, it is a good cheat sheet for JPA annotations and their attributes.
    You do not need more since a JPA POJO is easy to code.
    Regards,
    Rolf

  • Where do I - in Callmanager 7x - change a department name and do this have any downside regarding the phones?

    Hi,
    In my Cisco Unified CM Administration System version: 7.0.1.11000-2, I have a lot of different department names and they are all in use.
    Last year one of our departments changed their name, and now I would like to update the old department name to the new department name.
    I have looked everywhere, but I can not find anywhere where I can rename a department, where can I do this? And does it have any downsides regarding the phones and their usage? I can not think that I need to restart or reset all the phones in the department, but I want to be sure before I do anything.
    I know that I can search individual users and phones and rename these, but there must be an automatic approach to rename a department for some 200 users and phones?
    Kind regards,
    Carl-Marius

    Bulk Admin tool.
    Export all users to CSV file.
    Edit the CSV file.
    import the CSV file to CUCM
    run the user import in BULK admin tool.
    It will then update the departments.

  • Is there any security on the ipad mini?

    Is there any security on the ipad mini?

    If Kappy's response doesn't cover your issue, please post back and explain what "security" you're referring to.
    Regards.

  • Is there any BAPI returning the affected organisational units to users?

    Dear all,
    I would like to ask a question about organizational units. Whenever I want to affect a user to a given unit I
    use PPOME transaction. If I want to do this in ABAP level I use the function module RH_RELATION_WRITE.
    I would like to know, is there any BAPI returning the affected organizational unit to a given user?
    Thanks in advance,
    Kind Regards,
    Dariyoosh

    Alberto Sesma wrote:
    You can use Function Module RH_STRUC_GET
    >
    >
    > CALL FUNCTION 'RH_STRUC_GET'
    >   EXPORTING
    >      ACT_OTYPE = 'US'
    >      ACT_OBJID = user_name
    >      ACT_WEGID = 'US_CP_O'
    >   TABLES
    >        RESULT_TAB = LT_RESULT_TAB.
    >
    >
    > You will get the related org units in LT_RESULT_TAB. There are other two table parameters in that function module that you may find useful.
    >
    > If the function does not return any valid data you may try with other values for WEGID. You will find all the possible evaluation paths in transaction OOAW.
    >
    > Kind regards
    Dear Alberto,
    Thank you very much for your answer. I didn't know this FM and it solved my problem.
    For those who may be intered here is exactly I proceed. Suppose that in the table HRP1000 you have an
    structure (type S) with ObjID = 50000342 and you wish to have the SapUserID of the affected persons.
    DATA:
          affected_users TYPE STANDARD TABLE OF swhactor,
          user LIKE LINE OF affected_users.
    START-OF-SELECTION.
      CALL FUNCTION 'RH_STRUC_GET'
        EXPORTING
          act_otype              = 'S'
          act_objid              = '50000342'
          act_wegid              = 'A008'
          act_plvar              = '01'
          act_begda              = sy-datum
          act_endda              = sy-datum
          act_tdepth             = 0
       TABLES
         result_tab             = affected_users
    EXCEPTIONS
       NO_PLVAR_FOUND         = 1
       NO_ENTRY_FOUND         = 2
       OTHERS                 = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT affected_users INTO user.
        WRITE: / user-objid.
      ENDLOOP.
    Also in transaction OOAW we can have all possible values for the third argument of the module function (act_wegid).
    For those who are interested, here are a few among many possible values which seem to be intesting for my
    problem.
    DFPS_DG1----
    Organizational Unit of User
    DFPS_DG3----
    All Org. Units Above a User
    ORGAS----
    Closest Organizational Unit and structure
    ORGASS----
    Closest Organizational Unit and structure     
    PPLEORG     -
    Organizational unit of an employee or position
    SAP_ORGP----
    Organizational assignments of a user/person
    SAP_USOG----
    Organizational Assignments of a User
    SAP_US_S----
    Positions and Personnel Number of a User
    US_S_S_C----
    All positions and jobs of a user
    WFM_ORGU----
    Organizational Assignment of User
    WF_ORGUN----
    Organizational unit of a user/person (module id Ben./Pers.)
    For example, let's say we have a userid named MYUSER01 and we would like to find all structures to which the user
    is affected. Here is how I proceed.
    DATA:
          itab_user_structures TYPE STANDARD TABLE OF swhactor,
          row_user_structures LIKE LINE OF itab_user_structures.
    START-OF-SELECTION.
    CALL FUNCTION 'RH_STRUC_GET'
        EXPORTING
          act_otype              = 'US'
          act_objid              = 'MYUSER01'
          act_wegid              = 'US_S_S_C'
          act_plvar              = '01'
          act_begda              = sy-datum
          act_endda              = sy-datum
          act_tdepth             = 0
       TABLES
         result_tab             = itab_user_structures
    EXCEPTIONS
       NO_PLVAR_FOUND         = 1
       NO_ENTRY_FOUND         = 2
       OTHERS                 = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT itab_user_structures INTO row_user_structures.
        WRITE: / row_user_structures-objid.
      ENDLOOP.
    Thank you very much for your help.
    Kind Regards,
    Dariyoosh

  • If I upgrade SP 11 to now, Is there any impackt on the configured system?.

    Hi SRM GURUs,
    I am Using SRM 5.5 with Extended Classic Scenario, SUS, cFolders, LAC, and MDM.
    I want to Upgrade Service Package 11 to 14 ( latest one). I have done most of the configuration. If I upgrade now, Is there any impackt on the configured system?.
    Thanks in Advance.
    Regards,
    John.

    Hi Masa,
    Thank you so much for your quick response.  You mean there will be no impacts on configured right.
    The latest SP15 only but SAP recomends n-1. Thats way I am selecting SP14.
    I am awarding points here.
    Regards,
    John.

  • Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...)

    ''duplicate of https://support.mozilla.com/en-US/questions/905881''
    Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...)

    Hi Kossa,
    You can also check if the issue occurs in
    Clean Boot. If the issue disappears in the Clean Boot environment, you can continue to narrow down which entry is causing the issue.
    Besides, uninstall it and re-download
    a fresh copy of FireFox to check the result. If the issue still exists, create a new user account to see if it occurs.
    If the issue persists, you can contact Mozilla Support directly and use Internet Explorer (IE) during the time.
    J
    Please Note: The third-party product discussed here is manufactured by a company that is independent of Microsoft. We make no warranty, implied or otherwise,
    regarding this product's performance or reliability.
    Regards,
    Linda

  • Is there any difference between the iPod and the iPod hp?

    I'm new to iPods so forgive me if this is a foolish question but I've been thinking for a few weeks now about getting my daughter the shuffle. I bought the 1gb iPod shuffle hp today in Staples because they had it on sale but I'm wondering if there's any drawbacks to buying this one compared to buying it directly from Apple? As far as the electronics, is there any difference between the iPod and the hp iPod?

    Welcome to Apple Discussions!
    Electronically, there is no difference. The only difference comes in support. Apple allows you to call them for 90 days and one issue after you buy them, supporting windows and macs. HP will only help you if you are using a windows, however that support lasts one year. Keep in mind that if you need support, you'll have to go to an HP authorized repair center or another one of HP's options as the apple repair site and apple stores can't help in that regard.
    btabz

  • AT100-105 - any news regarding the update to Android 4.0.

    Hi!
    I have an AT100-105 (3G) European model and wondered if there are any news regarding the update to Android 4.0. Heard somewhere there was a problem with the modem compatibility.
    Is it still the case?
    Thanks

    Thanks for the info. I noticed those threads. Only posted this one because the others only mention the AT100-100 which only has Wifi ( I have a friend that already got the update on this model) and mine is the AT100-105 which has Wifi and 3G capability.
    Due to the differences in the models, I thought it also merited a different thread.

  • Is there any difference of the Downloading speed of Folio if i'm in Enterprise or Professional Editi

    Hi Adobe,
    I have compared the downloading time between Adobe Multi-Viewer and Zinio App(also hosting digital magazine), I found out that it is so much faster in Zinio.
    Are there any difference of the downloading speed if let's say the I'm in Enterprise or in Professional edition?
    Thank you for the response!

    There is no speed throttling that I’m aware of.
    Bob

Maybe you are looking for

  • Satellite L300-1BW - Is very slow

    Hi, everyone! Recently, I bought TOSHIBA SATELLITE L300-1BW (PSLB8E) Link: http://uk.computers.toshiba-europe.com/innovation/jsp/supportMyProduct.do?service=UK&userAction=SMP_RESU LTS_PAGE&partNumber=PSLB8E-03F007EN&serialNumber=Y8805872q&USER_ACTION

  • Run multiple programs in sequence

    Hello, I have done 5 labVIEW program and they are not made into sub VIs.But I want to run all of these test one by one automaticlly. Is it doable? These programs will share most of instrument. I did not make them into subVI since they have bounch of

  • Problem sending mail to hostname with multiple IN A DNS Records

    Hi there I've been using the javamail API without problems for some 2 years now in the company I'm working for. The problems started this week, when the hostname I'm using to send out mails via SMTP, now has multiple 'IN A' DNS records, but allthough

  • Mac Book Air (mid 2013 thunderbolt) to a 30 inch 2560x1600

    Can i connect a Mac Book Air (mid 2013 thunderbolt) to a 30 inch 2560x1600 display? with the Mini DisplayPort to Dual-Link DVI Adapter or is it simpler than that? as the monitor has dual link DVI & HDMI 1.4

  • Trying to access row values in a table which does not have any rows yet

    try{                          MappedRecord importParams = recordFactory.createMappedRecord("CONTAINER_OF_IMPORT_PARAMS");                          IFunction function1 = client.getFunctionsMetaData().getFunction(funModGetDet);