Integration Services and locale defenitions

anyone run into issues with drill through reports not returning the correct locale characters? We have a utf8 enabled database and can see the characters fine there but the same characters in drill through reports come back with squares and boxes.

Thank you both Timtow and essbase.ru.
I have only JRE 1.5.0 installed (installed automatically by the Essbase installer) and the classpath is pointing to essbase foler containing jre.
CLASSPATH=.;D:\hyperion\common\jre\sun\lib
the lib folder contains all the jar files essbase is looking for.
I am able to create applications using EAS, had restarted all essbase services many times, but did not work.
When I type java -version then I get the same version of JRE 1.5.0 the essbase 9.3.1 need but don't know from where the EIS is looking for jar files. It should be looking at the lib folder of jre under essbase.
Any farther guidnace will be highly appreciated.
Thanks

Similar Messages

  • Cannot start widget - Ensure that SAP Business One Integration Service and SAP Business One Event Sender Service have been started

    Dear Experts .
    I'm trying to enable widget for my company db but getting the following error :
    Ensure that SAP Business One Integration Service and SAP Business One Event Sender Service have been started; then wait 1 minute and try again
    I can connect to the B1iF locally and remotely .
    I have the db configured in the SLD and connects successfully .
    I have the event sender service and proxy started and configured for the company db.
    I can access the Dashboard web portal and login with database sap credentials (but I see nothing there)
    I've checked that there are no duplicate entries in the SSLD table for SBO common (note : 1619422)
    I've also tried to re-activate the xelcious from the B1iF->control.
    My Setup :
    I'm runing SBO server, B1iF installed locally and B1iSN installed on a 3rd party server.
    I'm using B1iF as even forwarder for B1iSN.
    I know this has been discussed many times through out the forum and I've tried most of the stuff other than clean install.
    I would appreciate any input before removing B1iF completely and re-installing.
    Thanks in advance ,
    Nadav.

    Hi,
    The problem is SAP 8.81 PL04, with PL05 or PL06, it is solutioned.
    Thanks,

  • I'm new to SQL Server Integration Services and I need help on how to begin learning SSIS. Is there any training for it besides msdn?

    I'm new to SQL Server Integration Services and I need help on how to begin learning SSIS. Is there any training for it besides msdn?

    Check this thread where people have already given their suggestion on learning SSIS
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/f2cc1cf3-204d-454a-a189-47df87a3aa23/i-want-to-learn-ssis?forum=sqlintegrationservices
    I would suggest to go for You tube videos (type learn SSIS or begin SSIS step by step) you will get lot of good tutorials to start with.
    Happy Learning!!
    If this post answers your query, please click "Mark As Answer" or "Vote as Helpful".

  • Invocation Service and Local Maps

    Hi,
         I want to use an InvocationService to perform a filtered query on the local data of a node in a distributed cache scheme. A simple keySet or entrySet will not work in my case as I want to push out some additional processing to each node.
         I am mainly concered on how to perform the query on only the local data of each node (how to get the local map and query it). Do you have an example or documentation of how to this?
         Thanks in advance.
         Joey

    Cameron, this is in reference to a more "hands on" query approach previously discussed.
         Joey, the most direct means of accessing locally-hosted partitioned data is to access the cache's backing map directly. Since the data may be stored in serialized form, you'll need to access the backing map's context to get converters to convert from serialized form to regular java objects. The following snippet does a simple aggregation, using direct backing map access (for demonstration purposes only, obviously an InvocableMap aggregator would be easier, more reliable and more efficient for this specific use case). Keep in mind that when using InvocableMap, rebalancing and server failure are handled automatically; when using this lower-level approach, you'll need to handle failure manually (for queries, this usually just means re-issuing the query).
         (This snippet is from a larger examples compilation, so will not compile as-is due to a few "utility" calls).
         EDIT: Looking at the code below, I should also mention that there are separate converters for the cache keys and the cache values (this example happens to not process the cache keys).
                  package examples.invocationWithBackingMap;
             import com.tangosol.net.AbstractInvocable;
             import com.tangosol.net.CacheFactory;
             import com.tangosol.net.CacheService;
             import com.tangosol.net.DefaultConfigurableCacheFactory;
             import com.tangosol.net.InvocationService;
             import com.tangosol.net.Member;
             import com.tangosol.net.NamedCache;
             import com.tangosol.net.DistributedCacheService;
             import com.tangosol.util.Binary;
             import com.tangosol.util.Converter;
             import com.tangosol.util.Base;
             import util.TerminateAgent;
             import util.Util;
             import java.util.Iterator;
             import java.util.Map;
             import java.util.Set;
             public class Main
                 extends Base
                  * Usage:
                  * <pre>
                  * java examples.invocationWithBackingMap.Main cluster-size
                  * </pre>
                  * @param args      command-line arguments
                 public static void main(String[] args)
                     NamedCache cache = CacheFactory.getCache(CACHENAME);
                     int callerId = CacheFactory.ensureCluster().getLocalMember().getId();
                     // use (and start) an invocation service
                     InvocationService isvc =
                         CacheFactory.getInvocationService(INVOCATION_SERVICE_NAME);
                     int cClusterMembers = Integer.parseInt(args[0]);
                     Util.waitForCacheNodes(cache, cClusterMembers);
                     Util.verifyClusterSize(cClusterMembers);
                     // populate the cache (blindly; overwrites are ignored)
                     for (int i=0; i<100; i++)
                         cache.put(new Integer(i), new Integer(i));
                     // send to the partition owners
                     Set members = ((DistributedCacheService)cache.getCacheService()).getStorageEnabledMembers();
                     System.out.println("Number of storage-enabled nodes: " + members.size());
                     Map map = isvc.query(new SummingAgent(callerId), members);
                     System.out.println(map.size() + " node(s) responded");
                     int totalSum = 0;
                     System.out.println("Total should be 4950 for sum(0..99)");
                     for (Iterator iter = map.entrySet().iterator(); iter.hasNext();)
                         Map.Entry entry  = (Map.Entry)iter.next();
                         Member member = (Member)entry.getKey();
                         Integer memberSum = (Integer)entry.getValue();
                         // null if member died; did not run the Invocation service
                         //  or threw exception during execution
                         if (memberSum != null)
                             System.out.println("Sum of values on member " + member.getId() +
                                                " is " + memberSum);
                             totalSum += memberSum.intValue();
                         else
                             System.out.println("No result from " + member.getId());
                     System.out.println("Total sum is " + totalSum);
                     System.out.println("Terminating remote cluster memebers...");
                     // shut down the other cluster members remotely
                     // this member should not be acting as a cache server
                     azzert(!members.contains(CacheFactory.ensureCluster().getLocalMember()));
                     isvc.execute(new TerminateAgent(), members, null);
                     // leave the cluster
                     CacheFactory.shutdown();
                 public static class SummingAgent extends AbstractInvocable
                     public SummingAgent() {}
                     public SummingAgent(int callerId)
                         m_callerId = callerId;
                     public void run()
                         System.out.println("Running agent from member " + m_callerId + "...");
                         NamedCache cache = CacheFactory.getCache(CACHENAME);
                         CacheService service = cache.getCacheService();
                         DefaultConfigurableCacheFactory.Manager bmm =
                             (DefaultConfigurableCacheFactory.Manager)service.getBackingMapManager();
                         Map backingMap = bmm.getBackingMap(CACHENAME);
                         Converter valueConverter =
                             bmm.getContext().getValueFromInternalConverter();
                         int sum = 0;
                         // if concurrent updates are possible you need to deal with
                         // ConcurrentModificationException thrown by the iter.next() call
                         for (Iterator iter = backingMap.values().iterator();iter.hasNext();)
                             // data stored in Binary (wire) format
                             Binary binary = (Binary)iter.next();
                             Integer value = (Integer)valueConverter.convert(binary);
                             sum += value.intValue();
                         setResult(new Integer(sum));
                     protected int m_callerId;
                 public static final String CACHENAME = "dist-InvocationWithBackingMap";
                 public static final String INVOCATION_SERVICE_NAME="InvocationService";
            

  • Using an external web service  and local element declarations

    I am attempting to use (call) an external web service from workshop
    8.1. It seems that if the web service's schema contains local element
    declarations with the same name then workshop will generate incorrect
    JCX code because it doesn't scope the generated classes.
    I think the following simple example will do a better job explaining
    than that last paragraph ;). In the following WSDL, the element
    "testLocalDec" is used inside two different element types. In XML
    Schema this is not a problem because each one is "scoped" by the
    element types its included in. However, the generated JCX (listed
    second) simply contains the testLocalDec structure twice which causes
    problems in Java.
    Is there some workaround for this? Note that making this element
    declaration in the WSDL will not work because they are different
    structures (with different names).
    Also see my next email around using XMLBeans with external services
    (since that could be a workaround if I knew how to do it).
    thanks,
    dave
    *** sample WSDL ***
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions xmlns:tns="urn:tutorial/hello"
    targetNamespace="urn:tutorial/hello"
    xmlns:s="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:apachesoap="http://xml.apache.org/xml-soap"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <wsdl:types>
    <s:schema targetNamespace="urn:tutorial/hello">
         <s:element name="sayHelloResponse" >
    <s:complexType>
    <s:sequence>
    <s:element name="sayHelloReturn" type="s:string" />
    <s:element name="testLocalDec" >
    <s:complexType />
    </s:element>
    </s:sequence>
    </s:complexType>
    </s:element>
         <s:element name="sayHello" >
    <s:complexType>
    <s:sequence>
    <s:element name="caller" type="s:string" />
    <s:element name="testLocalDec" >
    <s:complexType >
    <s:sequence>
    <s:element name="different" type="s:string" />
    </s:sequence>
    </s:complexType>
    </s:element>
    </s:sequence>
    </s:complexType>
    </s:element>
    </s:schema>
    </wsdl:types>
    <wsdl:message name="sayHelloRequestMsg">
    <wsdl:part name="message" element="tns:sayHello"/>
    </wsdl:message>
    <wsdl:message name="sayHelloResponseMsg">
    <wsdl:part name="sayHelloReturn" element="tns:sayHelloResponse"/>
    </wsdl:message>
    <wsdl:portType name="HelloWorld">
    <wsdl:operation name="sayHello" >
    <wsdl:input message="tns:sayHelloRequestMsg" />
    <wsdl:output message="tns:sayHelloResponseMsg" />
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="HelloWorldServiceSoapBinding"
    type="tns:HelloWorld">
    <wsdlsoap:binding style="document"
    transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="sayHello">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="sayHelloRequestMsg">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="sayHelloResponseMsg">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="HelloWorldService">
    <wsdl:port binding="tns:HelloWorldServiceSoapBinding"
    name="HelloWorldService">
    <wsdlsoap:address
    location="http://localhost:18080/tutorial/HelloWorldService"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    *** generated JCX ***
    package helloTest;
    * @jc:location
    http-url="http://localhost:18080/tutorial/HelloWorldService"
    * @jc:wsdl file="#HelloWorldServiceWsdl"
    * @editor-info:link source="HelloWorldService.wsdl" autogen="true"
    public interface HelloWorldServiceControl extends
    com.bea.control.ControlExtension, com.bea.control.ServiceControl
    public static class testLocalDec
    implements java.io.Serializable
    public static class sayHelloResponse
    implements java.io.Serializable
    public java.lang.String sayHelloReturn;
    public testLocalDec testLocalDec;
    public static class testLocalDec
    implements java.io.Serializable
    public java.lang.String different;
    * @jc:protocol form-post="false" form-get="false"
    public sayHelloResponse sayHello (java.lang.String caller,
    testLocalDec testLocalDec);
    static final long serialVersionUID = 1L;
    /** @common:define name="HelloWorldServiceWsdl" value::
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions xmlns:tns="urn:tutorial/hello"
    targetNamespace="urn:tutorial/hello"
    xmlns:s="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:apachesoap="http://xml.apache.org/xml-soap"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <wsdl:types>
    <s:schema targetNamespace="urn:tutorial/hello">
         <s:element name="sayHelloResponse" >
    <s:complexType>
    <s:sequence>
    <s:element name="sayHelloReturn" type="s:string" />
    <s:element name="testLocalDec" >
    <s:complexType />
    </s:element>
    </s:sequence>
    </s:complexType>
    </s:element>
         <s:element name="sayHello" >
    <s:complexType>
    <s:sequence>
    <s:element name="caller" type="s:string" />
    <s:element name="testLocalDec" >
    <s:complexType >
    <s:sequence>
    <s:element name="different" type="s:string" />
    </s:sequence>
    </s:complexType>
    </s:element>
    </s:sequence>
    </s:complexType>
    </s:element>
    </s:schema>
    </wsdl:types>
    <wsdl:message name="sayHelloRequestMsg">
    <wsdl:part name="message" element="tns:sayHello"/>
    </wsdl:message>
    <wsdl:message name="sayHelloResponseMsg">
    <wsdl:part name="sayHelloReturn"
    element="tns:sayHelloResponse"/>
    </wsdl:message>
    <wsdl:portType name="HelloWorld">
    <wsdl:operation name="sayHello" >
    <wsdl:input message="tns:sayHelloRequestMsg" />
    <wsdl:output message="tns:sayHelloResponseMsg" />
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="HelloWorldServiceSoapBinding"
    type="tns:HelloWorld">
    <wsdlsoap:binding style="document"
    transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="sayHello">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="sayHelloRequestMsg">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="sayHelloResponseMsg">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="HelloWorldService">
    <wsdl:port binding="tns:HelloWorldServiceSoapBinding"
    name="HelloWorldService">
    <wsdlsoap:address
    location="http://localhost:18080/tutorial/HelloWorldService"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>

    Hi David,
    The folks in the workshop newgroup may have a suggestion, if you could
    try your post there:
    http://newsgroups.bea.com/cgi-bin/dnewsweb?cmd=xover&group=weblogic.developer.interest.workshop
    Thanks,
    Bruce
    David Rees wrote:
    >
    I am attempting to use (call) an external web service from workshop
    8.1. It seems that if the web service's schema contains local element
    declarations with the same name then workshop will generate incorrect
    JCX code because it doesn't scope the generated classes.
    I think the following simple example will do a better job explaining
    than that last paragraph ;). In the following WSDL, the element
    "testLocalDec" is used inside two different element types. In XML
    Schema this is not a problem because each one is "scoped" by the
    element types its included in. However, the generated JCX (listed
    second) simply contains the testLocalDec structure twice which causes
    problems in Java.
    Is there some workaround for this? Note that making this element
    declaration in the WSDL will not work because they are different
    structures (with different names).
    Also see my next email around using XMLBeans with external services
    (since that could be a workaround if I knew how to do it).
    thanks,
    dave
    *** sample WSDL ***
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions xmlns:tns="urn:tutorial/hello"
    targetNamespace="urn:tutorial/hello"
    xmlns:s="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:apachesoap="http://xml.apache.org/xml-soap"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <wsdl:types>
    <s:schema targetNamespace="urn:tutorial/hello">
    <s:element name="sayHelloResponse" >
    <s:complexType>
    <s:sequence>
    <s:element name="sayHelloReturn" type="s:string" />
    <s:element name="testLocalDec" >
    <s:complexType />
    </s:element>
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:element name="sayHello" >
    <s:complexType>
    <s:sequence>
    <s:element name="caller" type="s:string" />
    <s:element name="testLocalDec" >
    <s:complexType >
    <s:sequence>
    <s:element name="different" type="s:string" />
    </s:sequence>
    </s:complexType>
    </s:element>
    </s:sequence>
    </s:complexType>
    </s:element>
    </s:schema>
    </wsdl:types>
    <wsdl:message name="sayHelloRequestMsg">
    <wsdl:part name="message" element="tns:sayHello"/>
    </wsdl:message>
    <wsdl:message name="sayHelloResponseMsg">
    <wsdl:part name="sayHelloReturn" element="tns:sayHelloResponse"/>
    </wsdl:message>
    <wsdl:portType name="HelloWorld">
    <wsdl:operation name="sayHello" >
    <wsdl:input message="tns:sayHelloRequestMsg" />
    <wsdl:output message="tns:sayHelloResponseMsg" />
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="HelloWorldServiceSoapBinding"
    type="tns:HelloWorld">
    <wsdlsoap:binding style="document"
    transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="sayHello">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="sayHelloRequestMsg">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="sayHelloResponseMsg">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="HelloWorldService">
    <wsdl:port binding="tns:HelloWorldServiceSoapBinding"
    name="HelloWorldService">
    <wsdlsoap:address
    location="http://localhost:18080/tutorial/HelloWorldService"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    *** generated JCX ***
    package helloTest;
    * @jc:location
    http-url="http://localhost:18080/tutorial/HelloWorldService"
    * @jc:wsdl file="#HelloWorldServiceWsdl"
    * @editor-info:link source="HelloWorldService.wsdl" autogen="true"
    public interface HelloWorldServiceControl extends
    com.bea.control.ControlExtension, com.bea.control.ServiceControl
    public static class testLocalDec
    implements java.io.Serializable
    public static class sayHelloResponse
    implements java.io.Serializable
    public java.lang.String sayHelloReturn;
    public testLocalDec testLocalDec;
    public static class testLocalDec
    implements java.io.Serializable
    public java.lang.String different;
    * @jc:protocol form-post="false" form-get="false"
    public sayHelloResponse sayHello (java.lang.String caller,
    testLocalDec testLocalDec);
    static final long serialVersionUID = 1L;
    /** @common:define name="HelloWorldServiceWsdl" value::
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions xmlns:tns="urn:tutorial/hello"
    targetNamespace="urn:tutorial/hello"
    xmlns:s="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:apachesoap="http://xml.apache.org/xml-soap"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <wsdl:types>
    <s:schema targetNamespace="urn:tutorial/hello">
    <s:element name="sayHelloResponse" >
    <s:complexType>
    <s:sequence>
    <s:element name="sayHelloReturn" type="s:string" />
    <s:element name="testLocalDec" >
    <s:complexType />
    </s:element>
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:element name="sayHello" >
    <s:complexType>
    <s:sequence>
    <s:element name="caller" type="s:string" />
    <s:element name="testLocalDec" >
    <s:complexType >
    <s:sequence>
    <s:element name="different" type="s:string" />
    </s:sequence>
    </s:complexType>
    </s:element>
    </s:sequence>
    </s:complexType>
    </s:element>
    </s:schema>
    </wsdl:types>
    <wsdl:message name="sayHelloRequestMsg">
    <wsdl:part name="message" element="tns:sayHello"/>
    </wsdl:message>
    <wsdl:message name="sayHelloResponseMsg">
    <wsdl:part name="sayHelloReturn"
    element="tns:sayHelloResponse"/>
    </wsdl:message>
    <wsdl:portType name="HelloWorld">
    <wsdl:operation name="sayHello" >
    <wsdl:input message="tns:sayHelloRequestMsg" />
    <wsdl:output message="tns:sayHelloResponseMsg" />
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="HelloWorldServiceSoapBinding"
    type="tns:HelloWorld">
    <wsdlsoap:binding style="document"
    transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="sayHello">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="sayHelloRequestMsg">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="sayHelloResponseMsg">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="HelloWorldService">
    <wsdl:port binding="tns:HelloWorldServiceSoapBinding"
    name="HelloWorldService">
    <wsdlsoap:address
    location="http://localhost:18080/tutorial/HelloWorldService"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>

  • EIS/AIS [Essbase Integration Service] and SHARED SERVICES

    I got the following error message when trying to get Shared Services Connection with integarion server:
    Error -1: Contact your AIS administrator because the Java runtime
    environment may not be set appropriately on the server machine…
    Exception in thread "main" java.lang.NoSuchMethodError:
    com.hyperion.interop.lib.Repository.createProject
    (Ljava/lang/String;Ljava/lang/String;)Lcom/hyperio n/interop/lib/ProjectResource; at eieapi.eieapis.createProject(eieapis.java:150)
    can you help me how to reslove this issue...

    "Lcom/hyperio n/interop/lib/ProjectResource;"
    ^-- did you create a variable that contains a blank space? --> "hyperio n"

  • Essbase Integration Services Not Starting

    Hi All,
    I am using EPM 11.1.2.1 and unable to start the Essbase Integration Services. When I started the services from services.msc, I got the below error:
    Windows could not start the Hyperion Integration Services on Local Computer.
    For more information, review the System Event Log. If this is a non-Microsoft service, contact the service
    vendor, and refer to service-specific error code 0.
    Event ID 7024
    What could be wrong with it / Does someone could help me ?
    Thanks,
    Alvaro

    To whom it may concern......
    1. Check in Windows Task Manager for the 'olapisvr.exe' process, and if it's running stop it.
    2. Start the EIS Service Windows Services (Service.msc) as normal.
    EIS started sucessfully...
    Thanks

  • Improper Install of Hyper-V 2012 R2 Integration Services on 2008 R2 VMs

    I have two VMs that have one or more missing/broken services after upgrading to Integration Services 6.3.9600.16384.  On one VM the Hyper-V Remote Desktop Virtualization Service is missing and the Hyper-V Data Exchange Service won't start.  The
    other VM was missing the Hyper-V Remote Desktop Virtualization Service.  I was able to create that service by restoring registry entries from another VM with working integration services and re-registering the DLLs from the driver, but the service won't
    start.  Both services that won't start return the error "1083: The executable program that this service is configured to run in does not implement the service".   I also tried an Offline
    Install of Integration Services, but that didn't fix anything.  Since I am running 2008 R2, there is no uninstall available (I did modify the powershell script from the abve link to uninstall, but it didn't work).  I have been un-successful in
    finding a way to trick/force the installer to install again over top of itself.

    Hi Gregg,
    Thank you for posting in Windows Server Forum.
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thank you for your understanding and support.
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Error while integarting the DAC with the Informatica Integration services

    Hi Experts,
    I am setting up the BI APPS. I am following the documentation provided by oracle. Everything went on smoothly but when when I am trying to integrate the DAC with the Integration service created in informatica it is giving me the following error:
    Informatica(r) PMCMD, version [8.6.0 HotFix4], build [272.1017], Windows 32-bit
    Copyright (c) Informatica Corporation 1994 - 2008
    All Rights Reserved.
    Invoked at Mon Jun 01 14:10:47 2009
    [DOM_10033] [DOM_10033] Service [10.136.51.183] does not exist in domain [Domain_ZZDAP2FLM951].
    ERROR: Cannot connect to Integration Service [10.136.51.183].
    Completed at Mon Jun 01 14:10:48 2009
    =====================================
    ERROR OUTPUT
    =====================================
    Important Obeservation: When I am trying to connect the repository service from DAC it is connecting successfully.
    Can anyone please provide me the solution for this. It is really urgent.
    Thanks in advance.
    Satyabrat

    Here is what you need to do... there are some gaps in the documentation for 7.9.6 with infa 8.6:
    1) In infa 8.6 there is no repository and informatica server, instead you have repository service and integration service
    2) make sure you note down the name of the repository service and integration service when you do the post install of the informatica install
    3) when you try to register Infa repository in DAC, make sure you use the (hostname/services) as the name of the infa integration service,
    and in repostory name use the name of the repository service and not Oracle_BI_DW_base....
    if you still have errors upload or email ([email protected]) the DAC config screens

  • Problem in starting Integration service with DAC 11g

    Hi friends,
    Im @ the step of registering integration service and the repository service in DAC 11g. I can start the Repository service well in DAC, but facing issue in starting integration service with DAC, while trying to test connection im getting a message like
    Failure connecting to BIA_IS!
    Im not sure the reason to this problem in DAC. I have also setted the necessary environment variables like INFA_HOME and INFA_DOMAINS_FILE referring the domains.infa file like
    INFA_DOMAINS_FILE = C:\Informatica\9.1.0\domains.infa
    Also checked with the dac_env file which has the below contents
    REM -----------------------------------------------------
    REM
    REM ENVIRONMENT VARIABLES THAT YOU MAY NEED TO SET FOR
    REM  PROPER INFORMATICA 8.x or 9.x HANDSHAKE.
    REM
    REM INFORMATICA_SERVER_LOCATION denotes installation of
    REM Informatica components. Example:
    REM C:\Informatica\PowerCenter9.1
    REM
    REM DOMAINS.INFA_FILE_LOCATION denotes the location
    REM (including name) of domains.infa file
    REM
    REM Please make sure to set correct values for variables
    REM mentioned above
    REM
    REM -----------------------------------------------------
    set INFORMATICA_SERVER_LOCATION="C:\Informatica\9.1.0"
    set DOMAINS_INFA_FILE_LOCATION=C:\Informatica\9.1.0\domains.infa
    set INFA_CMD_STYLE=8
    set PATH=C:\Informatica\9.1.0\server\bin;%PATH%
    set INFA_DOMAINS_FILE=%DOMAINS_INFA_FILE_LOCATION%
    What could be the problem and where to check with the logfile related to the integration service failure in DAC.
    Thanks in advance.
    Regards,
    Saro

    Hi guys,
    The issue is sorted out. The below are the two precautions to be considered.
    *) Make sure of INFA_HOME/Server/bin exist @ the end in the PATH variable.
    *) For each and every change in the PATH variable, it is better to restart the services(both infa and DAC) then and there for the changes to take effect.
    Regards,
    Saro

  • Integration Services vs Integration Server

    Are these the same product? Am looking to utilize the SQL Drill Thru capabilities and have Integration Services but think I need Integration Server.

    Yep, they are the same. The newer is Essbase Integration Services and is very much improved. I refuse to work with the Integration Server, yes it is so bad !Drill Through is possible in both.Yours,TheNerd.---Message Posted by seallison   3/12/02 12:23---Are these the same product? Am looking to utilize the SQL Drill Thru capabilities and have Integration Services but think I need Integration Server.

  • Informatica work flow not connecting to integration service

    Hi I am OBIEE admin, i am having the following error when i am trying to run workflow manually.
    Informatica work flow not connectied to integration service,
    Pls help me asap

    Do this:
    Open Workflow manager or If it is already opened...then disconnect all the folders...
    1. Click on the folder you want to connect
    2. Go to 'Service' tab and select "Assign Integration Service"
    3. This will open "Assign Integration Service" window from where you can choose the Integration Service and can assign the workflows or all workflows. Click "Assign" button to assign the selected Integration Service.
    Now connect to the folder and you can run the workflows.
    Hope this helps and please mark if it does. :)

  • SQL Server 2012 with Visual Studio 2013 with SSIS/Integration services project?

    I wanted to build an integration services project to import data from multiple sources using a vendor's API.
    I wish I could recall how I got to the point where I was able to build one and have it run successfully, but I had to install so many things that I honestly don't remember.
    However, I noticed my PC booting really slowly after that, and I saw that I had components of VS 2010, VS 2012 and VS 2013 installed, along with SQL Server 2008 and 2012.  So I uninstalled a bunch of stuff, hoping to get to where I had only the most
    current versions of all, that were compatible with my corporate environment.  So I was aiming for Visual Studio 2013 (Premium, I think) and SQL Server 2012.
    Took me 2 days.  Now I'm at the point where I think - and I'm here to learn if I'm correct - that I cannot get an oData Source component into my project and use VS 2013 IF I want to stick with Sql Server 2012.  Is that correct?  
    I get very confused when trying to determine how the acronyms relate:  SSIS, SSDT, SSDT-BI, etc.

    Hi Anonymous11847,
    SSDT: Microsoft SQL Server Data Tools for Visual Studio 2010, it contains Business Intelligence project templates for Analysis Services, Integration Services, and Reporting Services that support Visual Studio 2010. This can be installed when SQL Server is
    installed. It supports various SQL Server versions as follows:
    SSAS projects can target SQL Server 2012 or lower
    SSRS projects can target SQL Server 2012 or lower
    SSIS projects can target only SQL Server 2012
    SSDT-BI for VS 2012: Microsoft SQL Server Data Tools - Business Intelligence for Visual Studio 2012, it contains Business Intelligence project templates for Analysis Services, Integration Services, and Reporting Services that support Visual Studio 2012.
    This needs to be separately downloaded and installed. It supports various SQL Server versions as follows:
    SSAS projects can target SQL Server 2012 or lower
    SSRS projects can target SQL Server 2012 or lower
    SSIS projects can target only SQL Server 2012
    SSDT-BI for VS 2013: Microsoft SQL Server Data Tools - Business Intelligence for Visual Studio 2013, it contains Business Intelligence project templates for Analysis Services, Integration Services, and Reporting Services that support Visual Studio 2013.
    This needs to be separately downloaded and installed. It supports various SQL Server versions as follows:
    SSAS projects can target SQL Server 2014 or lower
    SSRS projects can target SQL Server 2014 or lower
    SSIS projects can target only SQL Server 2014
    So if the SQL Server version is SQL Server 2012, we should install SSDT or SSDT-BI for VS2012 to create SSIS project.
    Reference:
    Microsoft SQL Server Data Tools Update
    If there are any other questions, please feel free to ask.
    Thanks,
    Kathrine Xiong
    Katherine Xiong
    TechNet Community Support

  • Integration Services - Building Sample Database in MS Access

    We have purchased Integration Services and I want to start testing on a desktop. I was told that I could use MS Access to do this. Does anyone know how I get the sample databases into Access? The install contains sql scripts that build the database in SQLSvr, Oracle, etc., but not Access. Any help would be appreciated. Thanks! - Deb

    You can use the SQL server sql syntax to create your databases in Access. Just remove "GO" and run the script. If you had sql server, you could create the database /tables in SQL and use DTS to convert it to Access.

  • Failed HV integration services install now can't remove

    I have Hyper-V 2012 R2 running with a Windows 7 x64 guest underneath. During the install of integration services it sat there for about an hour with setup.exe just holding between 18 and 25% cpu and no indication of anything else going on, no gui etc. I
    ended task on it and rebooted the VM and came back and it looks like it installed about 1/2 the drivers. Some hyper-v related items in device manager have (!) in front of them others are correctly loaded. I tried to reinstall integration services and it said
    the latest version was already installed.
    I tried setup.exe /uninstall and it sat for about an hour and finally said "The latest version is already installed".
    So it looks like integration services are in limbo where they can neither be installed, nor uninstalled.
    There's nothing in add/remove programs that I can remove that is integration services related.
    Both the host and guest are fully patched up to this month's patch Tuesday. Any ways to trick integration services to reinstall?

    Hi Stonent,
    You may try to install integration services manually :
    http://blogs.technet.com/b/virtualization/archive/2013/04/19/how-to-install-integration-services-when-the-virtual-machine-is-not-running.aspx
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for