Please help: how to connect to SQL Server Analysis Service (OLAP cube) with Crystal Re[ort XI

I'm trying to connect to an OLAP cube on our SQL Server 2005 machine which is running Analysis Services (9.0).  When I am trying to use the Crystal Reports menu follow steps mentioned below:
1) New report -> Standard Report Wizard
2) Create New Connection -> OLAP -> Add
     Source Type: MS OLE DB Provider fir Analysis Service 9.0
But when I click buttone 'Test', CR prompt me: The connection could not be establiched. Faild to set properties.
HOWEVER: I can connect SQl Server Analysis Server with Excel and other Report tools.
Our softwares are as mentioned following:
- OS: Windows 2003 Server
- SQL Server: SQL Server 2005 Enterprise
- Crystal Reports XI Release 2 Developer Edition
And SQL Server & Crystal Report are running in the same PC.
Any help?

Please re-post if this is still an issue with your OLAP Connectivity please post to Business Objects  » Other Business Objects Products Forum or purchase a case and have a dedicated support engineer work with you directly

Similar Messages

  • Problem connecting to SQL Server Analysis Services

    Could you please help me?. When i try to import data from analysis services in the administration tool i don't know the URL i must write. Could you describe the steps for the import process for this case?.
    Thanks in advance.

    Hi,
    I have ASSAS and OBIEE on one virtual machine...2003 SP1 Server
    I have followed the instructions from MS and when I enter in the following URL
    http://localhost/olap/msmdpump.dll
    in my browser I get...
    - <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    - <soap:Body>
    - <soap:Fault xmlns="http://schemas.xmlsoap.org/soap/envelope/">
    <faultcode>XMLAnalysisError.0xc10e0002</faultcode>
    <faultstring>Parser: The syntax for 'GET' is incorrect.</faultstring>
    - <detail>
    <Error ErrorCode="3238920194" Description="Parser: The syntax for 'GET' is incorrect." Source="Unknown" HelpFile="" />
    </detail>
    </soap:Fault>
    </soap:Body>
    </soap:Envelope>
    I then try to use the URL in the Administration tool to import the cube (note: I do not specify a username or password) I then get the visual studio debugging tool.
    Has anyone see this behavior before??

  • Error when deploy a project in SQL Server Analysis Services

    Hi all, I tried deploy my project SSAS, but it send message error.
    This is image before deploy myproject, it is star chema of project.
    and this is the image when i try deploy it, error list.
    I want to complete my project. How i can fix error list??? Help me.
     

    Hi Anhlovevietnam,
    According to the error message, it seems that the Analysis Services account lack permission to access ‘QLTICKET’. By default, the default account for AS services has only public permission to few databases. If you haven't change the AS services account,
    or haven't grant the permission for this account, then you cannot deploy the AS project to server.
    So in your scenario, ensure the service "SQL Server Analysis Services" is running with a proper Log On As user. This user should have administrator permission on Analysis Services and the proper permissions on the database engine. To avoid this issue, you
    can grant the SELECT permission for the default account for AS services to data source DB. Or you can change the services account to this domain user who has the corresponding to the data source DB.
    http://jetreportskb.host4kb.com/article/AA-00238
    Regards,
    Charlie Liao
    Charlie Liao
    TechNet Community Support

  • How to connect MS-sql server with SAP BW

    hi all,
    i want the connection procedure to how to connect MS-sql server with SAP BW.so that i can extract the data from ms sql server and can create cubes using that data.please help me in this issue.

    Hi Vamshi,
    Go through this DOC it explains u how to connect to other data bases like SQL...
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/58f4db47-0501-0010-a2bf-ff01b150fdff]
    this is a thread related to connect the SQL server..
    [DB Connect MS SQL Server;
    Regards,
    NR
    Assign points if helpful...

  • [Forum FAQ] How do I create calculated measure using AMO in SQL Server Analysis Services?

    Introduction
    In SQL Server Analysis Services (SSAS), you can create a calculated measure in SQL Server Data Tool (SSDT)/Boniness Integrated Development Studio (BIDS). Sometimes you may need to create calculated measure by using AMO in a C# or VB project.
    In this article, I will demonstrate so how to create calculated measure using AMO in SSAS?
    Prerequisites
    Before create calculated measure using AMO, you need to ensure that the following components were installed in your server.
    The multidimensional database AdventureWorks Multidimensional Model 2012
    A SQL Server with SSIS and SSAS installed
    The AMO libraries installed:
    X86 Package (SQL_AS_AMO.msi)
    X64 Package (SQL_AS_AMO.msi)
    Solution
    Here is the detail steps to create calculated measure using AMO in SSAS.
    Open SSDT and create a new SSIS project.
    Drag Script Task to the design surface.
    Click SSIS-> Variables to open the Variables window and add two variables that used to connect to the server and database.
    Create a connection to connect to SSAS server.
    Rename the connection name to ssas.
    Double click the Script Task to open Script Task Editor.
    Add Connection and Database variables to ReadWriteVariables textbox and then click Edit Script button.
    Add AMO reference in the Solution Explore window.
    Copy the script below and paste it into the script.
    Dim objServer As Server
    Dim objDatabase As Database
    Dim strDataBaseID As String
    Dim objCube As Cube
    Dim objMdxScript As MdxScript
    Dim objCommand As Command
    Dim strCommand As String
    objServer = New Server
    objServer.Connect("localhost")
    objDatabase = objServer.Databases("AdventureWorksDW2012Multidimensional-EE2")
    strDataBaseID = objDatabase.ID
    If objDatabase.Cubes.Count > 0 Then
    objCube = objDatabase.Cubes("Adventure Works")
    If objCube.MdxScripts.Count > 0 Then
    objMdxScript = objCube.MdxScripts("MdxScript")
    objMdxScript = objCube.MdxScripts(0)
    Else
    objCube.MdxScripts.Add("MdxScript", "MdxScript")
    objMdxScript = objCube.MdxScripts("MdxScript")
    End If
    objCommand = New Command
    strCommand = "CREATE MEMBER CURRENTCUBE.[Measures].[Multipy Measures By 3]"
    strCommand = strCommand & " AS [Measures].[Internet Sales Amount] * 3, "
    strCommand = strCommand & " VISIBLE = 1 ; "
    objCommand.Text = strCommand
    objMdxScript.Commands.Add(objCommand)
    objMdxScript.Update()
    objCube.Update()
    End If
    objServer.Disconnect()
    Then you can run this SSIS package to create the calculated measure.
    Applies to
    Microsoft SQL Server 2005
    Microsoft SQL Server 2008
    Microsoft SQL Server 2008 R2
    Microsoft SQL Server 2012
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • MS SQL Server Analysis Services (SSAS) OLAP Connection - Dimension descriptions

    Hello,
    We are trying to create some reports on BO 4.0 on top of BPC 10 MS information.
    In order to overcome some issues related to standard connector between BO and BPC (XMLA Planning and consolidation 10 for Microsoft platform), we created a new connection based on discussion MS SQL Server Analysis Services (SSAS) OLAP Connection - Business Intelligence (BusinessObjects) - SCN Wiki
    However we have a major issue with this approach. We cannot see on BO dimension member descriptions.
    Is there anything that we missed?
    Could you help?
    Regards,
    Vitor Ramalho

    Bill,
    So, what you need is a model like SQL Server failover cluster instances. (before sql server 2012)
    In SQL Server 2012, AlwaysOn replaces SQL Server failover cluster, and it has been seperated to
    AlwaysOn Failover Cluster Instances (SQL Server) and
    AlwaysOn Availability Groups (SQL Server).
    Since your requirement is not in database level, I think the best option is to use AlwaysOn Failover Cluster Instances (SQL Server).
    As part of the SQL Server AlwaysOn offering, AlwaysOn Failover Cluster Instances leverages Windows Server Failover Clustering (WSFC) functionality to provide local high availability through redundancy at the server-instance level—a
    failover cluster instance (FCI). An FCI is a single instance of SQL Server that is installed across Windows Server Failover Clustering (WSFC) nodes and, possibly, across multiple subnets. On the network, an FCI appears to be an instance of SQL
    Server running on a single computer, but the FCI provides failover from one WSFC node to another if the current node becomes unavailable.
    It is similar to SQL Server failover cluster in SQL 2008 R2 and before.
    Please refer to these references:
    Failover Clustering in Analysis Services
    Installing a SQL Server 2008 R2 Failover Cluster
    Iric Wen
    TechNet Community Support

  • SSAS(SQl Server Analysis Services).

    Hello Sir,
    We have created an OLAP cube using Business Intelligence Development Studio(BIDS) with
    SQL Server Analysis Services(SSAS) using our data Source which is working fine & for reporting we are connecting the cube with
    MS-Excel through data Connections & we are able to generate the reports with the cube data by filtering & Customizing according to the requirement of reports within the same server instance. But when we want to deploy the cube onto
    the different server (basically on users server) to generate the respective reports we are facing problem. As the end user is not going to have access to the SQL Server Business Intelligence Development Studio how can we deploy the cube. As, we are using ODBC
    connections.
    As this is our first project through SSAS, we kindly need some support to proceed forward. 
    So, Please find the Queries related to the enclosed description as above.
    Queries related to SSAS Cube:
    What are the steps involved to deploy a OLAP cube created in one server to another server?
    Is there any third party tool required for it?
    Thanks in advance.
    Regards,
    Praveen.

    Hi Praveen,
    The following link tells you what you need to know; -
    http://technet.microsoft.com/en-us/library/ms166576(v=sql.105).aspx
    I confirm you do not need a third party tool to deploy a cube and empower your users to access this cube.
    So in summary; -
    Within your Analysis Services solution within BIDs; -
    1) Right click your mouse over the Analysis Services database icon, which is immediately below the solution icon.
    2) Select the sub tab "Deployment".
    3) Enter the name of the server you need to deploy to.
    4) Click "OK".
    5) Right click your mouse (again) over the Analysis Services database icon, which is immediately below the solution icon.
    6) Select "Deploy"
    Kieran Patrick Wood http://www.innovativebusinessintelligence.com http://uk.linkedin.com/in/kieranpatrickwood http://kieranwood.wordpress.com/

  • Missing "Windows Service - SQL Server Analysis Services"

    Hi
    In my SharePoint 2013 Central Administration (this is a Project Server 2013 deployment), I got an alert for this error:
    PowerPivot: MidTier process account should have 'Full Read' permission on all associated SPWebApplications. 
    After reading
    this thread, I assumed I have the 2 accounts configured the wrong way, so I check
    this article to see how to change the accounts, but on the section
    "Change the account under which each service runs" it says to select
    "Windows Service - SQL Server Analysis Services", which I can't find like as you can see in the screenshot below. How can I solve this? I'm new to this all, so if you could simplify the explanation I would be thankful, if not, I'll
    just work on it anyway. :) Thanks!

    Hi ,
    In the process of configuring PowerPivot for SharePoint 2010, automatically select the Analysis Services for SharePoint Integration feature. After configuring PowerPivot for SharePoint 2010, we can see
    SQL Server Analysis Services and SQL Server PowerPivot System Service are started on manage services on server. So you can verify whether analysis service is installed for SharePoint on manage
    services on server.
    More information, please refer to the links:
    http://sharepointgeorge.com/2012/installing-sql-server-powerpivot-sharepointstep-step-guide/
    http://technet.microsoft.com/en-us/library/855bd055-5ad3-493f-9c5b-1f5297b2e6e2(v=sql.110)
    As Trevor said, for this issue, you can ignore it. Anyway, you can also check the link:
    http://whitepages.unlimitedviz.com/2012/06/the-health-analyzer-and-powerpivot-for-sharepoint/
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Creating OLAP report with Crystal Reports and SQL Server Analysis Services 2005

    Post Author: orahc_mao
    CA Forum: Data Connectivity and SQL
    Hi!
    I am currently using the trial version of the Crystal Reports XI and I wanted to do an OLAP report. The problem is I cannot select a cube using "OLAP Connection Browser" (the popup window). I already selected Microsoft OLE DB Provider and entered the server name but still can't connect.
    I don't think the problem is with SQL Server Analysis Services (2005) since Microsoft Excel - Import Data can detect the server as well as the cube I have created.
    I also tried the "Database Expert" of Crystal Reports, created an OLE DB (ADO) connection with "OLE DB Provider for OLAP Services 8.0" driver, entered the server name, checked the integrated security and then I can readily select the database created at SQL Server Analysis Services. However, I still need the OLAP grid create the report but it goes back to my original problem... selecting a cube.
    I hope somebody would help me with this issue.
    Thanks a lot!
    orahc_mao

    Hello,
    I don't recognize those variables as CR ones so it's likely something the original developer is setting in code.
    You'll have to discuss with that person.
    If your have SDK issues then post your question to one of the .NET or Java SDK forums.
    Thank you
    Don

  • SQL Server Analysis Services not showing in Services on Server on Central Admin

    Hi All
    We have a Sharepoint 2013 farm set up (2xApp, 2xWeb, 1xSQL) and we have a number of excel powerpivot workbooks deployed and refreshing.
    This was all working fine, until recently when our Excel 2013 Tabular workbooks stopped refreshing manually.  This had worked fine in the past, but now is giving the following error:
    "An error occurred during an attempt to establish a connection to the external data source"
    The first thing I wanted to check was that the "SQL Server Analysis Services" was started in Services on Server within Central Admin.   However when i navigated to check this, I noticed that the service was no longer listed at all.
    I checked the Analysis services for Powerpivot is running on the server and it is registered within Data Models on Excel services.   
    There was recently some Windows updates that were applied to the servers, but i'm pretty confident that the refresh was working after these, however i cant rule out 100%.
    Hoping for any advice on what I can check/do here?
    Thanks!

    When i try to run that tool i actually get a strange error (we are running Enterprise Edition):
    "PowerPivot for SharePoint 2013 Configuration is missing prerequisites: SharePoint 2013 Enterprise Edition is required.
    For more information go to http://go.microsoft.com/fwlink/?LinkId=247828.
    Please address the validation failures and try again."
    Yes it looks like on the server hosting PowerPivot analysis server that a number of windows updates got applied.  However
    none look to be specifically about for SQL, and the 2 cumulative ones are for IE and Active X for Windows Server.

  • Error Starting SQL Server Analysis Services (SharePoint - Central Administration)

    I am not able to start the SQL Server Analysis Services via SharePoint Central Administration but SQL Server PowerPivot System Services yes.
    I then tried to start the SQL Server Analysis Services(PowerPivot) via the sql server(powerpivot), it was started but will stopped after a while. I am not sure why it happened. Can anyone helps me? I have debugged this issue for almost 2 weeks time but still
    failed to solve it.
    Microsoft SharePoint Server 2010 - 14.0.6029.1000 (x64)
    Microsoft SQL Server 2008 R2 (SP2) (PowerPivot) - 10.50.4000.0 (X64)

    Hello,
    Have you got any error message or log information in your scenario? Please help to check Windows Event log and SharePoint log for further investigation:
    Configure and View SharePoint Log Files and Diagnostic Logging (PowerPivot for SharePoint):
    http://technet.microsoft.com/en-us/library/ee210652.aspx
    Or this issue might be caused by expired password. Please try to update an expired password for SQL Server Analysis Services (PowerPivot) instance:
    http://technet.microsoft.com/en-us/library/ee210642.aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • SOAP API's for Sql Server Analysis Services 2005

    Can any one tell me the Latest XMLA SOAP API's necessary for communicating with Sql Server Analysis Services 2005????

    i found more option, to allow the program on firewall 
    Configuring firewall settings for SQL Server Integration Services (SSIS) on Windows 2008 R2
    http://databasebestpractices.com/configuring-firewall-settings-sql-server-integration-services-ssis-windows-2008-r2/
    Please Mark This As Answer if it helps to solve the issue
    Tzuri Ben Ezra | My Certifications:
    CompTIA A+ ,Microsoft MCP, MCTS, MCSA, MCITP
    |
    FaceBook: Tzuri FaceBook | vCard:
    Tzuri vCard | 
    Microsoft ID:
    Microsoft Transcript 
     |

  • SQL Server Analysis Services Filter web part.

    Hi all
    In a NTLM farm with 1 SharePoint and 1 SQL server, I am using clamis based authentication for Excel Services app in SharePoint Server 2010.
    While all Excel documents work, I get error on "SQL Server Analysis Services Filter" web part.
    The filter works when I am logged on the sharepoint server and open the Intranet to use it, but doesn't work if I reach the Intranet by not logging on the SharePoint server.
    The error I get is on the filter web part:
    "An error occured while retrieving filter values (The connection either timed out or was lost).
    Anyone else that have had the same problem?
    Any ideas to troubleshoot? :)
    Regards

    OK, I solved this problem with the following workaround: (Notice that the problem may be solved when you have completed just one of the steps, so be sure you make a test everytime you have completed one).
    First:
    Try changing your Excel Services Application File Access Method to
    IMPERSONATE, that can be achieved in SharePoint Central Administration
    -> Manage Service Applications -> Excel Services Application Settings ->
    Global Settings. (Make sure the option for Allow Cross Domain Access is unchecked if you don't have a security certificate installed on the server, also in the most cases you don't need this option). Please take note of your Excel Services
    Application ID.
    Then modify your performance point data connection file in Excel, by oppening Connection Properties and in the Definitions tab, click on Authentication, set Authentication Type to Use a Stored Account and then write your excel services application ID in
    the textbox labeled "Application ID", by default the excel services application ID is
    "Excel Services Application" (no quotes), now click OK. Then click Export Connection File and overwrite current connection file in SharePoint.
    (You may need to restart the Excel Calculations Service on Manage Services in this Farm page).
    Second: (If before step doesn't solved the problem already)
    Change the service account for the SQL Server Analysis Service to an account that have Delegation permission or change the current account to LocalSystem.
    Third (If the other two steps doesn't solved the problem).
    Check in SharePoint Central Administration if the service Claims To Windows Token is started, if not, just start it.
    I solved the connection problem, but now When I get the hierarchies in the filter, I can not drill more than 2 levels down, in the third level it throws the following exception: "There was an error in the callback"

  • WISH : Excel Analysis add-in without SQL Server Analysis Service

    WISH : Excel Analysis add-in without SQL Server BI Edition.
    I want to use Excel Analysis functionality on my Excel without SQL Server Analysis Service.
    LIKE Excel Power Pivot , can use without SQL Server Tabluer Service.
    Yes, Excel Power Pivot have limits.
    my hopes.
    Hope 1st. Excel Analysis add-in that can use without SQL Server Analysis Service.
    Hope 2nd. Microsoft Azure SQL 'Analysis' Service that can use by Excel Analysis add-in.
    Hope 3rd. SQL Server Analysis Service for Client which price is resonable for client Excel use.
    Regards,
    Yoshihiro Kawabata

    As Mr. Olaf Helper said all you have to do is add Analysis Service as a new one on your existing instance here is what you have to do if you are new for this
    1-Click on Start on your computer >>>All Programs>>>Click on Microsoft SQL Server 2008  >>>Configuration Tools>>>SQL Server Installation
    Center
    2-  Click on New Installation or Add Feature to an Existing Installation as shown below 
    and then click on Analysis Service as shown on here 
    and then from this follow the installation wizard and you should be able to install it. 
    I hope this elaborate more for your installation problem and goodluck
    Please remember to click “Mark as Answer” on the post that has answered your question as it is very relevant to other community members dealing with same problem in seeking the right answer

  • Connecting SQL Analysis Services 2005 cube with obiee 10g

    Hello experts,
    I'm trying to link an SQL Analysis Services 2005 cube with obiee 10g.
    In Oracle BI Administration, when I choose File -> Import -> From
    Multi-dimensional, I have to fill the next gaps:
    Provider Type: Analysis Services 2005
    URL: ***********
    User: blank
    Password: blank
    Before to do that, I need to create the URL path.
    To create the URL, I have followed this link.
    http://erpthings.blogspot.com/2008/08/obiee-connection-to-msas-2005-
    cube.html
    But, it hasn't worked because when I was trying to configure the HTTP
    access to SQL Server 2005 Analysis Services, we have to perform a test to ensure that it has been well configured. In IIS -> WebSites -> Default WebSites -> olap, we should browse the document called "msmdpump.dll" and this should show an xml document, but it doesn't.
    Thanks!

    Hi Alex
    It sounds like your MS data pump might not be configured correctly. First ensure that is working before trying to put the values into OBIEE. Don't worry about the 500 error - I get that too instead of an XML page.
    You can read a bit more about SSAS support on my blog here:
    http://total-bi.com/2010/12/obiee-sql-server-analysis-services-cubes/
    Here's the link to Microsoft's description of setting up msmdpump.dll
    http://technet.microsoft.com/en-us/library/cc917711.aspx
    Paul

Maybe you are looking for

  • IPhoto no longer recognizes my Kodak DC4800

    About 3 months ago, I connected my DC4800, as usual, and iPhoto 5.0.4 launches normally, but no recognition of the camera; the upload window never opens. The Kodak likewise does not work on my buddy's brand new (leftover) iBook. The Kodak works on an

  • Ps3 format question, and more..thanks

    hi guys, i transferred a hd movie from my sony camera to my ps3 it plays great, when i copyed the movie from my ps3 to a external hdd, to edit with imov09, it wont play. the file is there, any ideas> also i took a clip of it and converted it to mp4,

  • Sync 2760 with google calendar

    Hello, How can I know if my 2760 can use GCALSYNC ? they say : "any Series 40 Development Platform 3 and later, any Series 60 Second Edition and later, any Series 80, any Series 90." But I don't know what kind of serie my 2760 is. Thanks in advance f

  • Subcontracting / Outsourcing of Production process

    Dear Team, We have taken Manufacturing Module recently on our BYD recently. but we are unable to define / locate out sourcing process in system. Complete Scenario described as below Procurement of Raw Material ---> BOM ---> BOO (two step) --->Quality

  • How can I fix plug-ins?  HELP?!

    My iMac is OS X (10.5.8), running Safari 5.0.6.  My plug-ins aren't working and I don't know how to fix it.  All the plug-ins and java scripts are enabled.  Our software is up to date according to the updater.  Still somehow, if we try to use YouTube