Unable to create dataset against OLAP Cube from different server

Hi guys,
If I load Microsoft SQL Report Builder on the BI Server, I am able to create a dataset against the OLAP Cube I created on the BI Server, however if I try to run the Report Builder from a different server I get the following error:
"Unable to connect to data source 'MyOLAPCube'.
A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 172.20.112.82:2382
A connection cannot be made to redirector.  Ensure that 'SQL Browser' service is running."
I have had no issues starting the SQL Browser service, however if I try to run it in console mode, I get the following error:
'SQLBrowser: Warning: failed starting OLAP redirection services with error 1.'
I have checked online and seen a few similar issues online however I haven't been able to resolve my issue with their resolution.
Any help is appreciated.
Many thanks
Richard

Yeah there is a firewall running on both servers, however I had opened port 2383 and was still unable to make a connection.  It is using a named instance on the server (servername/instancename) and it is configured to use port 0, so I therefore assume
it should be using port 2383 by default?  Or as it's a named instance, is the default port 2382? Maybe it would be better to configure it to use a specific port and open the port on the firewall?
Hi Rfla,
As you can see on the link below
http://technet.microsoft.com/en-us/library/ms174937(v=sql.110).aspx
Named instances use dynamic port assignments. As the discovery service for Analysis Services, SQL Server Browser service listens on TCP port 2382 and redirects the connection request to the port currently used by Analysis Services.
So you can open the port 2382 for Named Analysis Services Instance remote connect.
Regards,
Charlie Liao
TechNet Community Support

