Data warehouse Admin Console - MySQL Physical Data Source

We have some tables on a MySQL database that we'd like to include in our ETL process. The data is to be loaded into our Oracle 11g R1 data warehouse after the transformations are completed.
Everything works with the exception of adding a physical data source in the DAC (Data warehouse administration console) for the MySQL database. There is no connection type for this database. I don't see how it's setup in the documentation.
Can someone explain what needs to be done or direct me to the docs? Or, can this be done?
Does it have to be done? The connection details are stored in the odbc.ini file on the server. So that's managed by Informatica. Will the workflow call from the DAC be sufficient?
Thanks,
LWatkins
DAC 10.1.3.4.0.20080729.2025
Informatica PowerCenter 8.1.1
AIX 5.3/64Bit
OBIA 7.9.5
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit
MySQL 5.5
Edited by: LWatkins on Mar 25, 2013 12:32 PM

I would suggest this work only if you are able to connect MySQL thru Informatica;
1) Create Connection in Worflow Manager and try to use the same connecton in sessions and try to avoid parameters from dac
2) Create same connection in DAC pointing to Oracle or MSSQL or DB2
3) Add tasks in DAC and do not add source and target tables
Another workaround to handling full loads using dac system variables or any other
If helps mark
Edited by: Srini VEERAVALLI on Mar 25, 2013 4:49 PM

