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.

Similar Messages

  • 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

  • Meta data maps but no data propagates

    Hi,
    I created a mapping. It comprises of a joing with two tables that produce one joined table. The joined table gets propagated to target OK, but no data comes through. Any ideas what needs to be done?
    Also, if I add more data later, how can only the new data be propagated?

    Have you given join condition.
    and loading type of target table should be Insert.
    Mapping need to be deployed .
    Then executed.
    Cheers
    Nawneet

  • 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.

  • How to save info in a meta-data of a jpg file?

    hi, i need to know how to save info in a meta-data of a jpg file:
    this is my code (doesn't work):
    i get an exception,
    javax.imageio.metadata.IIOInvalidTreeException: JPEGvariety and markerSequence nodes must be present
    at com.sun.imageio.plugins.jpeg.JPEGMetadata.mergeNativeTree(JPEGMetadata.java:1088)
    at com.sun.imageio.plugins.jpeg.JPEGMetadata.mergeTree(JPEGMetadata.java:1061)
    at playaround.IIOMetaDataWriter.run(IIOMetaDataWriter.java:59)
    at playaround.Main.main(Main.java:14)
    package playaround;
    import java.io.*;
    import java.util.Iterator;
    import java.util.Locale;
    import javax.imageio.*;
    import javax.imageio.metadata.IIOMetadata;
    import javax.imageio.metadata.IIOMetadataNode;
    import javax.imageio.plugins.jpeg.JPEGImageWriteParam;
    import javax.imageio.stream.*;
    import org.w3c.dom.*;
    public class IIOMetaDataWriter {
    public static void run(String[] args) throws IOException{
    try {
    File f = new File("C:/images.jpg");
    ImageInputStream ios = ImageIO.createImageInputStream(f);
    Iterator readers = ImageIO.getImageReaders(ios);
    ImageReader reader = (ImageReader) readers.next();
    reader.setInput(ImageIO.createImageInputStream(f));
    ImageWriter writer = ImageIO.getImageWriter(reader);
    writer.setOutput(ImageIO.createImageOutputStream(f));
    JPEGImageWriteParam param = new JPEGImageWriteParam(Locale.getDefault());
    IIOMetadata metaData = writer.getDefaultStreamMetadata(param);
    String MetadataFormatName = metaData.getNativeMetadataFormatName();
    IIOMetadataNode root = (IIOMetadataNode)metaData.getAsTree(MetadataFormatName);
    IIOMetadataNode markerSequence = getChildNode(root, "markerSequence");
    if (markerSequence == null) {
    markerSequence = new IIOMetadataNode("JPEGvariety");
    root.appendChild(markerSequence);
    IIOMetadataNode jv = getChildNode(root, "JPEGvariety");
    if (jv == null) {
    jv = new IIOMetadataNode("JPEGvariety");
    root.appendChild(jv);
    IIOMetadataNode child = getChildNode(jv, "myNode");
    if (child == null) {
    child = new IIOMetadataNode("myNode");
    jv.appendChild(child);
    child.setAttribute("myAttName", "myAttValue");
    metaData.mergeTree(MetadataFormatName, root);
    catch (Throwable t){
    t.printStackTrace();
    protected static IIOMetadataNode getChildNode(Node n, String name) {
    NodeList nodes = n.getChildNodes();
    for (int i = 0; i < nodes.getLength(); i++) {
    Node child = nodes.item(i);
    if (name.equals(child.getNodeName())) {
    return (IIOMetadataNode)child;
    return null;
    static void displayMetadata(Node node, int level) {
    indent(level); // emit open tag
    System.out.print("<" + node.getNodeName());
    NamedNodeMap map = node.getAttributes();
    if (map != null) { // print attribute values
    int length = map.getLength();
    for (int i = 0; i < length; i++) {
    Node attr = map.item(i);
    System.out.print(" " + attr.getNodeName() +
    "=\"" + attr.getNodeValue() + "\"");
    Node child = node.getFirstChild();
    if (child != null) {
    System.out.println(">"); // close current tag
    while (child != null) { // emit child tags recursively
    displayMetadata(child, level + 1);
    child = child.getNextSibling();
    indent(level); // emit close tag
    System.out.println("</" + node.getNodeName() + ">");
    } else {
    System.out.println("/>");
    static void indent(int level) {
    for (int i = 0; i < level; i++) {
    System.out.print(" ");
    }

    Hi,
    Yes, you need store data to table, and fetch it when page is opened.
    Simple way is create table with few columns and e.g. with CLOB column and then create form based on that table.
    Then modify item types as you like, e.g. use HTML editor for CLOB column
    Regards,
    Jari

  • Data mapping problem

    I posted this on OEPE too, but looks like this is a more appropriate forum. Copied from the other post
    I'm creating a JCA service, and have done the following.
    Use JDeveloper to create mapping to the DB table.
    Use Oepe to create business service
    Deploy service to OSB.
    My Oracle table is very simple
    timestamp - number(32) --primary key
    itemid - number (20) --primary key
    data - varchar2(3000)
    my table.xsd file
    xs:element name="TIMESTAMP" type="xs:decimal"
    xs:element name="ITEMID" type="xs:decimal"
    xs:element name="DATA" type="xs:string nillable="true"
    my mapping file
    <primary-key>
    <field table="MYTABLE" name="ITEMID" xsi:type="column"/>
    <field table="MYTABLE" name="TIMESTAMP" xsi:type="column"/>
    </primary-key>
    <attribute-mapping>
    <attribute-name>timestamp</attribute-name>
    <field table="MYTABLE" name="TIMESTAMP" xsi:type="column"/>
    <attribute-classification>java.math.BigDecimal</attribute-classification>
    </attribute-mapping>
    <attribute-mapping>
    <attribute-name>itemid</attribute-name>
    <field table="MYTABLE" name="ITEMID" xsi:type="column"/>
    <attribute-classification>java.math.BigDecimal</attribute-classification>
    </attribute-mapping>
    <attribute-mapping>
    <attribute-name>data</attribute-name>
    <field table="MYTABLE" name="DATA" xsi:type="column"/>
    <attribute-classification>java.math.BigDecimal</attribute-classification>
    </attribute-mapping>
    the sql is
    SELECT ORIG.DATA, ORIG.TIMESTAMP, ORIG.ITEMID from MYTABLE ORIG, (SELECT MAX(TIMESTAMP) AS MAXTIME, ITEMID FROM MYTABLE WHERE TIMESTAMP BETWEEN #low AND #high GROUP BY ITEMID) MAXRESULTS WHERE ORIG.TIMESTAMP = MAXRESULTS.MAXTIME AND ORIG.ITEMID=MAXRESULTS.ITEMID
    As a result, I get the error The primary key read from the row during the execution of the query was detected to be null
    The data record returned something like this
    =>tabledata....
    =>123455
    MYTABLE.ITEMID =>12
    So I know something is wrong with the mapping for data and timestamp. But everything was generated by jdeveloper. I have no idea what could be the problem. Does anyone know????? I've been looking into this for a while and I'm still lost.
    Thanks in advance!

    Odd, it seems that is cannot find the two fields in the result set. My guess is that database is not returning them in the result set meta-data, but not sure why. May have something to do with the sub-select in the from clause you are using.
    Does it work if you remove the sub-select in the from clause?
    If you take the same SQL and execute through session.executeSQL(), what field names are used in the resulting DatabaseRow? (or if you execute it in any other SQL tool?)
    You could try aliasing the fields in the SQL to try to get their names in the meta-data.
    James : http://www.eclipselink.org

  • I m trying to write to a Mainframe file from informatica mapping. I have created the data map for tarrget file and have imported it in informatica designer.After completing the mapping when i try to run it gives me below error. Please help me out in resol

    This is not a PC/PWX problem, but a mainframe security problem. TIDSS01.POS.IBD.DR0100.DAT is not a GDG file name.It might be the base for a GDG. A GDG file name would look something like eitherTIDSS01.POS.IBD.DR0100.DAT(+1)orTIDSS01.POS.IBD.DR0100.DAT.G001V00 So I suspect that you have the wrong file name.Please talk with your mainframe team.

    HI Dan, I am very new to using power exchnage please help me through this issue, Below is the details : My data map name :postest.test1_POS
    Copy book name which is used to create the power exchange Datamap : TIDSS01.ACTRLP.TEST(POSCPY)
    Main frame GDG name : TIDSS01.POS.IBD.DR0100.DAT Below are the Session properties i have set in informatica workflow:Schema Name Override : postest
    Map Name Override : test1_POS
    PWX Partition Strategy : Overrides driven
    Space : CYLINDER
    File Name Override :TIDSS01.POS.IBD.DR0100.DAT(+1)
    I am getting below error: PWXPC_12190
    Message: [ERROR] Transformation [test1_POS]: A permanent error has been encountered in PowerExchange: [
    [Informatica][SCLI PWX Driver] PWX-00267 DBAPI Error. DB_INSERT failed for file postest.test1_POS.
    [Informatica][SCLI PWX Driver] PWX-01279 DBNTC INSERT failed for file postest.test1_POS. Rcs 1274/2019/268.
    [Informatica][SCLI PWX Driver] PWX-01274 DBNTC INSERT Failed for file postest.test1_POS, rcs 260/2019/268.
    [Informatica][SCLI PWX Driver] PWX-02019 SQL insert failure. SQLCODE = 268.
    [Informatica][SCLI PWX Driver] PWX-00268 DBAPI Error. DB_OPEN failed for file TIDSS01.POS.IBD.DR0100.DAT.
    [Informatica][SCLI PWX Driver] PWX-00220 DYNALLOC failed for file TIDSS01.POS.IBD.DR0100.DAT RCs = 9700/0.
    [Informatica][SCLI PWX Driver] PWX-00221 DATA SET: TIDSS01.POS.IBD.DR0100.DAT WITH RETURN CODE 08 REASON CODE 00   
    [Informatica][SCLI PWX Driver] PWX-00221 RACF FUNCTION: RACDEF FOR   
    [Informatica][SCLI PWX Driver] PWX-00221 IGD308I DATA SET ALLOCATION REQUEST FAILED -   
    [Informatica][SCLI PWX Driver] PWX-00221 IKJ56893I DATA SET TIDSS01.POS.IBD.DR0100.DAT NOT ALLOCATED+   
    [Informatica][SCLI PWX Driver] PWX-07404 Permanent error set by Open call on file "TIDSS01.POS.IBD.DR0100.DAT" because dynamic allocation failed. rc=4
    [Informatica][SCLI PWX Driver] PWX-07515 Insert call for table postest.test1_POS met a permanent error. Return codes 267 2019 268.
    ]

  • JCO - Get meta data - Grey status in JCO connections tab

    Hi all,
    I read many post on this topics within this forum but I didn't succeed to get meta data required and to set correctly my connection.
    Let's start quickly to give you my conf
    In the j2ee admin
    -> Services > SLD Data Supplier > CIM Client Generation Settings
    I set fields with : SLD7000 / 50000 and my logon info
    Save and test -> result is ok !
    In my web dynpro application, I am able to get correct BAPI from BCE system using my logon info. And I map my view to display data from the corresponding BAPI called.
    So at this time, in my IDE, the connection to the SAP Backend system SAP works because I can get the list of BAPIs from the BCE SAP Backend System as well.
    Build and deploy my application.
    Now, let's go to webdynpro welcome page on my j2ee server : http://<host>:<port>/webdynpro/welcome
    -> content administration
    -> I select from the left tree browser my application, and open the "JCO Connections" Tab. I can see my connections previously I set in my webdynpro application. But I CAN'T use the button "Create" to configure new JCO connection. ??
    Last thing:
    in the BCE backend system
    transaction : RZ70
    I have, host = sldmain and service = sapgw47
    Also, in the list of data collection programs, everything is checked as active except the program "_SLD_RFC"
    I don't know if it is important....?
    Finally, I give you from the exception I got in my browser only lines "Caused by"....
    Caused by: com.sap.dictionary.runtime.DdException: TypeBroker failed to access SLD: Error while obtaining JCO connection.
    Caused by: com.sap.tc.webdynpro.services.sal.sl.api.WDSystemLandscapeException: Error while obtaining JCO connection.
    Caused by: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create J2EE cluster node in SLD for 'J2E.SystemHome.localhost': com.sap.lcr.api.cimclient.LcrException: CIM_ERR_NOT_FOUND: No such instance: SAP_J2EEEngineCluster.CreationClassName="SAP_J2EEEngineCluster",Name="J2E.SystemHome.localhost"
    Thanks a lot for your support and help,
    Best regards,
    Emmanuel.

    Hi Emmanuel
    You said
    " I select from the left tree browser my application, and open the "JCO Connections" Tab. I can see my connections previously I set in my webdynpro application. But I CAN'T use the button "Create" to configure new JCO connection. ??"
    What is their status ? Is it green on red? Usually create is greyed out if it is green.  What about Edit?
    Try creating a new Web Dynpro component with another destination name ,deploy and then check the Content administrator if these new destinations have Create enabled
    After running RZ70 did you check the Technical System in SLD administration to see if the technical details have been propogated ?
    Regards
    Pran

  • [JPA] Exception Description: Missing meta data

    I'm getting the following error message trying to compile a simple EE App that
    contains a single Entity Class.
    Exception Description: Missing meta data for class [java.lang.Integer].
    Ensure the class is not being excluded from your persistence unit by a
    <exclude-unlisted-classes>true</exclude-unlisted-classes> setting.
    If this is the case, you will need to include the class directly by adding a
    <class>[java.lang.Integer]</class> entry for your persistence-unit.That class contains a private Map<Long, Integer> list and I'm using SJSAS 9 and NetBeans 5.5.
    Thanks in advance,
    Stefano

    I'm also experiencing this problem.
    I'm pretty sure the cause of this is your "Map<Long, Integer>" and my "List<Integer>".
    Doesn't GlassFish implement this JPA specification?
    I see the post is been unreplied for a month: Please, somebody help us!
    Tks,
    Raul Oliver

  • Validate step retrieves ESSBASE target system meta data

    Dear all,
    for partucular reason we use for a specific dimension only *:* mappings.
    This mapping causes that the validate step is always succesful for that dimension.
    Sometimes we get an error during the export step, which says that the element does not exist in the ESSBASE meta data.
    So, I we implemented a logic that is retrieving the imported elements in the target system ESSBASE meta data.
    If they do not exist, the usre gets at the validate script an error pop-up.
    more or less following logic:
              Set API.IntBlockMgr.IntegrationMgr.PobjIntegrate = BlOCKPROC.ActConnect("GetDimensionMembers")
              If API.IntBlockMgr.IntegrationMgr.PobjIntegrate.intResult Then
                        'Get the Dimension list
                        Set objR = BlOCKPROC.DimensionList(CStr("UD1"), 99)          
                        If objR.lngListCount > 0 Then
                             Set RES.PobjXArray = DW.DBTools.fCreateXArrayDB()
                             RES.PobjXArray.LoadRows objR.varList     
                             For lngDimCounter = 0 To objR.lngListCount          
                                  USERARRAY.Add UCase(RES.PobjXArray(lngDimCounter, 0)), UCase(RES.PobjXArray(lngDimCounter, 0))
    MY ISSUE:
    With the upper logic all leaf members are retrieved. Is it possible to retrieve (a subset) only a specific node an its children/children-children/etc. or tree
    e.g. for this hierarchy only the recent members tree
    DIMENSION
    x Archived Members (not in Scope)
    x Member1
    x Member2
    x Member3
    x Recent Members (in Scope)
    x Member5
    x Member6
    x Member7

    yes you are right.
    Unfortunately every FDM run would cause a large number o elements that have to be mapped. even it is a 1:1 mapping. -> a huge work
    furthermore: FDM in standard does not catch the mapping only on specific (allowed) nodes in the essbase meta data.

  • Meta-data conversion

    Is there any info on when a tool will be available to convert kodo 3
    jdo/mapping files to JDO 2 meta-data files?
    thanks,
    Clive

    Is there any info on when a tool will be available to convert kodo 3
    jdo/mapping files to JDO 2 meta-data files?You should be able to convert files using the mappingtool's built-in
    export/import capabilities. Something like this:
    <with MappingFactory set to kodo3 value:>
    mappingtool -a export -m true -f export.jdo2 package.jdo
    <change MappingFactory to kodo4 value, then:>
    mappingtool -a import -m true export.jdo2
    Check the docs on the mappingtool for exact options.

  • Photo Meta data stripped out

    Other than a small savings in file size why would iWeb strip all of the photos metadata, i.e. keywords, ©info, owner name, description, even the filename itself, etc. out of photos added to iWeb.
    Is there any way around this, I've tried drag and drop from a folder with the same results.
    Considering Apple makes it's living on copyrights why do they make it so difficult for the rest of us to reserve ours?
    Otherwise the new iWeb rocks!

    You must be talking about non-standardized meta data, as in iphoto meta data or some other apps???
    Because I'd geo-tagged my photos with standardize meta data (EXIF) and iweb does not strip it off.
    I can see iweb resize the photos, but EXIF meta data is intact, I can build full google earth and google map file from iweb photo page rss.xml file.
    This google map is based on iweb photos page: http://home.cyclosaurus.com/AlumRock_Park_GoogleMaps.html
    and this is the photos page, the photos are geotag with standard EXIF:
    http://www.cyclosaurus.com/Home/PhotoAlbums/Pages/Alum_RockPark.html
    You can download my photos and you will see EXIF meta data is there.

  • Can not get PK-FK in meta-Data of MySql....Help me pls.

    Hello Every one.
    I can not to get the PK and FK from Meta-Data Database of mysql-4.1.1a-alpha. Anyway I tried to do the
    followihg
    1. OS windows 2000 Pro.
    2. set configuration Script support InnoDB Table Type as the follow in my.ini file.
    [mysqld-nt]
    innodb_data_home_dir = C:\mysql\data
    innodb_data_file_path =\ibdata\ibdata1:2000M // in folder \data\ i was created folder ibdata
    3. I try to create data as reference in example java code and table :persons , shirt as the example in
    Create innodb table Type of mysql doc.
    4. the code test as following
    In the test code i can get the result only from method : getPrimarykey(...); only and the other method ,getExportedKeys, getImportedKey , getCrossReference the result in ResultSet is null.
    anyway, this code i can apply in the oracle db with change db driver .
    I wish the answer why? and the actually the second parameter of this parameter , as refer scheme name , the scheme name is ?
    Thank you
    import java.sql.*;
    public class testMeta {
    public testMeta() {
    ResultSet rs=null;
    String url = "jdbc:mysql://localhost:3306/testinnodb";
    Connection con = null;
    try{
    Class.forName("org.gjt.mm.mysql.Driver");
    }catch(ClassNotFoundException ex){
    System.out.println(ex.getMessage());
    try{
    con = DriverManager.getConnection(url,"root","rootpwd");
    prtS("getConnection complete");
    DatabaseMetaData metaData = con.getMetaData();
    Connection con2 = metaData.getConnection();
    String type[] = new String[1];
    type[0] = new String();
    prtS("*************** GET Schemas ***************");
    rs = metaData.getSchemas();
                   while(rs.next()){
    System.out.println("12345");
    prtS("TABLE_CAT" + " : " + rs.getString(0));
    prtS("TABLE_CAT" + " : " + rs.getString("TABLE_SCHEM "));
                   rs=null;
    prtS("*************** GET PRIMARY KEYS ***************");
    rs = metaData.getPrimaryKeys(con.getCatalog(),null,"persons");
    while(rs.next()){
    prtS("TABLE_CAT" + " : " + rs.getString("TABLE_CAT"));
    prtS("TABLE_SCHEM" + " : " + rs.getString("TABLE_SCHEM"));
    prtS("TABLE_NAME" + " : " + rs.getString("TABLE_NAME"));
    prtS("COLUMN_NAME" + " : " + rs.getString("COLUMN_NAME"));
    prtS("KEY_SEQ" + " : " + rs.getString("KEY_SEQ"));
    prtS("PK_NAME" + " : " + rs.getString("PK_NAME"));
                   rs=null;
    prtS("*************** GET Exported KEYS ***************");
    rs = metaData.getExportedKeys(con.getCatalog(),null,"shirt");
    while(rs.next()){
    prtS("FKCOLUMN_NAME" + " : " + rs.getString("FKCOLUMN_NAME"));
                   rs=null;
    prtS("*************** GET Imported KEYS ***************");
    rs = metaData.getImportedKeys(con.getCatalog(),null,"persons");
    while(rs.next()){
    prtS("PKTABLE_CAT" + " : " + rs.getString("PKTABLE_CAT"));
    rs=null;
    prtS("*************** GET CrossReference ***************");
    rs = metaData.getCrossReference(con.getCatalog(),null,"persons",con.getCatalog(),null,"shirts");
    while(rs.next()){
    prtS("PKTABLE_CAT" + " : " + rs.getString("PKTABLE_CAT"));
    }catch(SQLException ex){
    prtS(ex.getMessage());

    How i know the jdbc driver not compatible to this
    mechanismBy reading the documentation tthat comes with your driver. Recent versions of the MySQL JDBC driver do support the getExportedKeys/ImportegKeys methods but the table needs to be crated as InnoDB.
    So run the SQL command
    show table statusWhats under the Type column for your table? If it isn't InnoDB then this isn't going to work.
    If it is InnoDB but getExportedKeys/ImportegKeys still don't work then you haven't used the "foreign key" constraint in your "create table" command

  • Moving LR5 catalog (Irdata & Ircat) to a new hard drive and photos. Lost all meta data - How do I move meta data along with catalog?

    I moved LR5 catalog (Irdata & Ircat) to a new hard drive and photos. Lost all meta data - How do I move meta data along with catalog?
    The meta data for each image is missing.
    I have over 2,000 images. I don't want to go back through each image and add meta data.
    Is there some way to move everything?

    No, do not re-import your images. I assume you can see the thumbnails in the library module, just cannot access the full images, right? If this is the case there should be an exclamation mark in the top right corner of every one of your pictures and you only have to tell LR where the images are now.
    Click the exclamation mark of one of the images and a dialog window should pop-up, telling you that LR cannot find the file, but with an option to locate it. Press "Locate" and navigate to the folder on your new HD where the file is. If in the new external HD you kept the same folder structure that you had on the internal disk, LR will be able to find all your images and re-link them to the database without further intervention.

  • Can't  view Impact and Lineage tab in Meta data report

    Post Author: mohideen_km
    CA Forum: Data Integration
    Hi guys,
    I have a problem in meta Data Report ..
    IN Impact and Lineage Analysis
    I can View only OVerview Tab.I can not view Impact and Lineage
    Help me to figure out..
    Mohideen

    Hi,
    Select text column (varchar column) -> Treat Text as -> custom text format ->Remove @ (default) -> add [html]<script>sometext(‘@’)</script> followed by your javascript
    for eg:
    [html]<script>buildGoogleChart(‘@’)</script> <head> <script type="text/javascript"> function show_alert() { alert("Hello! I am an alert box!"); } </script> </head> <body> <input type="button" onclick="show_alert()" value="Show alert box" /> </body> </html>
    hope helps u.........
    cheers,
    Aravind

Maybe you are looking for