Similar Messages

  • OLAP cubes from heterogeneous data sources using XML DB

    hi.
    Q:1
    How we can create an OLAP cube (XML cubes) from XML data sources if using XML DB.
    Q:2
    How we can create an OLAP cubes from warehouses and flat files and covert these cubes into XML cubes.
    Q:3
    Is there any other tool (Except Analytical workspace manager AWM) which supports the construction of OLAP cubes in XML format from heterogeneous data sources?
    Edited by: user11236392 on Aug 21, 2009 3:50 AM

    Hi Stuart!
    Your undersatnding is partially correct. i am working for providing an architecture for XOLAP, XML is one of my data source.
    The idea is to generate uniform cubes from heterogeneous sources that can be integrated into a global cube. instead of building Oracle OLAP cubes from all the sources (this work is already done) i want to generate an XCube from XML data sources using XQuery.
    On the other hand if we have generated the Oracle OLAP cube from other sources like warehouses or flat files. i have to convert these Oracle OLAP cube into XML cube for uniformity. in an research paper i find that there is an operator Xcube embedded in XQuery which converts the multidimensional data (cube) into XML cube. im looking for the implementation of this operator in Query that how this operator works.
    hope u understand my architecture. but if u still have some confusion, kindly give me ur mail id. i will mail the diagram of my architecture.
    thanks.
    saqib

  • I am unable to create an Action to Export from .ai to .psd. The OPEN and EXPORT steps in the Action

    I am unable to create an Action to Export from .ai to .psd.
    The steps in the Action such as Open and Export seem inextricably linked to the file from which the original Action was recorded.
    The steps in the Action do not seem to be generalized commands that I can apply to any folder of .ai files.

    I'd recommend to exactly describe what you're doing. How did you set up your action? Which settings did you choose in the Batch Process dialog? What exactly went wrong? What did you expect instead?
    Whatever issues you're suffering from, there is no way to provide a hasty answer and no way to give an elaborate answer without knowing the details.

  • Schema compare between 2 databases from different server

    Let me know the method for comparing schema between 2 databases from different server of SQL 2012 and sending that in mail.

    Check redgate:
    Compare SQL Server schemas and deploy differences
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

  • Read XML file from different server on JSP

    Dear All,
    I am a newbie to JSP with XML, now i want to read the "test.xml" from JSP.
    I read successfully this "test.xml" file from my system and I got output, but I need to read the xml file from
    different server like "http://www.domain.com/test.xml". I couldn't read such a type of file from different server.
    Is it possible to read a xml file from different server?
    If anybody have idea please let me know.
    Thanks in Advance,
    Prasath.
    <%@ page import="java.sql.*,java.io.*,java.util.*,javax.xml.parsers.*,org.w3c.dom.*,org.xml.sax.*" %>
    <%
    try {
        DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
        DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
        Document doc = docBuilder.parse (new File("http://www.domain.com/test.xml"));
        // normalize text representation
        doc.getDocumentElement ().normalize ();
        out.println ("Root element of the doc is " +
             doc.getDocumentElement().getNodeName()+"<br>");
        NodeList listOfPersons = doc.getElementsByTagName("person");
        int totalPersons = listOfPersons.getLength();
        out.println("Total no of people : " + totalPersons+"<br>");
        for(int s=0; s<listOfPersons.getLength() ; s++){
            Node firstPersonNode = listOfPersons.item(s);
            if(firstPersonNode.getNodeType() == Node.ELEMENT_NODE){
                Element firstPersonElement = (Element)firstPersonNode;
                NodeList firstNameList = firstPersonElement.getElementsByTagName("first");
                Element firstNameElement = (Element)firstNameList.item(0);
                NodeList textFNList = firstNameElement.getChildNodes();
                out.println("First Name : " +
                       ((Node)textFNList.item(0)).getNodeValue().trim()+"<br>");
                NodeList lastNameList = firstPersonElement.getElementsByTagName("last");
                Element lastNameElement = (Element)lastNameList.item(0);
                NodeList textLNList = lastNameElement.getChildNodes();
                out.println("Last Name : " +
                       ((Node)textLNList.item(0)).getNodeValue().trim()+"<br>");
                NodeList ageList = firstPersonElement.getElementsByTagName("age");
                Element ageElement = (Element)ageList.item(0);
                NodeList textAgeList = ageElement.getChildNodes();
                out.println("Age : " +
                       ((Node)textAgeList.item(0)).getNodeValue().trim()+"<br>");
            }//end of if clause
        }//end of for loop with s var
    }catch (SAXParseException err) {
    out.println ("** Parsing error" + ", line "
         + err.getLineNumber () + ", uri " + err.getSystemId ());
    out.println(" " + err.getMessage ());
    }catch (SAXException e) {
    Exception x = e.getException ();
    ((x == null) ? e : x).printStackTrace ();
    }catch (Throwable t) {
    t.printStackTrace ();
    %>

    You might try:
    Document doc = docBuilder.parse ("http://www.domain.com/test.xml");Alternatively use the java.net package to obtain an Input Stream to the xml document
    InputStream in = methodThatYouWriteYourselfCalledgetInputStreamForURI("http://www.domain.com/test.xml");
    Document doc = docBuilder.parse (in);cheers,
    evnafets

  • What permission is needed for a login to access the restored database(backup from different server)

    what permission is needed for a login to access the restored database(backup from different server)
    frequently reach the situation, when vendor restores a database, but he cannot access it unless I remap or add his login to the restored database. What permssion can grant the vendor so that he can but only can access the database he restored, not all other
    databases.

    Hi George,
    According to your description, When you move a database from one server that is running SQL Server to another server that is running SQL Server, a mismatch may occur between the security identification numbers (SIDs) of the logins in the master database
    and the users in the user database. As other post, you can use the sp_change_users_login stored procedure to map SQL Server logins. Also , you can use the following statement after doing the restore database. It will
     fix the mis-mapped SID inside the restored DB.
    ALTER USER <username> WITH LOGIN = <username>
    For more information, you can review the following article.
    http://blogs.lessthandot.com/index.php/DataMgmt/DBAdmin/MSSQLServerAdmin/do-you-still-use-sp_change_users_login/
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Webi against OLAP Cubes and rowlevel security

    Hi all
    Running XI3.1, SP4. Windows
    We are trying to create universes on top of OLAP cubes made in MSAS 2008, and take advantage of the rowlevel-structure that exist on the cube side.
    When running a WEBI-report against the cubeuniverse, the current user logged in from InfoView should be passed to the MSAS cube. Different users will then get different results. This is our goal!!!
    It works in Voyager, which runs directly at the cubes.
    But is this possible, via WEBI and universes. Has anyone done this??
    When creating the connection, the Authentication mode="Use SSO when refreshing the reports at runtime", looks promising.
    But i get a error message, stating "DBD: Unknown error has occured when determining the ODBO connection credentials"
    All inputs are appreciated
    /Björn

    Hi all
    We have configured the BOservers with SSO, using AD-Kerberos (using Tim Ziembas whitepapers). So we are using authentication=WindowsAD.
    It works perfectly for the end-users. They hit the INFOVIEW-url and they dont need no password.
    The thing that we want to acheive, is to connect to MSAnalysisServer2008, with Designer. I want to create a universe on top of MSAS OLAP-cubes, and take advantage of the rowlevel-security that has been implemented in the CUBE-server.
    When creating a connection in Designer using MSAS2008 OLEDB for OLAP Provider, there is the Authentication mode-dropdown. The second alternative "Use single-sign-on when refreshing..." gives the  error-message "DBD: Unknown error has occured when determining the ODBO connection credentials".
    I dont know if this is a bug, or if when using middleware MSAS2008 OLEDB for OLAP Provider in combination with Authentication mode="Use single-sign-on when refreshing.." it isnt supposed to work. From the Designer documentation it should work.
    We have tested this for Voyager, which connects directly to the cubes. It works in Voyager. the connection "feeds" the cubesystem with the user currently logged on to InfoView, and gives the correct rowlevel-restriction.
    We want to acheive the same thing with Webintelligence.
    Regards
    Björn

  • Unable to Create Fact and Dimension tables from the Tools menu in EIS conso

    Hi All,
    In the EIS console, I am unable to create the fact table and the dimension tables to produce my OLAP model from the TOOLS menu whereas I am able to create them by dragging from the left panel where the tables are displayed. I am geeting the below error message:
    "An exception occured while retrieving OLAP model metadata. Please verify you are connected to the catalog and try again"
    Any help appreciated.
    Thanks,
    Raja

    I have fact and dimension tables in one server and i moved those stuff to another server.If I do that what happen to essbase and about totale EPM System.I want to know how to do this and what I can expect?
    Please reply

  • Problem with connection to one OLAP cube from Excel

    I have OLAP database that have several cubes. I can not open one of them in Excel 2010. 
    I can make connection but when I import data to pivot table, clik ok, then nothing happens - the same screen appears with  data import. 
    I can browse this cube in Management Studio
    Do you know how to solve this? Any ideas? 

    Hi Dawidsk99,
    According to your description, you can connect to cube success, the issue is that nothing happens when clicking OK to import data to pivot table, right?
    I have tested it on my local environment, we cannot reproduce this issue. So in you scenario, please ensure that not select "Only Create Connection" option In the Import Data dialog box, under Select how you want to view this data in your workbook.
    Besides, you can analyze SSAS using Excel directly from SSMS. In SSMS, browse the cube, and click on the Excel button as shown below.
    References
    http://www.mssqltips.com/sqlservertip/2828/using-excel-to-interact-with-a-ssas-cube/
    http://office.microsoft.com/en-in/excel-help/connect-to-or-import-data-from-sql-server-analysis-services-HP010342296.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • Unable to create Invoice against a Project based Purchase Order

    Hi,
    We have a scenario, wherein there is Purchase Order created against a NETWORK ACTIVITY of a PROJECT. We have created a Invoice with ref to this PO. Now we want to cancel this Invoice by creating the Credit Memo against this PO. But, while trying to create the Credit Memo, we end with the following error message:
    "Budget for WBS element XXXX/12:7777-XX-X1-Y1-Z1 was exceeded by XXXX EUR in document item 003 Ntwk actvty XXXXXXXXXXXX 00110.
    Hence unable to create the Credit Memo. Desperately looking for your response to solved this.............
    Rgds,

    Hi,
    Check the cost as on today for ur project under project itself using CJ20n & then go to CJ30 and check the Budget for ur WBS
    regds,
    CB

  • Unable to create a new dispute case from UDM_DISPUTE

    Hello All,
    When I try to create a new dispute case from UDM_DISPUTE, I get the following error.
    Duplication in attribute display: Attribute
    FIN_RFC_CREATOR already used
    Can any one tell me what is the reason for the above error and how I can create a new test case using UDM_DISPUTE.
    Thanks
    Venkat

    Check your attribute configuration in FSCM - Dispute Mgmt - Dispute Case Processing - Attribute Profile - Create Attribute Profile.  Select the attribute profile that is assigned to your Case Type and select Assign Attributes.  Look to see if the attribute FIN_RFC_CREATOR is listed twice.
    Regards,
    Beth

  • Issue with Building OLAP Cubes in Project Server 2010

    Hi
    There is some issue with while building OLAP cubes. 
    I have created OLAP cube then successfully cube has builded. When i add resource level custom field which has lookup tables values in ASSIGNMENT CUBE  then getting cube failure meesage.
    I deleted and recreated custom field and lookup table but no luck
    Below error message from manage queue jobs
    General
    CBS message processor failed:
    CBSOlapProcessingFailure (17004) - Failed to process the Analysis Services database <DB NAME> on the 10.3.66.12 server. Error: OLE DB error: OLE DB or ODBC error: 
    Warning: Null value is eliminated by an aggregate or other SET operation.; 01003. Errors in the OLAP storage engine: An error occurred while processing 
    the 'Assignment Timephased' partition of the 'Assignment Timephased' measure group for the 'Assignment Timephased' cube from the <DB NAME> database. 
    Internal error: The operation terminated unsuccessfully. Server:  Details: id='17004' name='CBSOlapProcessingFailure' uid='f2dea43a-eeea-4704-9996-dc0e074cf5c8'
     QueueMessageBody='Setting UID=afb5c521-2669-4242-b9f4-116f892e70f5 
    ASServerName=10.3.66.12 ASDBName=<DB NAME> ASExtraNetAddress= RangeChoice=0 PastNum=1 PastUnit=0 NextNum=1 NextUnit=0 FromDate=02/27/2015 02:10:15 
    ToDate=02/27/2015 02:10:15 HighPriority=True' Error='Failed to process the Analysis Services <DB NAME> on the 10.3.66.12 server. Error:
     OLE DB error: OLE DB or ODBC error: Warning: Null value is eliminated by an aggregate or other SET operation.; 01003. Errors in the OLAP storage engine: An error 
    occurred while processing the 'Assignment Timephased' partition of the 'Assignment Timephased' measure group for the 'Assignment Timephased' cube from the 
    <DB NAME> database. Internal  
    Queue:
    GeneralQueueJobFailed (26000) - CBSRequest.CBSQueueMessage. Details: id='26000' name='GeneralQueueJobFailed' uid='b7162f77-9fb5-49d2-8ff5-8dd63cc1d1d3' 
    JobUID='76837d02-d0c6-4bf8-9628-8cec4d3addd8' ComputerName='WebServer2010' GroupType='CBSRequest' MessageType='CBSQueueMessage' MessageId='2' Stage=''.
     Help me to resolve the issue
    Regards
    Santosh

    Is the SQL Server and Analysis Server are running on different servers and not on default ports? 
    If yes, then check if the same alias’s name added in Project Server is added on the Analysis Server.
    Cheers! Happy troubleshooting !!! Dinesh S. Rai - MSFT Enterprise Project Management Please click Mark As Answer; if a post solves your problem or Vote As Helpful if a post has been useful to you. This can be beneficial to other community members reading
    the thread.

  • Create Powershell Mailbox Exchange 2010 from remote server slow

    I create AD Users and Mailboxes from servers via PowerShell script from a remote machine.
    It worked fine and all of a sudden it takes anywhere between 10 and 20 minutes for the mailbox to create.
    I logged into the remote powershell script machine, opened PowerShell ISE and tested with the following scripts, with –Verbose, and this was the result:
    Add-PSSnapin -Name Microsoft.Exchange.Management.PowerShell.E2010
    Enable-Mailbox -Identity 'DOMAIN/OU/OU/testcreateUser' -Alias 'testcreateUser' -Database 'Database1'-Verbose 
    Everything runs fine up to this point, and hangs for 10 minutes:
    VERBOSE: [09:07:34.120 GMT] Enable-Mailbox : [Microsoft Cmdlet Extension Agent] Read Email Address Policy for organization "" from domain controller xxx.
    VERBOSE: [09:07:34.151 GMT] Enable-Mailbox : [Microsoft Cmdlet Extension Agent] Found Email Address Policy "Default Policy".
    VERBOSE: [09:16:12.543 GMT] Enable-Mailbox : [Microsoft Cmdlet Extension Agent] Add Primary Email Address X400:C=xxxxx
    Any idea why it hangs at the Default Policy?

    Check if there are any non-SMTP email addresses listed in the Email Address Policy.  If there is, then it might be trying to find a server that has that proxyagent.dll file that is associated with the address extension.  This is common when there
    are different versions of Exchange installed in the environment.
    Also, use the -domaincontroller switch with your enable-mailbox cmd and point to a DC local to the Exchange server that you are connecting to.

  • Unable to Connect to SQL 2000 Instance from Windows Server 2012 environment

    We have a windows server (TEST) 2012 environment , where our test SQL Server 2012 instance is hosted.
    We have a different (DEV) Server (windows 2000)  where a SQL Server 2000 instance is present.
    When I RDP to our Windows Server 2012 box, I cannot connect to the SQL 2000 server instance from SQL Management Studio. (whereas I can connect to
    the same server from my local machine which has windows 7 and SQL 2012 installed). 
    This is the error i see - 
    "A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The specified network name
    is no longer available.) (.Net SqlClient Data Provider)"
    When run from SQL Agent Service from TEST (A Job which tries to connect to that SQL 2000 instance to read some data using SSIS) , we get the following
    error - 
    An OLE DB record is available.  Source: "Microsoft OLE DB Provider for SQL Server"  Hresult: 0x80004005  Description: "[DBNETLIB][ConnectionRead
    (recv()).]General network error. Check your network documentation.".
    The same SSIS package runs successfully from my local machine.
    Please, could someone advice how to resolve this situation?

    Thanks Olaf.
    Its just that we have legacy systems here in our company, who, for some reason haven't upgraded their older infrastructure, whereas they have set up new Windows 2012/SQL 2012 environments for the newer sql instances where they want to transition to !
    Not sure what the solution is honestly. It is affecting our timelines now. The infrastructure team needs to take a decision now, as to what to do.
    I do have to add, we were able to connect to these "older" servers from our Windows 7 client machines which have SQL 2012 - both from SQL management studio & SSIS (using OLE-DB Provider for SQL Server).

  • Same Request No from Different Server !

    Dear ABAPers,
    I was creating Requests for Reports, Data Elements, tables, etc on our company server Last week.
    Then today we were sent more requests (from another server) to add on our server.
    We found that Their request included some data elements that I created !
    then we understood that their request number was exactly the same as Ours !!!
    How can we make sure Requests Numbers don't Overlap ??

    Hi,
    Every transport starts with system name and to hit on such situation you would have to have 2 systems with the same name. I'm no basis guy, but I find it rather imposible.
    Since you've found your own objects are present on second system then explanation is very easy - your objects were transported to that other system.
    Best regards
    Marcin Cholewczuk