Similar Messages

  • Resources created w/MQ Admin Console not seen in GF Admin console

    Environment:
    Glassfish Enterprise Server v2.1
    JDK 1.6.0_11-b03 (bundled)
    Sun Java(tm) System Message Queue 4.3 (Build 7-g)
    Windows XP SP3
    Following the documentation in Chapter 1 of the Sun Java System Message Queue 4.1 Administration Guide[1] I used the MQ Admin Console SWING tool to create an ObjectStore with the following properties:
    java.naming.provider.url - file:///C:/imq_admin_objects
    java.naming.factory.initial - com.sun.jndi.fscontext.RefFSContextFactory
    In that object store I created six destinations (3 Queues and 3 Topics) along with one connection factory.
    I also used the Admin Console to create one Broker with host set to localhost and primary port set to 7676. Within that broker I created 6 physical destination for the destinations I created in the object store.
    In the Glassfish administration console under Configuration -> Java Message Service -> JMS Hosts -> Physical Destinations none of the ones I created in the Broker using the MQ Admin console were visible. I suspected this was due to the fact that GF needs the naming properties I set when I created the ObjectStore with the MQ Admin console so I set them under Configuration -> Java Message Service : Additional Properties. When I did that and restarted the domain the physical destinations I created with the MQ Admin console now showed up in the GF admin console's Physical Destinations section.
    However, the ConnectionFactory and Destinations I created in the ObjectStore do not show up in the GF Admin console's Resources -> JMS Resources -> Connection Factories and Resources -> JMS Resources -> Destination Resources respectively. I suspect this is also a case of needing to feed some properties to the domain somewhere but I don't see an obvious place to do so. Nor am I sure what they should be since they need to be scoped to the JMS resource but simply adding a property like java.naming.factory.initial to a more global scope then one affecting only JMS would be 'a bad thing'.
    FWIW the GF Enterprise Server 2.1 Administration Guide [2], Chapter 4 - Configuring Java Message Service Resources does not touch on this subject either.
    TIA,
    -NBW
    [1] http://docs.sun.com/app/docs/doc/819-7755/gcrlv?a=view
    [2] http://docs.sun.com/app/docs/doc/820-4335/abljw?a=view
    Edited by: NBW-2009 on May 27, 2009 1:24 PM

    You might want to check with the glassfish/application server forum first
    http://forums.sun.com/category.jspa?categoryID=109
    -Mathi

  • Application server admin console

    i want run sample code for jms jupiter and earth program from j2eetut1.4
    in my sun app server8 admin console the Physical Destinations option under jms resources is not found.
    what might be the problem

    what might be the problemYou're in the wrong forum.
    http://swforum.sun.com/jive/category.jspa?categoryID=10

  • Why do I get timeout when deploying SQL Server data source in Weblogic Admin Console?

    Hi all
    I'm attempting connectivity between WLS 10.3.6.0 and SQL Server 2008R. I've downloaded sqljdbc4.jar and added to the end of the Weblogic Classpath in commEnv.cmd. Then I set up a data source in Admin Console and pressed the Test Data Source button - success. But when I tick the box to deploy to AdminServer it hangs for ages and I get timeout exception.
    Any ideas?
    Many thanks
    James

    Make sure the web server settings between the QA and the Production servers are also compatible.
    I suspect your suspecion about permissions is the closest to the answer.  But this is a little out of my depth of expertise.
    Realize that ColdFusion default behavior is to NOT generate and actual swf FILE.  Rather what it does is generate the swf content in memory and directly deliver it to the client.  But if the web server is configured to look for an actual file system file you may have a clash going on

  • MySQL data source/JNDI name not found

    Hi,
    I created a JDBC data source (MySQLDS) and a connection pool through AppServer 7's Admin Console but my local entity bean couldn't find it. It thrown a NameNotFoundException. I have the following descriptor in the sun-ejb-jar.xml
    <ejb>
    <ejb-name>ServiceCatalogBean1</ejb-name>
    <jndi-name>ejb/ServiceCatalogBean1</jndi-name>
    <resource-ref>
    <res-ref-name>jdbc/MapServiceDS</res-ref-name>
    <jndi-name>MySQLDS</jndi-name>
    </resource-ref>
    </ejb>
    Any advice will be highly appreciated.
    thanks in advance
    Frank
    More info, I m using JDBC driver of mm.mysql-2.0.4 and have no problem running with WebLogic 7

    Hi,
    Can you post the relevant <jdbc-resource> element in server.xml? Also, your res-ref in ejb xml?
    Thanks.
    -Tuan.

  • JPA with MySQL-Data-Source

    Hello Forum,
    I have a question regarding usage of a MySQL-Data-Source in combination with JPA
    on the SAP NetWeaver Application Server, Java ™ EE 5 Edition.
    I have setup a custom datasource like explained in paper:
    "Working with Database Tables, DataSources and JMS Resources"
    - registered the database driver via telnet (Using mysql-connector-java-5.0.3-bin.jar)
    - created the data-sources.xml file underneath the META-INF dir of the EAR project
    [code]
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE data-sources SYSTEM "data-sources.dtd" >
    <data-sources>
      <data-source>
        <data-source-name>titan_cruises_ds</data-source-name>
        <driver-name>mysql-connector-java-5.0.3-bin.jar</driver-name>
         <init-connections>1</init-connections>
         <max-connections>10</max-connections>
         <max-time-to-wait-connection>60</max-time-to-wait-connection>
         <expiration-control>
              <connection-lifetime>600</connection-lifetime>
              <run-cleanup-thread>60</run-cleanup-thread>
         </expiration-control>
         <sql-engine>native_sql</sql-engine>
        <jdbc-1.x>
          <driver-class-name>com.mysql.jdbc.Driver</driver-class-name>
          <url>jdbc:mysql://ourHost.internal.com:3306/practise_titan_cruises</url>
          <user-name>myUser</user-name>
          <password>myPass</password>
        </jdbc-1.x>
      </data-source>
    </data-sources>
    [/code]
    After that I manually created the persistence.xml underneath the META-INF dir of the EJB project.
    [code]
    <persistence xmlns="http://java.sun.com/xml/ns/persistence" version="1.0">
         <persistence-unit name="titan_cruises_pu">
              <jta-data-source>titan_cruises_ds</jta-data-source>
         </persistence-unit>
    </persistence>
    [/code]
    After that I created the Entity named "Cabin" and the corresponding table within the db.
    Entity code:
    [code]
    package de.collogia.beans.pojo.ship;
    import java.io.IOException;
    import java.io.Serializable;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.GeneratedValue;
    import javax.persistence.Id;
    import javax.persistence.Table;
    This persisted POJO class models the cabin data.
    <p>
    In this class persistence annotations are placed on the getter methods
    of the attributes. This tells the persistence manager to access them
    via the corresponding get- and set-Methods.</p>
    (Unfortunately this does not work on NetWeaver and I had to place them
    on field level aggain...)
    @author Henning Malzahn ([email protected])
    svn-revision:         $Rev:: 670                                           $:
    svn-lasted-edited-by: $Author:: henning                                    $:
    svn-last-changed:     $Date:: 2007-02-21 21:49:51 +0100 (Wed, 21 Feb 2007) $:
    @Entity
    @Table(name = "cabin")
    public class Cabin implements Serializable {
        /** The generated serial version UID used for serialization. */
        private static final long serialVersionUID = -8522497314498903378L;
        /** The actual version number of this class used for serialization. */
        private static int actualVersion = 1;
        /** The cabin's id. */
        @Id
        @GeneratedValue
        @Column(name = "id")
        private long id;
        /** The cabin's name */
        @Column(name = "name")
        private String name;
        /** The cabin's deck level */
        @Column(name = "deck_level")
        private int deckLevel;
        /** The cabin's ship id */
        @Column(name = "ship_id")
        private int shipId;
        /** The cabin's bed count */
        @Column(name="bed_count")
        private int bedCount;
    /---- Serialization/ Deserialization methods -/
    Method that is responsible for deserialization of the object.
    @param in The <code>ObjectInputStream</code> object to read
              the data from.
    @throws IOException That may occur when reading from the
                        <code>ObjectInputStream</code> object
    @throws ClassNotFoundException That may occur when invoking the default
                                   deserialization mechanism.
        private void readObject(final java.io.ObjectInputStream in)
            throws IOException, ClassNotFoundException {
            /* Invoke default deserialization mechanism. */
            in.defaultReadObject();
            /* Read the actual version number of the class. */
            actualVersion =  in.readInt();
        } // End of readObject()
    Method that is responsible for serialization of the object.
    @param out The <code>ObjectOutputStream</code> object to write
               the data to.
    @throws IOException That may occur when writing to the
                        <code>ObjectOutputStream</code> object.
        private void writeObject(final java.io.ObjectOutputStream out)
            throws IOException {
            /* Invoke default serialization mechanism. */
            out.defaultWriteObject();
            /* Write the actual version number of the class. */
            out.writeInt(actualVersion);
        } // End of writeObject()
    /---- Defining constructors -/
    Private default constructor.
        private Cabin() {
        } // End of default constructor
    Full constructor.
    @param name The cabin's name.
    @param deckLevel The cabin's deck level.
    @param shipId The cabin's ship id.
    @param bedCount The cabin's bed count.
        public Cabin(final String name,
                     final int deckLevel,
                     final int shipId,
                     final int bedCount) {
            this.name = name;
            this.deckLevel = deckLevel;
            this.shipId = shipId;
            this.bedCount = bedCount;
        } // End of full constructor
    /---- Overridden class methods -/
    Returns a string representation of the cabin's data.
    @see java.lang.Object#toString()
        @Override
        public String toString() {
            StringBuffer strBuf = new StringBuffer();
            strBuf.append(this.name);
            strBuf.append("\n");
            strBuf.append(this.deckLevel);
            strBuf.append("\n");
            strBuf.append(this.shipId);
            strBuf.append("\n");
            strBuf.append(this.bedCount);
            return strBuf.toString();
        } // End of toString()
    /---- Defining instance methods -/
    Get method for the member "<code>id</code>".
    @return Returns the id.
        public long getId() {
            return this.id;
    Set method for the member "<code>id</code>".
    HTDODO hm: Check whether it is possible to have setId method
    using private accesss level with NetWeaver JPA-Provider!
    @param id The id to set.
        private void setId(final long id) {
            this.id = id;
    Get method for the member "<code>name</code>".
    @return Returns the name.
        public String getName() {
            return this.name;
    Set method for the member "<code>name</code>".
    @param name The name to set.
        public void setName(final String name) {
            this.name = name;
    Get method for the member "<code>deckLevel</code>".
    @return Returns the deckLevel.
        public int getDeckLevel() {
            return this.deckLevel;
    Set method for the member "<code>deckLevel</code>".
    @param deckLevel The deckLevel to set.
        public void setDeckLevel(final int deckLevel) {
            this.deckLevel = deckLevel;
    Get method for the member "<code>shipId</code>".
    @return Returns the shipId.
        public int getShipId() {
            return this.shipId;
    Set method for the member "<code>shipId</code>".
    @param shipId The shipId to set.
        public void setShipId(final int shipId) {
            this.shipId = shipId;
    Get method for the member "<code>bedCount</code>".
    @return Returns the bedCount.
        public int getBedCount() {
            return this.bedCount;
    Set method for the member "<code>bedCount</code>".
    @param bedCount The bedCount to set.
        public void setBedCount(final int bedCount) {
            this.bedCount = bedCount;
    } // End of class Cabin
    [/code]
    After that I created the TravelAgentBean, a Stateless Session Bean, implementing
    a remote interface that allows construction and persisting of new Cabin objects:
    [code]
    package de.collogia.beans.session.stateless;
    import javax.ejb.Stateless;
    import javax.persistence.EntityManager;
    import javax.persistence.PersistenceContext;
    import de.collogia.beans.pojo.ship.Cabin;
    Class that implements the <code>TravelAgentRemote</code> interface
    and defines the business methods of the TravelAgent service.
    @author Henning Malzahn ([email protected])
    svn-revision:         $Rev:: 670                                           $:
    svn-lasted-edited-by: $Author:: henning                                    $:
    svn-last-changed:     $Date:: 2007-02-21 21:49:51 +0100 (Wed, 21 Feb 2007) $:
    @Stateless
    public class TravelAgentBean implements TravelAgentRemote {
        /** The <code>Log</code> object for this class. */
    //    private static final Log LOGGER;
        /** The <code>PersistenceManager</code> object. */
        @PersistenceContext(unitName = "titan_cruises_pu")
        EntityManager em;
    /---- Static initializer -/
    //    static {
    //        LOGGER = LogFactory.getLog(TravelAgentBean.class);
    //    } // End of static initializer block
    /---- Implementing remote interface methods -/
    {@inheritDoc}
        public void createCabin(final Cabin cabin) {
            this.em.persist(cabin);
        } // End of createCabin()
    } // End of class TravelAgentBean
    [/code]
    After that I created a Controller class containing a main method that looks up the remote
    interface of the TravelAgentBena like explained in document "Accessing Enterprise JavaBeans Using JNDI
    in SAP NetWeaver Application Server, Java ™ EE 5 Edition" written by Validimir Pavlov of SAP NetWeaver
    development team.
    Unfortunately I receive an Exception after invoking the createCabin(...) method.
    On the console of the NWDS I receive:
    [code]
    javax.ejb.EJBException: Exception in getMethodReady() for stateless bean sap.com/test2Earannotation|test2Ejb.jarannotation|TravelAgentBean;
    nested exception is: com.sap.engine.services.ejb3.util.pool.PoolException: javax.ejb.EJBException: Cannot perform injection over bean instance
    Caused by: java.lang.RuntimeException: The persistence unit is inconsistent:
    The entity >>de.collogia.beans.pojo.ship.Cabin<< is mapped to the table >>cabin<<, which does not exist.
    [/code]
    But if I look at the log file located in "C:\NWAS_JAVAEE5\JP1\JC00\j2ee\cluster\server0\log\defaultTrace.0.trc"
    I see the real reason is:
    [code]
    [EXCEPTION]
    #6#1064#42000#You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax
    to use near '"cabin"' at line 1#collnx02.collogia.de:3306:null:practise_titan_cruises#select * from "cabin"#com.mysql.jdbc.exceptions.MySQLSyntaxErrorException:
    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"cabin"' at line 1
         at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:936)
         at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2870)
         at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1573)
         at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1665)
         at com.mysql.jdbc.Connection.execSQL(Connection.java:3124)
         at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1149)
         at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1262)
         at com.sap.sql.jdbc.basic.BasicPreparedStatement.executeQuery(BasicPreparedStatement.java:99)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:307)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:264)
         at com.sap.engine.services.dbpool.wrappers.PreparedStatementWrapper.executeQuery(PreparedStatementWrapper.java:274)
    [/code]
    My goodness - what a long post - sorry for this - I hope I provided all information
    necessary to deal with the issue.
    Am I thinking in the right direction to blame attribute [code]<sql-engine>native_sql</sql-engine>[/code]
    of file data-sources.xml for the beaviour? Are there any other argument options than native_sql?
    Thanks in Advance!
    Henning Malzahn

    Hi Henning,
    > Despite the fact it's working now I have to do some
    > changes to my code currently
    > developed using JBoss/ Hibernate combination.
    > Hibernate allows you to have the
    > default no-arg constructor with private visibility -
    > any special reason for the fact that
    > only protected is allowed on NetWeaver?
    Here we strictly implemented the checks according to the requirements of the JPA specification. Technically, we could do with private constructors as well. But the JPA specifications requires the constructor to be protected to allow a JPA implementation to subclass entities if needed.
    > The entities in the project are final classes
    > so declaring a ctor protected doesn't really make
    > sense...
    For the same reason, your entities should not be final. Are we missing a check here ?
    > Also the persistence.xml parameter
    >
    hibernate.hbm2ddl.auto
    with the value of
    > create-drop is very useful while
    > developing the app - everytime you deploy the project
    > you get a fresh database.
    > Is there a comparable option for NetWeaver?
    No, unfortunately, there is no comparable option in SAP JPA (yet). We understand that there is a need for forward mapping. We would have liked to delegate this task to the JPA design time (i.e. Dali). However, we had to discover that Dali does not perform this task properly and we can't recommend using it any more.
    Consequently, there is no automatic schema generation in SAP JPA 1.0.
    >
    > Another thing is the extra TMP_SEQUENCE table which
    > isn't necessary using JBoss and
    > Hibernate - what's the reason for that?
    With Hibernate Entity Manager, the id generation strategy in use with GenerationType.AUTO depends on the database dialect. This means that depending on the database dialect, IDENTITY columns, SEQUENCES or generator tables (TableHiLo) are required. As Hibernate has the before mentioned schema generation property this fact can be hidden to the user.
    In SAP JPA, we are always using a table generator if GenerationType.AUTO is used. This allows for better portability across databases. It requires the table TMP_SEQUENCE. As we unfortunately do not have a schema generation capability, the user must create this table.
    Best regards,
    Adrian

  • MDS data source target on Admin server for owsm policies

    Hi,
    We have a clustered environment with admin and manage servers on two different physical machines.
    Bust admin server doesnt have DB connectivity only manage server has DB access where owsm polcies lies.
    Should admin server also have owsm policy access or is it fine if we have owsm pokicy access only on manage servers.
    Actually when we try to deploy services having owsm policies through admin server, we are facing issues.
    Thanks,
    Sowmya

    The issue was solved by resetting the Data Source's credentials.
    I hope this helps to somebody else,
    Ben

  • Cannot view SharedObject data in Admin Console

    I'm attempting to view Shared Object data in my FMS Administration Console, but I consistently get the error:
    Object encoding error; terminating connection
    I'm using Flex 3 with FMS 3.5, I'm positive that everything is using AMF3. The Shared Objects do seem to work - I can connect to the shared object through another instance of the app and pull saved data - but they are not inspectable in the administration console. Also,  very often when a new instance connects to the server I get a RangeError and all of my Flash Player instances crash. Any idea what could possible be going on?

    Hi,
    It is documented. Pls visit http://help.adobe.com/en_US/FlashMediaServer/3.5_AdminGuide/WS5b3ccc516d4fbf351e63e3d119f2 925f73-7fef.html#WS5b3ccc516d4fbf351e63e3d119f2925f73-7ff0 for the details about the same.
    More over, did you set "application.allowDebug" property to true in your server side code or in the Application.xml
    <Application>
    <Debug>
    <AllowDebugDefault>true</AllowDebugDefault>
    </Debug>
    </Application>
    you have to make debug connections to view your shared objects in admin console.
    Regards,
    Janaki L

  • Error while importing the tables from MySQL using the data source connection

    Hi,
    I am trying to import tables from MySQL into Powerpivot using the data source connection, if use the import using the Query option its working fine but not with the select list of table option.
    when i click on the select list of tables option, i get the below error after selecting all the tables to be imported:
    OLE DB or ODBC error.
    An error occurred while processing table 'XXXXXXXXXX'.
    The current operation was cancelled because another operation in the transaction failed.

    Hi Bharat17an,
    Please provide the detail information when create the MySQL connection in your PowerPivot model. Here is a good article regarding "how to Use MySQL and Microsoft PowerPivot Together" for your reference, please see:
    http://www.datamensional.com/2011/09/how-to-use-mysql-and-microsoft-powerpivot-together-2/
    If this issue still persists, please help to collection windows event log information. It maybe helpful for us to troubleshoot this issue.
    Regards,
    Elvis Long
    TechNet Community Support

  • Error while activationg BI content for BI admin cockoit for data sources

    Hi all,
    I am doing BI content activation for BI admin cockpit, from SPRO -- Activation of BI content of BI admin cockpit , i ran the activation but it got failed. The error message says:
    DataSource 0TCTBWOBJCT_ATTR from source system BWQCLNT500 could not be activated
    This error is coming for data sources :0TCTPRCSVAR_ATTR, 0TCTBWOBJCT_TEXT, 0TCTPRCSVAR_TEXT and 0TCTBWOBJCT_ATTR.
    I have applied the sap note 1110642 , 1110641 . also ran the program  RSSM_SHIPDVERS_CLEANUP  but did not able to find these info packages for this data spurces:
    0PAK_8K20VQGEBZRQXUE2PKWS90ZO8
    0PAK_934GEKKIBBDKPVMVDJHVNPIMV
    0PAK_99MQNPZISKNSNWKT9HF2CWPLK
    0PAK_BFYU3MMMU2T2WOI50MXHCEH07
    I also tried activating these data sources manually in BI content one by one , there alaso iam getting error :
    Data source can not be actvatedm, troied in RSDS also by replicating but says there also that this data source does not exist in source system.
    Due to this data sources iam geting problem inmy process chain..
    PLease help .Pts wil be assigned.
    Thanks and Regards.
    Akash

    First of all Rather than using SPRO to install Admin Cockpit, its better to install it from Business Content, else many of your existing InfoObjects would get overwritten and you would require to revert them back.
    2ndly, check if these DataSources are available in your source system. While installing from Business Content, the system prompts to log in to source system interactively and would install the DataSources in teh source system if they are not there already.
    Also check what versions are your Source Systems on. Older versions may not have the DataSources while the new concept of Admin Cockpit is available in BI7.0 which goes well with ECC.
    Regards
    Anujit Ghosh

  • Data Source Groups in Query no reflecting changes in Admin

    Version of US used: 1.0.3
    I removed some data source groups and add new ones in the Admin Application. But the default Query Application does not reflect these changes. That is, when I go to Advanced Search in the Query Application, the list of Data Source Groups displayed (i.e. the checkboxes) does not include the new ones I added and it still shows the ones I already deleted.
    My question: how to update the data groups in the Advanced Query Screen? Do I have to execute all the schedules again before the updates are reflected?
    Thanks!

    Hi,
    The caching Cindy was referring to is NOT in the browser. It is in the JSP middle-tier.
    The JSP cache the data groups information to avoid fetching from the database everytime,
    since data groups change infrequently.
    In addition, in 1.0.3 version, this cache does not have any invalidation logic. So once the
    search application has started (after first use), the data groups will never change unless
    the application server (apache+jserv) is restarted.
    Please restart the application server to see your changes take place. If you wish, you can
    change the caching logic in the jsp itself. You may implement some trivial invalidation based
    on time, or disable it if your server can handle the load.
    Note: Ultra Search samples in 9.0.2 or later releases have invalidation of cache every 15 mins
    or so.
    David

  • BI Admin Tool and XSLT transformation for XML data source - How it works ?

    Hello,
    There is a possibility to import data from XML data source using BI Admin Tool.
    In the import window we can point XSLT file. What is the purpose of that XSLT field?
    Why I am asking ?
    I thought it is smth like XSLT processor, but simply it doesnt work.
    What I did:
    - I pointed XML data source file
    - I pointed XSLT transformation file
    - Click OK, and still get the message that the XML file structure is not supported
    After that I transformed that XML file with some desktop XSLT processor using the same XSLT file, and I tried to connect that file directly using BI Admin tool.Then it works. So it means that the transformation is ok.
    So basically one question comes to my mind in that situation:
    What is the purpose of XSLT field in BI Admin Tool when it comes to XML data source ?
    (it doesnt look like XSLT processor)
    Greetings
    /Michal

    Hi Mariano
    Why you need to use XSLT for transforming XML file into ABAP table
    Code is a part of some ABAP report. Looks like it is reading a file from file system and updating table after transformation
    If you have requirement like you need to read XML file and then insert the data into a SAP table
    You can use
    File to RFC
    File to Proxy scenario using SAP PI.
    Please provide more inputs on requirement to help
    Thanks
    Gaurav

  • Using MySQL data source in OWB

    Hi All,
    I need to use a MySQL data source in OWB. Could you please tell me the steps needed to define and configure the MySQL module in OWB?
    Thanks and Regards,
    Amit

    Directly in the source component, or in the expressions property of the data flow?
    If the latter, what happens when you preview your expression?
    MCSE SQL Server 2012 - Please mark posts as answered where appropriate.

  • Selecting data source in physical view in OBIEE 11G when using sql server

    Hi,
    I doing my physical view against a 2008 R2 SQL Server. Looks like the list goes upto 2005. Should I select 2005 in that case? As per image: http://i.imgur.com/3H7MO.png
    Cheers.
    I am using OBIEE 11G 32bit Windows.

    Hi,
    Yes can. either you can select as SQL 2005 or ODBC basic also can
    I hope your version less than obiee11.1.1.5.0, version 11.1.1.1.6.0 and above has update SQL 2008 in the data source selection list.
    refer,
    http://imgur.com/JSYoL
    Thanks
    Deva

  • Whar are logical table, Physical table Logical data Source

    Hi,
    Can any one explain me in details what Whar are logical table, Physical table Logical data Source.
    Any qucik help will be graetly appreciated

    In OBI there are three layers - Physical, Business Model and Mapping (BMM) and Presentation.
    As the name specifies the Physical layer mainly contain physical aspect of the application like which connection to use, which schema (also catalog in case of SQL server) to connect and also which table to use. This layer confirms the PK_FK joins for the related tables. This layer mainly depicts how the data has been stored in the database layer.
    On top of this layer you will have you BMM layer. The place where all work of a developer starts. You will structure the tables accourding to the business need. The structure has to be a STAR schema. All the entities in this layer are called logical because they do not directly represent any database object rather they provides a logical mapping to the database entities. This becomes clear when you use more that one Logical Table Source (LTS) for your logical tables. One logical column can map to N number of physical columns based on context. You can also create calculative columns in this layer which are totaly logical in nature.
    I am not writing anything on Presentation layer as it is not in you question. :)
    Hope this will help.
    Regards,
    Somnath

Maybe you are looking for

  • PDF in new Window works only once?

    Hello, I have a problem showing a PDF in a new window. I get my PDF created from a BAPI as a byte[] - works fine. To show the PDF I use the follwong code in an action of a button: byte[] pdfContent = wdContext.currentContextElement().getPdfDokument()

  • How do i save as a word document

    When I chose iworks I was told that I could save my pages and numbers and keynote documents a certain way so they could be opened with microsoft word and excell and powerpoint. Is this possible and if it is how do I do it? thanks for the help

  • Not showing recent movie i rent today but older rentals is.

    i recently rented a movie, it downloaded fine and i see it on my computer but it not showing up in the apple tv rentals!

  • DVI port for connect Cintiq on pro tower ?

    I will buy soon a mac pro 8-core 2,44Ghz and I wanted to know if there was a dvi port on the tower because I must connect a Cintiq Wacom 21ux on it. If there isn't a dvi port, is there another solution to connect it ? Thx by advance for your help

  • I cannot find my my iTunes icon on my desktop

    I cannot find my itunes icon on my desktop?