Is there any kind of viewer for BDBJE?

Dear All,
When explaining structures to business people we have in the past used a variety of tools which using JDBC metadata etc query a database & present a graphical view.
I have been searching for something similar wrt BDBJE...is there anything which would allow one to view an existing berkeley db structure/environment?
TIA
Adam

Hi Adam,
There have been several requests for this, either as a part of the product or a community supported add-on. Currently there is nothing like this that is part of the product. Someone posted a project to do this in an Eclipse plug-in, but I don't know the status of this project:
Berkeley DB JE Browser Eclipse Plugin
Please be aware that such a browser is dependent on having metadata that describes your schema. When using the base API or the collections API, no metadata is defined. But when using the DPL, metadata is available. If a data browser is available in the future, it will probably require using the DPL.
If a data browser is important to you, I strongly recommend using the DPL (the com.sleepycat.persist package).
--mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Is there any kind of application for keeping Precedence?

    I act as a Speaker of the Hous for a Mock session of Congress, is there any kind of application that will he me keep track of precedence throughout the session?

    Unfortunately, no; Skype does not offer such programmes.
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Is there any kind of discount for senior citizens ...

    i was wondering if skype had any kind of pregram for persons with a disabiilty or for senior citizens

    Unfortunately, no; Skype does not offer such programmes.
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • OS 10.8.2 on an imac.  Whenever I wake from sleep, the wifi has disconnected and I have to use the Netowrk Diagnostics in the Network settings to log back in to my router.  Every time.  is there any kind of fix for this?

    I am running OS 10.8.2 and everytime I wake my computer from sleep, the wifi is disconnected and I have to use the Network Diagnostics assistant to reconnect to my router.  Is there any way to get it to not disconnect everytime?  I have resorted to just leaving Network Diagnostics open and just rejoining the network every single time I wake the computer.  Any help here?

    I am running OS 10.8.2 and everytime I wake my computer from sleep, the wifi is disconnected and I have to use the Network Diagnostics assistant to reconnect to my router.  Is there any way to get it to not disconnect everytime?  I have resorted to just leaving Network Diagnostics open and just rejoining the network every single time I wake the computer.  Any help here?

  • Is there any kind of step up program for motherboards?

    I have an MSI GD80-B3 Z68 motherboard I would like to trade up to a G3 if possible. Are there any programs in place for this? Do I have any kind of options short of selling the board?
    Thanks.

    Unless you need a PCI slot, the logical step up would be to sell the one you have and get a Z77 board.

  • Is there any kind of tripod adapter for iPhone?

    Is there any kind of tripod adapter for an iPhone?

    Yes.
    I did a Google search for "tripod adaptor for iPhone", and this was the 3rd hit.
    http://www.garyfongestore.com/iphone-tripod-mount-429.html#.UDV-uqlJUXc
    A Google or internet search is your friend, with a wealth of free info a text entry and mouse click away.

  • I bought Logic Express in September for the $200 that Apple is now charging for Logic Pro. Anybody in the same boat? Is it worth another 2 bills for the the Pro? Is there any kind of "upgrade" pricing?  Thanks, all

    I bought Logic Express in September for the $200 that Apple is now charging for Logic Pro. Anybody in the same boat? Is it worth another 2 bills for the the Pro? Is there any kind of "upgrade" pricing?  Thanks, all

    CFRiverdog wrote:
    Is there any kind of "upgrade" pricing?
    Nope
    CCT

  • Is there any kind of change log for UME?

    Is there any kind of logging of changes to users or roles in UME?  We are on GRC 5.3 SP13.
    We have a strange situation in our production RAR system.  The Change History shows some changes where made to a function on 7/8.  However the userid indicated by the Changed By field currently shows as not havig access to make function changes in production.
    They can make function changes in test, so I thought maybe they did an Rule Import.  However they don't have the access in production to perform the Rule Import either.  Also, the Change History in the test RAR system does not show any changes to the function in question by this userid on 7/8.
    I am assuming that if you did a Rule Import and brought over the Change History records, the date on these records would be the exact same as shown in test.  (i.e. they would show the date when the function change was made in the test system, not the date when the Change History was imported into production)
    Also the Change History shows the last Rule Upload was on 7/2, and the last Rule Generation was also run on 7/2.  This would seem to indicate that no one else performed a Rule Import on 7/8 either.
    Any ideas on what happened?
    The only thing I can think of is that this user did have the access back on 7/8, but that it has since been removed.  But I don't have a way to prove this.
    Thanks.

    Hi Bob,
    Looking at your explanation, it seems impossible situation. How ever I remember in early patches of GRC AC 5.3 there was an issue with RAR change log. The change history would show wrong IDs in Function/Risk change.
    That was fixed in patch 9. Not sure whether the same issue is returned again.
    Regards,
    Sabita

  • Is there any provision to view the selected record using SYS_REFCURSOR?

    hi friends ,
    I was using SQL Server . now i am shifting to Oracle . so we are changing the Stored Procedures in SQLServer to Oracle SP's. I have given the structure of procedure given below . If possible , i want to see the output of select statement in the TOAD editor . If any body knows please help me
    CREATE OR REPLACE PROCEDURE PS_AON
    P_STATUS OUT VARCHAR2,
    P_CUR OUT SYS_REFCURSOR
    AS
    BEGIN
    OPEN P_CUR FOR
              select colum1,column2,column3 from Table 1;
    EXCEPTION
                   WHEN OTHERS THEN
                   P_STATUS:=SQLERRM;
    END;
    This is one of the model of stored procedures i am using . And the editor i am using is TOAD 7.3.0 and oracle 9i. Is there any provision to view the selected records by running this procedure in TOAD editor
    thanks & regards

    (assuming you have relatively recent version of TOAD).
    Write a small block to call the procedure (or use Toad's 'execute procedure' option) as in the example below. Note the ':' in front of 'v_cur_out'. When you run the block, TOAD will prompt you for a value / datatype for 'v_cur_out'. Ignore the value, set the datatype to 'Cursor' and click OK. The resultset (if any) will be displayed in the Data Grid window below.
    DECLARE
       v_status VARCHAR2 (32767);
    BEGIN
       ps_aon (v_status, :v_cur_out);
       DBMS_OUTPUT.PUT_LINE ('v_status => ' || v_status);
    END;
    /

  • Is there any way to view 2, 3, 4, etc. days beginning on any day?

    Is there any way to view 2, 3, 4, etc. days beginning on any day? In pre-Lion iCal, opt-cmd-2 displayed 2 days, opt-cmd-3 displayed 3 days, etc. The first day could be any day of your choice.
    With Lion iCal, if you begin in any view other than week view, those shortcuts work. (I did not see them in the list of shortcuts.) But it always begins on Sunday.
    Is there any way to regain the ability to see any number of days beginning on any day? (Even gCal allows this, and I can't believe Apple would take such a step backwards in functions.) The only way I can figure out to do this now is by opening the General tab in Preferences and setting a new day to "Start week on." It's an understatement to say that this is much less flexible than in pre-Lion iCal.

    Found a way to accomplish it:
    In iCal's Preferences > General
    Select the "Days" popup for "Scroll in Week View by"
    "Weeks" was the previously-selected choice, so I assume it's the default. I don't remember this option in the older version of iCal.
    The result is not the same as pre-Lion iCal, but it's just as good.

  • Tcode  PFAL there is no model view for the distribution of HR Data.

    Hi friends ,
    i am facing new problem,i want to send iDOC to other system.
    previeous its working fine.
    but to day  when i open tcode PFAL.
    it give me Error:"There is no model view for the distribution of HR master data"
    what is the solution for that.
    i want to send HR Data.
    its urgent please give me any solution ithat will help me alot.
    thanks in advance

    There is already Distributed Model Created.
    can u give me annother tcode so i can  send Metarial data, by IDOC.
    please help me.
    Thanks

  • How do I see my pictures that are in my aperture library in finder?  I would like I be able to select  photos in finder when I am making photo books online without having to export them first from aperture jinto a new folder. Is there any way to view

    How do I see my pictures that are in my aperture library in finder?  I would like I be able to select  photos in finder when I am making photo books online without having to export them first from aperture jinto a new folder. Is there any way to view and download my pictures directly from finder?

    SamanthaR22 wrote:
    How do I see my pictures that are in my aperture library in finder?  I would like I be able to select  photos in finder when I am making photo books online without having to export them first from aperture jinto a new folder. Is there any way to view and download my pictures directly from finder?  [Emphasis added.]
    The digitization of data has introduced a complexity to our interactions with it that we continue to struggle with.  "Picture" and "Photo" now mean different things in different contexts.  In this case (and in general) defining our terms clearly is the first step towards understanding what we are trying to do.  Understanding is the path that allows us to do it.
    All pedantic, but please stick with me here  .
    You record a set of instantaneous data with a camera.
    That data is processed by your camera and saved to a file.
    The file format is usually either RAW or JPG.
    You transfer those files to your computer, and you import them into the program Aperture (often in one operation).
    From each camera-file imported, Aperture creates a record in its database (called, imho unhelpfully, a Library) and an Image that you see in the Aperture Browser and Viewer.
    Aperture links the Image and the imported file.
    The imported file is called, within Aperture, an Original.
    Every Image has an Original.
    The Image is not the Original.  The Image is what you see in Aperture.
    The Original is a file that is stored on your computer.
    You can make changes to an Image.
    Aperture calls these changes Adjustments.
    Adjustments are saved to another file attached to the record in the database.  Let's call this file the Changes File.
    Aperture uses these two files attached to the record in the database to create the Image.
    Image = Original + Changes File.
    The Image is not a file.
    Because the Image is not a file, it cannot be shared with other programs.  It exists only inside of Aperture.
    In order to share an Image with another program, you must first create a file of the Image.
    You do this by exporting Images ("File ▹ Export ▹ Version" is the command in Aperture; should be, imho, "File ▹ Export ▹ Image").
    You may ask, "Why all the complexity?  Why doesn't Aperture save Images as files?"  The answer is simple:  Images can require less — and in many cases very very much less — storage space than files of Images.  Rather than save a full-size file for every Image, Aperture saves only instructions on how to make that full-size file.  The gain in storage efficiency is huge.  The trade-off is that although your Images are always available to be made into share-able files, you must create those files when needed (which you do by exporting selected Images).
    Here is your question reworded with more precise terms:
    SamanthaR22 might have written:
    How do I access Images in my Aperture Library in the Finder?  I would like I be able to select files in the Finder when I am making photo books online without having to create them by exporting Images from Aperture into a new Finder folder. Is there any way to view and download my Images directly from the Finder?
    No, there is not.  Images exist only in Aperture, and are not accessible for use in other programs.  You must create, for each Image in your Aperture Library, a new file outside of your Aperture Library in order to use it with another program.
    Aperture does allow you to create and save within your Library share-able files of your Images.  These files are called Previews.  You specify the file parameters in Aperture Preferences on the Previews tab.  These files are available to other programs via the OS X Media Browser.  These files are what you get when you drag selected Images out of the Aperture program and drop them on another program or on your desktop (which is part of the Finder).
    HTH.
    —Kirby.

  • Is there any kind of Apple Company policy that Apple's iPhone can only be repair or service at the place from where the iPhone have bought?

    Hello,
    I'm Chintan from India. I have visited UK for study and brought iPhone 5 for me. I used it for about 16 days and now its started showing the problem of coverage. I mean, it shows "NO SERVICE" at the place of carrier name and tower symbol.
    My query:
    Do Apple have this kind of worthless service provider policy?
    I have visited the local authorized service center and they are not accepting my iPhone 5 and telling me that they can not accept it for repair or service because I have brought it from UK. I have checked my iPhone 5 status on the Apple Site and it is showing full cover of Repair and Service, then why the local Apple Authorized Service Center is not accepting my iPhone 5?
    Is there any kind of Apple Company policy that Apple's iPhone can only be repair or service at the place from where the iPhone have bought?
    Kindly help me out as I'm stuck with the so called APPLE IPHONE 5.
    Looking for the POSITIVE, SUPPORTIVE and HELPFUL reply.
    Thank You

    You should have read the warranty/support terms before you made your purchase. Had you, you would have found that iPhone warranty/support is only valid in the country of original purchase(except for the EU where warranty/support is EU wide). In your case, your warranty/support is only valid in the EU, as you have now found out...after your purchase. And, you are correct, they will not service the phone in India.
    Always been this way with the iPhone.

  • Is there any built in software for reading EPUB. In iTunes or iMac ?

    Hi All,
    Is there any built in software for reading EPUB. In iTunes or iMac ?
    Is there a kind of plug in for iTunes that let you read EPUB files ?
    If nothing is provided, what woul be the best alternative ?
    What's the best software for reading EPUB on an iMac ?
    Many thanks.
    Bests,

    There's nothing built in. I don't know what the best is, but you could try this:
    calibre - E-book management

  • Is there any kind of charge to iMessage someone in another country?

    Is there any kind of charge to iMessage someone in another country?

    Nope, other that what ever charges you already pay for WiFi or 3G data service.
    Stedman

Maybe you are looking for

  • BAPI to Update the OA/PO with the new partners from vendor masters

    Hello All, We got a requirement to update the Contract or purchase order with new partners from vendor  master. In brief the partner information of a  PO when created with reference to a contract  will be reflected from the contract but not from Vend

  • HP Pavilion dv6 System Recovery disabled

    I bought my HP Pavilion dv6 notebook (running Windows 7) about 2 and a half years back. It worked beautifully for about an year and a half after which issues began to crop up. First, it was my battery that gave up (I operate it on direct power now wi

  • Migrating to new server subscriptions are missing

    Hello, I have an instance of SQL Server 2008R2 running on Windows Server 2008.  It is setup to be a reporting server.  There are many subscriptions that are scheduled and run on this server.  We are wanting to move to Windows Server 2012 and SQL Serv

  • Declare external jars in the manifest in a EAR file

    Hi all, I'm using weblogic 7.0, I build a web service from a java class. So here is the ear file : - myWebservice.ear - META-INF - application.xml - myWebservice.ear - META-INF - MANIFEST.MF - myWebservice.ear - web-services.war - META-INF - MANIFEST

  • In Create Collection Window - Sync to Lightroom mobile option is missing

    Hi, I recently installed Lightroom CC (Latest Version) and there is one thing I can't figure out. When I Create a new collection, in the Create Collection window there isn't the option "Sync with Lightroom mobile". The last option in that window is S