Maybe you are looking for

  • Bridge CS3 Will not open at all

    I get the hour glass for about 1/2 second and nothing else. I have looked and the program is there but will not open. I have unistalled are reinstalled everything but it will not open. All the other Design Premium products are working??? Any suggesti

  • If I'm reading a book on the iPhone and I want to pick up where I left off on my iPad, do I have to search for what page I was on on the iPad or is there a way to sync it?

    If I'm reading a book on the iPhone and I want to pick up where I left off on my iPad, do I have to search for what page I was on on the iPad or is there a way to sync it? Or do I just have to search for a string of text from my iPhone on my iPad?

  • Spry.Utils.loadURL  userData

    is it possible (and how) to get the userData property back to my success-script? Spry.Utils.loadURL("GET", "/updater.cfm?"+formfield+"="+encodeURIComponent(fieldcontent), false, checkstatus, {userData: "4711"}); function checkstatus(request) { var fi

  • Color picker problems

    I began having this problem in Leopard, (am now on Lion):  My color picker does not function - at all.  I can retrieve the color inspector, but the dropdown menu of the colors is non-functioning, I cannot select or use the magnifying glass feature. 

  • Finding all Sunday in a month

    Dear Community memeber; Hope all will be fine. I have a query which I am un-able to resolve. The query is that; I want to findout those date which are comming on Sunday in a month. Like I give month JUN-2010. it should be show me all date which occur