Where: vertical-mapping  JDO meta-data examples

Looking for package.jdo examples that describe a vertical mapping
scenario

In article <bu9h3e$g3h$[email protected]>, Kevin J Citron wrote:
>
Looking for package.jdo examples that describe a vertical mapping
scenariohttp://docs.solarmetric.com/manual.html#vertical
Marc Prud'hommeaux [email protected]
SolarMetric Inc. http://www.solarmetric.com

Similar Messages

  • Where does substitution variable meta data stored?

    where does substitution variable meta data stored in the essbase folder?<BR>Thanks<BR>Arun

    I believe substitution variables are stored in the Essbase.sec (Security file).

  • Where do you enter meta data?

    I have been working my Business Catalyst site under the vew version with reasonable success for months until today, when I decided I should review and maybe update the meta data, specifically the keywords.  I've been all over the menu looking for the tool or option that allows me to access this data.
    I finally went back to the old version where Add Meta Data is in the right menu.
    But I am assuming that the old version will eventually go away because it's ... old.  Surely there must be some way in the new version to make these changes.
    BTW, I did search the forums and tutorials before writing this post.  The only thing I found was a tutorial written for the old version.

    Thanks much, but it led to more questions.
    1.  The old version had three meta names to fill in: descriptions, keywords and robots.  I don't see robots in the page properties.  Where would that be filled in?
    2.  In the page I'm working on now, I have the robots definition (older version) set "NOINDEX, NOFOLLOW".  When I saved the html to my PC so I could examine the code, I found this in the header:
    <META name="robots" content="NOINDEX, NOFOLLOW">
    ...4 <LINK lines for stylesheets and a <SCRIPT line ...
    <META name="robots" content="index, follow">
    I think this is counter to what I'm asking for.  This is not a page I can eliminate, but neither do I want it to be considered when my webpage ranking is being considered, particularly now I've been told that the weaker pages can drag you down.  It seems that the second robots line is telling the spider or whatever they call it to go ahead and crawl, in spite of my telling it not to.
    3.  This is more an observation than a question.  The page properties has a field for Page Title, and there is also a Page Title field under Page Details above the design page.  I tested this by putting different values into each field, updating, and saving off the html.  The value that is listed in the header is from the Page Details section, and not page properties.
    I have not yet checked out the keywords and description.  That's next.

  • Where to access video meta data?

    In LR4, I am going through lots of videos I imported. Where can I see more info about each video, such as file size, length, date created, etc.
    Thanks.

    You can use the setStyle function on ILG to set any key value pair as a property.
    Richard

  • Problem with vertical mapping

    I start with:
    <?xml version="1.0"?>
    <!DOCTYPE jdo PUBLIC "-//Sun Microsystems, Inc.//DTD Java Data Objects
    Metadata 1.0//EN" "http://java.sun.com/dtd/jdo_1_0.dtd">
    <jdo>
    <package name="com.amkor.request.sma">
    <class name="JBaseDTO">
    <extension vendor-name="kodo" key="jdbc-sequence-factory"
    value="JDOKeySequenceGeneratorFactory" />
    </class>
    <class name="A_DTO" persistence-capable-superclass="JBaseDTO">
    <extension vendor-name="kodo" key="jdbc-class-map"
    value="vertical">
         <extension vendor-name="kodo" key="table" value="REQUESTS"/>
         <extension vendor-name="kodo" key="ref-column.JDOID"
    value="PARENT_ID"/>
         </extension>
    </class>
    </package>
    </jdo>
    The mapping that is generated is via the mapping tool is:
    <?xml version="1.0" encoding="UTF-8"?>
    <mapping>
    <package name="com.amkor.request.sma">
    <class name="JBaseDTO">
    <jdbc-class-map type="base" pk-column="JDOID"
    table="ESUSER.JBASEDTO"/>
    <jdbc-version-ind type="version-number" column="JDOVERSION"/>
    <jdbc-class-ind type="in-class-name" column="JDOCLASS"/>
    <field name="id">
    <jdbc-field-map type="value" column="ID"/>
    </field>
    </class>
    <class name="A_DTO">
    <jdbc-class-map type="flat"/>
    <field name="name">
    <jdbc-field-map type="value" column="NAME"/>
    </field>
    </package>
    </mapping>
    The relavant parts are
    (JDO Meta-Data) <extension vendor-name="kodo" key="jdbc-class-map"
    value="vertical">
    (Mapping file) <jdbc-class-map type="flat"/>
    What am I doing wrong ??

    Marc Prud'hommeaux wrote:
    Marc- Im using the mapping tool to generate the mappings.
    From the JDO specified above. Which was taken from the vertical
    mapping example in your documentation.
    But why are you defining your O/R extensions in the .jdo file and
    then generating a .mapping file? Why don't you just use the "metadata"
    MappingFactory, and use that directly?Marc, I'm just going off of the examples that you have included in your
    documentation. Is this not the most accurate way to achieve the results
    I seek ?? I mean, unless I'm missing something. This IS YOUR
    documentation.
    Is it not. If there is a better way. Please point me to the appropriate
    docs.
    BTW. I work for a company
    that has a licensed product. Who do I need to contact about this
    issue.
    If you have a support and maintenance contract, you can contact support
    channels at: [email protected]
    If you have any questions about your maintenance and support status,
    contact: [email protected]
    In article <[email protected]>, Kevin J Citron wrote:
    Marc Prud'hommeaux wrote:
    Kevin-
    How are you "generating the mapping"? If you want to define your
    mappings in the .jdo file, why not just use the "metadata"
    MappingFactory?
    In article <[email protected]>, Kevin J Citron wrote:
    I start with:
    <?xml version="1.0"?>
    <!DOCTYPE jdo PUBLIC "-//Sun Microsystems, Inc.//DTD Java Data Objects
    Metadata 1.0//EN" "http://java.sun.com/dtd/jdo_1_0.dtd">
    <jdo>
    <package name="com.amkor.request.sma">
    <class name="JBaseDTO">
    <extension vendor-name="kodo" key="jdbc-sequence-factory"
    value="JDOKeySequenceGeneratorFactory" />
    </class>
    <class name="A_DTO" persistence-capable-superclass="JBaseDTO">
    <extension vendor-name="kodo" key="jdbc-class-map"
    value="vertical">
         <extension vendor-name="kodo" key="table" value="REQUESTS"/>
         <extension vendor-name="kodo" key="ref-column.JDOID"
    value="PARENT_ID"/>
         </extension>
    </class>
    </package>
    </jdo>
    The mapping that is generated is via the mapping tool is:
    <?xml version="1.0" encoding="UTF-8"?>
    <mapping>
    <package name="com.amkor.request.sma">
    <class name="JBaseDTO">
    <jdbc-class-map type="base" pk-column="JDOID"
    table="ESUSER.JBASEDTO"/>
    <jdbc-version-ind type="version-number"
    column="JDOVERSION"/>
    <jdbc-class-ind type="in-class-name" column="JDOCLASS"/>
    <field name="id">
    <jdbc-field-map type="value" column="ID"/>
    </field>
    </class>
    <class name="A_DTO">
    <jdbc-class-map type="flat"/>
    <field name="name">
    <jdbc-field-map type="value" column="NAME"/>
    </field>
    </package>
    </mapping>
    The relavant parts are
    (JDO Meta-Data) <extension vendor-name="kodo" key="jdbc-class-map"
    value="vertical">
    (Mapping file) <jdbc-class-map type="flat"/>
    What am I doing wrong ??
    Marc- Im using the mapping tool to generate the mappings.
    From the JDO specified above. Which was taken from the vertical
    mapping example in your documentation. BTW. I work for a company
    that has a licensed product. Who do I need to contact about this
    issue.
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • OBIEE 11g Map Visualization Error - basemap is defined in spatial meta-data

    Hi All,
    I have installed OBIEE 11g successfully on my Desktop Machine, deployed the Sample Applications regarding Mapviewer and its working fine. I have seen all the Maps and they are running fine in fact they are editable and i can easily do anything with those Maps but,
    The issue is that when i am going to create a new Report and try to integrate Map on it then it shows an error as display below;
    A basemap is required to render a map. Please ensure that atleast one basemap is defined in the spatial meta-data
    Error Details
    Error Codes: EMGUNIA3
    Location: saw.views.evc.activate, saw.httpserver.processrequest, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool,
    saw.threadpool, saw.threads
    I have also followed this link ( http://erpthings.blogspot.com/2011/01/obiee-11g-inbuilt-mapping-and-spatial.html ) but it is also stuck on the same error at the end.
    I didn't understand the problem why its giving an error like this while the Sample Application worked fine so, if there is any way to define a basemap in spatial meta-data plz guide me OR
    Is there any way to integrate Map with OBIEE 11g ?
    Cheers,
    Masood.

    This question has been solved!
    Basically you need to ensure the database schema where the data source (Navteq) has been imported must have the privilege "Create Type"
    This comes from the Oracle manual extract as shown below:
    1.4.4.3 Creating MapViewer Array Types, if Necessary
    For each database schema that it connects to, MapViewer checks for the existence of
    the following SQL array types that support array-type binding variables that might
    exist in some predefined themes:
    ■ MV_STRINGLIST
    ■ MV_NUMBERLIST
    ■ MV_DATELIST
    If these types do not exist, MapViewer attempts to create them in the database schema
    associated with the MapViewer data source. However, if the user associated with that
    schema does not have sufficient privileges to create new types, a privileged user must
    create the types by connecting to the data source schema and entering the following
    statements:
    CREATE or REPLACE type MV_STRINGLIST as TABLE of VARCHAR2(1000);
    CREATE or REPLACE type MV_NUMBERLIST as TABLE of NUMBER;
    CREATE or REPLACE type MV_DATELIST as TABLE of DATE;
    Cheers.

  • I managed to transfer the music from 1 pc to 1 other pc (to be played by iTunes). Bit didn't fixe the transfer of the meta data (for example the rating). Does anyone know how to use your old playlists, etc..(= meta data) on the other PC? So, please help!

    I managed to transfer the music from 1 pc to 1 other pc (it is played perfectly on the other PC (Windows 7- pc) by the newly downloaded and installed iTunes, version 10.6.1.7). But I didn’t fix the transfer of the meta data (for example the rating). Does anyone know how to use (or import) your old playlists, etc..(= meta data) on the other PC? So, short: how to migrate the meta data from one pc to an other pc?
    It's a pity that it seems not to be possible to import on the new pc e.g. the ratings!!!
    I don't want to start again with rating my (beautiful classical) music!
    Thanks, from Amsterdam, NL

    Did you do the move via Home Sharing, astro?
    If so, perhaps try the instructions from the following post:
    Re: i transfered itunes to my pc playlists did not go

  • Adaptor meta data &mapping templtes

    hi
    1. explain about adaptor meta data &mapping templtes what does use with them?
    2.what is exchange fault data and exchange log data under data types
    3.what are web as apart from 6.2 and 6.4?
    4.describe about sap xi 3.0 like SP's what are types
    5.about content
    pls give details mentioned above .
    thanks & regards

    >>1. explain about adaptor meta data &mapping templtes what does use with them?
    Adapter Metadata is the foundation configuration for the Adapters used in XI for message transfer. The functions provided allow either the creation of new Adapters or the modifications of existing ones.
    Just like you can reuse data types in different message types, you can also save parts of message mappings as Mapping Templates and reuse them elsewhere. Once you have saved a mapping template it serves as a copy template that you can then load into other message mappings and modify to fit your requirements.
    >>2.what is exchange fault data and exchange log data under data types
    Fault message types contain data types defining application errors. Application errors are errors that occur on the inbound side of a message transfer when the application could not process successfully.
    >>3.what are web as apart from 6.2 and 6.4?
    The Web Application Server is a platform for efficient development and allows you to implement Web applications. It builds upon proven and stable application server
    technology and Internet-based infrastructure from SAP.
    >>4.describe about sap xi 3.0 like SP's what are types
    check http://service.sap.com
    >>5.about content
    The contents of the Integration Repository are collectively known as XI Content (Process Integration Content); XI content is the integration knowledge that is required for describing collaborative processes (collaboration knowledge).
    For an overview of the XI Content currently provided by SAP, see SAP Service Marketplace at http://service.sap.com/solutions  -> SAP NetWeaver  ->  SAP NetWeaver in Detail  ->  Process Integration  ->  SAP Exchange Infrastructure  ->  SAP XI in Detail  -> XI Content Catalog.

  • 844,845 & 849 seeburger meta data &maps

    Hi,
    we have Seeburger EDI adapter ,but we need to implement interfaces using transaction sets 844,845,849.but we don't see any meta data info and Maps for those in the software we have downloaded.
    so how can we get them?do we need to request from Seeburger or download from Service place?
    thank you,
    Sathish

    Hi
    Follow thses links it will help you
    SEEBURGER EDI adapter
    What are the seeburger adapters needed?
    XI Seeburger adapters
    Seeburger Adapter - Mappings
    Regards,
    Santosh

  • I installed a game, where can i find the files and maps? where does iMac store this data?

    I installed a game,Now I need to add some files however, I cannot find where iMac stores it.. where can i find the files and maps? where does iMac store this data?
    thx alot
    erik

    Depends on game, i would look first on the game file itself, right click (or ctrl click) the game file you installed (Applications?) and select show package contents, its usually a application bundle, as in basicly a folder where the application and the required files and subfolders are.

  • Meta data & Exif data in MobilMe Web Gallery - where did it go?

    I can't seem to get web gallery to publish the meta data with the photos. When you visit the web gallery website, clicking on the image thumbnail reveals options to click the "i" button which supposedly allows viewers to examine meta data & exif data.
    I would be greatly appreciative if someone could confirm or disconfirm this issue for any web galleries they have created.
    Thanks in advance,
    CD

    The only way that I get EXIF etc metadata to show up on the information page in web galleries is to enable downloading of images. This seems to do the trick in making the info page work. I have not tried disabling download in the settings, republishing, and seeing if the image metadata still displays. Just one more quirky thing about webgallery - what really stinks is there is no way to get Aperture to put downloadable images with an sRGB profile into a webgallery. Even if the original is an sRGB it converts the downloadable version to AdobeRGB.
    RB

  • Should the web page address be included in the file name in the meta data dialog box?

    In the page properties > meta data > below is a field with the label file name: (the the area to type in the field), after the field, it is labeled .html.
    I have 2 questions here.
    1. If I type in http//:www (my page url), do I include .html at the end? I didn't know if this is automatically added because it is off to the side of the field?
    2. If I type in the entire URL address: http//:www (etc, etc).html,    after closing the page properties dialog box, I make it a habit to double check my work. What happens is the http//:www.xxx changes to (htttpwww.xxx). It drops the //: on the URL.
    So would it be better to just type in www.xxx (without the http//:www.xxx)
    and do you type in the .html at the end?
    I am assuming this will help with SEO page ranking or at least makes it easier for the search engines to crawl your site??
    I hope this makes sense.
    Advise would be very helpful.
    Ben

    You are absolutely correct with the URL Ben. Taking your above example, you just need to type in "Services" in the file name and the webpage will be exported as services.html and the URl will be  www.xyz.com/services.html.
    All the webpages (be it parent page or child page) gets physically saved at the root directory of your website on the server (where your website resides).
    This name is just the name of the file using which it is physically stored and called from the server. It does not help search Engines to crawl deeper inside the website.
    As I explained, "name which you wants the .html file to be stored with" here means the name of the physical file which is getting saved on the server.
    Most users leave the file name same as Page name. If you have it different from page name then this will be the workflow :
    Page Name : About
    File Name : test
    domain : www.mysite.com
    Now if you are  using a Menu Widget, it will list "About" in the Menu. And when end user will click on "About" then it will call the file named "test.html" from the server location (where all the files of your website are stored).
    And it will open a page with address "www.mysite.com/test.html"
    Hope I am able to explain the concept of File Name here. Please let us know if you have further queries on this.
    Regards,
    Sachin

  • Import Meta Data from CSV - Export Meta Data to CSV

    Ability to import meta data into selected images from CSV file containing a number of fields, one of which is file name. The other fields would be selected tags to import.
    Import logic would be, Where file name in column 1 matches current selected filename, then take following fields 2, 3, etc and import into Bridge.
    Export selected meta data from selected files to CSV to form reverse of above to allow edit of data in Excel etc.
    Further enchancement on import would be to allow instead of just filename, but date/time range matching.
    Logic would be, Where date/time in column 1 is within X hours of selected
    image creation date/time then import following fields into image meta data.
    Useful for example if you already have a GPS tracklog in CSV and want to try and update images with GPS. Assuming camera clock approx same as GPS clock.

    The issue was within the .csv file.  There were duplicate records that were attempting to load as the ID value.  After deleting the duplicate records, the transformation file ran successfully.
    Debbie

  • IWeb meta data

    I see iWeb is not an HTML editor and I need to add Meta data to my site so that I can submit to search engines. I am using the program because it is very easy and quick to use but I am publishing to a seperate site, not a .mac site. If I open the file with an editor like Dreamweaver I could insert the code no problem and then publish but since that additional code would not be in my original iweb sfiles it would be overwritten next time. Where can I find the original iWeb files on the computer and edit those so that the Meta data will be there every time? Also it has been a few years since I published a commercial website, do they still use meta tags for the search engines?
    Thanks,
    [email protected]

    drycleangeorge wrote:
    Where can I find the original iWeb files on the computer...?
    All the information iWeb needs to create your websites is in one file called "Domain." When you launch iWeb for the first time, the Domain file's default location is:
    +~/Library/Application Support/iWeb+
    (the tilde (~) represents your home directory)
    ...and edit those so that the Meta data will be there every time?
    You cannot edit this Domain file ~ so you have to re-edit the HTML files after publishing.
    Also it has been a few years since I published a commercial website, do they still use meta tags for the search engines?
    The following is quoted from Patrick Griffiths' book +"XHTML & CSS"+:
    The primary application of meta tags used to be in the optimization of a web page for search engine rankings. Keywords and descriptions were used by the search engine algorithms to judge how closely a web page matched a given phrase. Nowadays, however, few search engines take any notice of meta tags that specify page keywords due to their misuse and tendency to lead to irrelevant material. Instead, search engines tend to base their results on the page content itself. Google, for example, will only use the meta tag "description" to accompany a search result, but ignores meta tags altogether when it comes to judging a page's rank. It bases its results primarily on content, the page title, and also terms that are used to link to the page in question.
    So is there any real point? Meta tags certainly aren't the force they used to be when it comes to search engines, but they can still be used to convey useful information about the page. Even if an application doesn't directly use a meta tag, someone looking at the page source itself could still benefit from such information. Another common value for the name attribute is "copyright", which won't be directly used by anything (such as search engines or browsers), but can be used to point out copyright information to a casual observer.
    ...Content is king/queen.
    +"How to get your iWeb Websites into Google & Other Major Search Engines"+ ~ click here:
    SEO For iWeb
    Also click to download this free SEO Guide for Mac users.
    And here are a couple of free, web-based tools to grade your site/page visibility...
    http://www.websitegrader.com
    ...by the way, entering your email address at the above site is optional.
    http://www.seomoz.org/page-strength

  • Vertical Mapping in 3.0.1

    I'm trying to do a vertical mapping and am getting the following exception:
    java.lang.ClassCastException
    at kodo.jdbc.meta.ClassMapping.resolve(ClassMapping.java:952)
    at
    kodo.jdbc.meta.VerticalClassMapping.resolve(VerticalClassMapping.java:300)
    at kodo.jdbc.meta.MappingRepository.resolve(MappingRepository.java:381)
    at kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:298)
    at kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:162)
    at kodo.jdbc.meta.MappingRepository.getMetaData(MappingRepository.java:150)
    My jdo file has:
    <class name="ContactInfo" objectid-class="ContactInfoId">
    <extension vendor-name="kodo" key="jdbc-class-map" value="base">
    <extension vendor-name="kodo" key="table"
    value="t_contactinfo"/>
    <extension vendor-name="kodo" key="pk-column" value="id_i"/>
    </extension>
    <extension vendor-name="kodo" key="jdbc-class-ind"
    value="in-class-name">
    <extension vendor-name="kodo" key="column"
    value="classtype_id_vc"/>
    </extension>
    <extension vendor-name="kodo" key="jdbc-version-ind"
    value="version-number">
    <extension vendor-name="kodo" key="column"
    value="rowversion_i"/>
    </extension>
    <field name="id" primary-key="true">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="id_i"/>
    </extension>
    </field>
    <field name="primary">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="primary_b"/>
    </extension>
    </field>
    <field name="person">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="one-one">
    <extension vendor-name="kodo" key="column.id_i"
    value="person_id_i"/>
    </extension>
    </field>
    </class>
    <class name="AddressContactInfo"
    persistence-capable-superclass="ContactInfo" identity-type="application">
    <extension vendor-name="kodo" key="jdbc-class-map"
    value="vertical">
    <extension vendor-name="kodo" key="table"
    value="t_addresscontactinfo"/>
    <extension vendor-name="kodo" key="ref-column.id_i"
    value="contactinfo_id_i"/>
    </extension>
    <field name="address1">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="address1_vc"/>
    </extension>
    </field>
    <field name="address2">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="address2_vc"/>
    </extension>
    </field>
    <field name="city">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="address2_vc"/>
    </extension>
    </field>
    <field name="state">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="one-one">
    <extension vendor-name="kodo" key="column.id_vc"
    value="state_id_vc"/>
    </extension>
    </field>
    <field name="zip">
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="value">
    <extension vendor-name="kodo" key="column"
    value="zip_vc"/>
    </extension>
    </field>
    </class>
    and my database create statements are:
    create table t_contactinfo (
    id_i int not null primary key,
    person_id_i not null CONSTRAINT fk_contactinfo_person REFERENCES
    t_person(id_i),
    primary_b number(1) not null,
    rowversion_i int not null,
    classtype_id_vc varchar(255) CONSTRAINT fk_contactinfo_classtype_id
    REFERENCES t_classtype(id_vc) not null
    create table t_addresscontactinfo (
    contactinfo_id_i not null CONSTRAINT fk_adress_contactinfo references
    t_contactinfo(id_i),
    address1_vc varchar(255),
    address2_vc varchar(255),
    city_vc varchar(255),
    state_id_vc CONSTRAINT fk_address_state references t_state(id_vc),
    zip_vc varchar(255),
    rowversion_i int not null,
    primary key(contactinfo_id_i)
    Any idea what the problem is?
    Thanks,
    Nathan

    Ted-
    Did this work in 3.0.0?I believe not.
    If so, I cannot move until 3.0.2 is released.3.0.2 will be release very soon.
    In article <bu9i1l$gt9$[email protected]>, Ted Poovey wrote:
    Did this work in 3.0.0? If so, I cannot move until 3.0.2 is released.
    Abe White wrote:
    You have found a bug. It affects subclasses that map two or more simple
    value fields to the same column, so the only current workaround for you
    would be to get rid of one of the fields mapped to the address2_vc
    column for now.
    I've already fixed the bug internally; the fix will be available in 3.0.2.
    Thanks for the report.
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

Maybe you are looking for