Allowing Others to Browse my localhost SSAS Database/Cube

I have successfully deployed and browsed a cube on my own localhost. However, when others in my workgroup try to connect to my analysis server (localhost), they are unable--even though I've given them the appropriate permissions. When they try to browse
it in excel, they get the error: "No connection could be made because the target machine actively refused it."
How can I give others in my group access to my localhost cube?

Hi David,
Please try to configure Windows Firewall for a default instance of Analysis Services.
A default instance of Analysis Services listens on TCP port 2383. For detail steps, please refer to following article:
Configure the Windows Firewall to Allow Analysis Services Access:
http://technet.microsoft.com/en-us/library/ms174937.aspx
Regards,
Elvis Long
TechNet Community Support

Similar Messages

  • How to schedule SQL Agent job for XMLA script file of SSAS database instead of taking a backup.

    I want to script XMLA file instead of backup of database and also want to schedule a job for the process in SQL Agent. 
    Is there any pros and cons when I script the XMLA file of the SSAS db instead of taking a backup ? 
    Amir

    Hi Amir,
       You can take the Create SSAS database XMLA script and run the job to create the cube. The script contains the Metadata definition of the Database and it does not contain the actual data. 
    Pros: Since you are only creating an empty cube the script will run faster 
    Cons: You still need to process the created cube to use it for reports.
    Fastest option is to take the backup of the cube and restore wherever necessary.
    And you can also use TFS source control to deploy the cube and process it later.
    Regards,
    Venkata
    Venkata Koppula

  • Looking for a name of the application that allows you to browse files

    Looking for a name of the application that allows you to browse files in Linux shell! Here's someones screenshot
    http://s8.postimg.org/ksexr9nbp/image.jpg
    that app in the middle - browsing home directory!
    Thanks all in advance!

    bohoomil wrote:Check the Wiki, File managers, and generally always check the Wiki before asking, after asking, and instead of asking...
    An apple can be an effective contraceptive. Not before. Not after. Instead.

  • How to get Cube and Dimension ID from SSAS Database programatically

    Hi All,
    I am processing one SSAS cube from SSIS package and processing the cubes dynamically .For this am putting the Cube ID ,Cube name, Dimension ID, Dimension Name in a table and generating the XML programmatically.
     I can right click the properties of the dimension and cube and will get the ID information. But is there any way we can get the ID information programmatically .So that On the fly I will get the information and create the XML without storing
    the these information in table.
    We are using 2008 R2
    Thanks in advance
    Roshan

    Hi,
    Here is the C# code you want. Try it and see.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Xml;
    using AMO = Microsoft.AnalysisServices;
    namespace ConsoleApplication4
    class Program
    static void Main(string[] args)
    AMO.Server oServer = new AMO.Server();
    oServer.Connect(@"Provider=MSOLAP.5;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=AdventureWorksDW;Data Source=DEVWKS6\MSSQLSERVERMDX");
    foreach (AMO.Database db in oServer.Databases)
    foreach (AMO.Cube cube in db.Cubes)
    Console.WriteLine(System.String.Format("Cube Name : {0} Cube ID : {1}", cube.Name, cube.ID));
    foreach (AMO.CubeDimension dim in cube.Dimensions)
    Console.WriteLine(System.String.Format("Dimension Name : {0} Dimension ID : {1}", dim.Name, dim.ID));
    System.Console.WriteLine("");
    System.Console.WriteLine("");
    oServer.Disconnect(true);
    oServer.Dispose();
    System.Console.ReadLine();
    If you know your target SSAS Database Name, then you could use LINQ to narrow your search. Take a look into the following Code.
    AMO.Database db = oServer.Databases.Cast<AMO.Database>().Where<AMO.Database>(SSASdb => SSASdb.Name == "AdventureWorksDW").FirstOrDefault();
    foreach (AMO.Cube cube in db.Cubes)
    Console.WriteLine(System.String.Format("Cube Name : {0} Cube ID : {1}", cube.Name, cube.ID));
    foreach (AMO.CubeDimension dim in cube.Dimensions)
    Console.WriteLine(System.String.Format("Dimension Name : {0} Dimension ID : {1}", dim.Name, dim.ID));
    System.Console.WriteLine("");
    Best Regards...
    Chandima Lakmal Fonseka

  • Second posting - spent hours on this - yesterday and today - I have downloaded the FlashPlayer upgrade (now 10 times), in Security - no pop-ups are checked, the "allow Java" and "allow other other plug-ins" are both checked.  I have re-booted after the Fl

    Repeat message - I have downloaded the FlashPlayer upgrade (now 10 times), in Security - no pop-ups are checked, the "allow Java" and "allow other other plug-ins" are both checked.  I have re-booted after the Flash-Player upgrades - still "pop=ups blocked"

    Hello,
    Please provide the following information:
    Your operating system & version
    Your web browser(s) & version
    Your Flash Player version
    Explain your problem in step-by-step detail if possible
    A direct link to a page that demonstrates the problem
    If you get error messages, please quote them exactly, or provide a screenshot: http://forums.adobe.com/thread/1070933
    Thank you.
    Maria

  • I've lost the arrows on my Safari toolbar that allow me to browse back and forth on web pages. Any  solutions guys?

    I've lost the arrows on my Safari toolbar that allow me to browse back and forth on web pages. Any  solutions guys?

    Thanks everyone! Felt a complete twit. Went to view, customize toolbars and then dragged the arrows back into the toolbar.  No idea how we lost 'em though.

  • Local Cube Filtering / Add SSAS database as a data source for another SSAS project

    I need to generate a local cube using a fully processed SSAS database deployed on SSAS server. However, I need to restrict the data downloaded in the local cube while doing this.
    I have restricted access to the dimension data by mapping data to UserName/CustomData & using
    dynamic role-based security. When I generate a
    local cube by executing an AdoMdCommand using xmla structure of this online cube, the .cub file thus created also contains the data that shouldn't be accessible to the user creating the cube.
    I am aware of
    CREATE GLOBAL CUBE statement, but since it has some limitations such as we cannot have DISTINCT COUNT measures, I cannot use this statement because my online cube contains some important measures that use the DISTINCT COUNT aggregation. Plus, when I include
    a dimension with huge amount of data in it, the execution of command times out.
    So I am trying out an approach wherein I create a different SSAS project and use the existing SSAS database as a Data Source and then carry out the filtering to output the .cub file using xmla structure of this project database. The problem is, somehow SQL
    Server Data Tools 2012 does not recognize another SSAS database as a valid data source.
    Could someone please let me know why can't we do this or suggest me any alternative approach to implement this?
    Regards, &lt;br/&gt; Akshay

    Hi David,
    According to your description, you are creating a SQL Server Analysis Services project, now what you want is using SAP HANA as the data source, right?
    SSAS support many type of data source. However, as you can see on the link below, SAP HANA data source was not listed on that link. So this type of data source is not supported in current version of SSAS. Microsoft will update that document when it is supported.
    http://msdn.microsoft.com/en-IN/library/ms175608.aspx
    Thank you for your understanding.
    Regards,
    Charlie Liao
    TechNet Community Support

  • How to disable Refresh,Reload in browser and user should not allow to multiple browser sessions ?

    Dear All,
    How to disable Refresh,Reload in browser and end user should not allow to multiple browser sessions in portal.Where we need to configure the settings or any code in masthead or any other component. My server version is 7.4 - SP5 .Please help us.
    Thanks for advance,
    BR,
    Durga Rao.

    Dear all,
    i am able to logoff the click refresh button on keyboard.I am using this code to log off the user into the portal.
    document.onkeydown = function(e)
      var key;
      if (window.event) key = event.keyCode
      else
      var unicode = e.keyCode ? e.keyCode : e.charCode
      key = unicode
      switch (key)
      { //event.keyCode
      case 116: //F5 button
        LSAPI.sessionPlugin.logoff();
      event.returnValue = false;
      key = 0; //event.keyCode = 0;
      return false;
      case 82: //R button
      if (event.ctrlKey)
    LSAPI.sessionPlugin.logoff();
      event.returnValue = false;
      key = 0; //event.keyCode = 0;
      return false;
      case 91: // ctrl + R Button
    LSAPI.sessionPlugin.logoff();
      event.returnValue= false;
      key=0;
      return false;
    Thanks.
    But i am unable to control the multiple windows opening the browser.So any one can tell me the how to block the new window and new tab/duplicate tab option.
    BR,
    Durga Rao.

  • How to Programmatically generate .asdatabase from SSAS database from SSAS server?

    Is there a way to  Programmatically generate .asdatabase file and other ssas config files from SSAS database? Not by devenv .dwproj. 

    Thank you very much for your answer. 
    I know how to generate the asdatabase: (I can do it by devenv.exe  project.dwproj
    or build the ssas project manually).  How ever I want to programmatically generate
    .asdatabase by C#.
    I
    programmatically did
    some modifications on the SSAS database(drop some dimension and measures),  then I want to generate .asdatabase so that i can deploy it to the server. I know i can do it by xmla as well.  But I really like deploying the cube by .asdatabase, not xmla.
    Any thoughts?
    Thanks,
    Jackie

  • HT204150 Does iOS 6 allow you to browse groups?  I could do it before with iOS 5 on my 4S.  Now I can't.

    Does iOS 6 allow you to browse groups?  I could do it before with iOS 5 on my 4S.  Now I can't.

    If you check all the groups then you will see the combined contacts in all of the groups.  If you want to see (browse) the contacts in, for example, just one group, only check this one group and tap done.  If you check two groups and tap Done you will see the combined contacts belonging to these two groups.
    Try checking a single group and uncheck all others, tap Done and you'll see what I mean.

  • Allow third-party browser extentions

    Hello,
    After upgrading to Java 7 up21, I now need to enable the Internet Explorer security option to "Allow third-party browser extensions" to allow the Java login applet at the DCO Jabber site. How can I increase verbose logging in Java to help explain what has caused this change? Thanks.
    - Dave

    i have the same problem - someone please help

  • While Browsing SSAS 2005 Cube Getting Error " The following system error occurred from a call to GetOverlappedResult for Physical file: Logical file: '' : Insufficient system resources exist to complete the requested service."

    Hi Guys,
    When I try to Brows Cube (SSAS 2005), I get below error (Sometimes):
    TITLE: Microsoft SQL Server 2005 Analysis Services
    Server: The operation has been cancelled.
    The following system error occurred from a call to GetOverlappedResult for Physical file: '\\?\F:\Program Files\Microsoft SQL Server\MSSQL.2\OLAP\Data\XXX_2012.0.db\XXX DC.0.cub\FACT_XXX.0.det\PARTITION_2013Q31.0.prt\674.fact.data', Logical file: '' : Insufficient
    system resources exist to complete the requested service. .
    The following system error occurred from a call to GetOverlappedResult for Physical file: '\\?\F:\Program Files\Microsoft SQL Server\MSSQL.2\OLAP\Data\XXX_2012.0.db\XXX DC.0.cub\FACT_XXX.0.det\PARTITION_2013Q23.0.prt\385.fact.data', Logical file: '' : Insufficient
    system resources exist to complete the requested service. .
    BUTTONS:
    OK
    and I think due to above Error, Index on a Particular Attribute (EMP_ID) of a DIMENSION DIM_EMP is getting dropped from FEW of the Partitions (Folders) and started getting new error:
    TITLE: Microsoft SQL Server 2005 Analysis Services
    File system error: The following error occurred while opening the file '\\?\F:\Program Files\Microsoft SQL Server\MSSQL.2\OLAP\Data\XXX_2012.0.db\XXX DC.0.cub\FACT_XXX.0.det\PARTITION_2013Q31.0.prt\688.DIM_EMO.EMP_ID.fact.map'.
    BUTTONS:
    OK
    I followed the above path and did not find file 688.DIM_EMO.EMP_ID.fact.map in folder PARTITION_2013Q31.0.prt. Once I rebuild the Index (ProcessIndex) for this partition, I am able to See file 688.DIM_EMO.EMP_ID.fact.map.
    But again when next time I get error "Insufficient system resources exist to complete the requested service", Then 688.DIM_EMO.EMP_ID.fact.map will be dropped and will not be available in folder PARTITION_2013Q31.0.prt.
    Anyone had similar issue. Could you please share your experience and resolution if any.
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Hi Shiven,
    In your scenario, the issue occur at sometimes, right? Base on my research, the issue can be caused by that calculation estimate exceeded available memory. Possibly due to possible number of dimension members and sizes of keys. And 32bit environment didn’t
    allow for any expansion to the SSAS memory space.
    To avoid this issue, please try to use userva to fine tune the 3GB setting down to 2900 since /3GB is the likely
    cause (has been for most other customers who encountered the same problem before). The KB Articles below discuss that setting in detail.
    How to use the /userva switch with the /3GB switch to tune the User-mode space to a value between 2 GB and 3 GB
    Regards,
    Charlie Liao
    TechNet Community Support

  • SSAS database synchronization is slow

    Hi,
    I'm testing the SSAS database synchronization function.
    and I found it slow!!!
    my server is able to write at 400MB/sec and more, but SSAS is only able to write at 60MB/sec.
    I'm testing copying the olap database from 2 instances on the same server, so not have the network involved.
    is there any option available around the synchronization process? excepts the compression one.
    at the olap service itself? in the config file, is there any config around disk cache for this sync process or something like this?
    thanks.
    Jerome.

    Hi Jerome,
    According to your description, you copy the OLAP database from one instance to another instance on the same server, you need to know why SSAS is only able to write at 60MB/sec on the server which is able to write at 400MB/sec and more, right?
    Based on my research, synchronization's file copy phase is single-threaded. And due to the single-threaded file copy phase, synchronization might not be the most efficient way of transferring files. So in your scenario, SSAS is only able to write at 60MB/sec
    on the server which is able to write at 400MB/sec and more. Here are some blogs about synchronization internal and synchronization performance troubleshooting, please see:
    http://www.informit.com/articles/article.aspx?p=1842938&seqNum=3
    http://www.informit.com/articles/article.aspx?p=1842938&seqNum=4
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • Scheduling SQL AGENT JOB for SSAS DataBase to take backup files Daily with Different Names

    Hi All,
    I am working with SSMS. I have Analysis Services DataBase.
    i want to Schedule a SQL SERVER AGENT JOB.
    I want to take that AS DB BackUp Daily and has to be stored in Same
    Folder/same path in my local
    machiene with Different Names.
    Means, There should be Daily BackUps Files in that Path.  According to that we have to Schedule the JOB.
    Can anyone help me for this..
    Thanks,
    Supraja.

     Hi Katherine,
    Thanks a lot for your Response. what
    you have posted is very useful for me.
    But i am searching the result using AS
    DataBase BackUp Script. 
    i found one of the easy way. its working for me.
    Please check the below link for your reference..
    http://dbatasks.blogspot.in/2012/08/taking-backup-of-ssas-database.html
    Thanks,
    Supraja.

  • Hot Synch does not work, Treo 755p, USB, 17" Mac Pro Laptop, even with RevD installed and Allow other HotSynch applications preference check box checked

    Hi,
    I am a long time Palm enthusiast who is frustrated.  No more Palm products for me or anyone I speak to until I solve this problem.  Someone at Palm should be paying attention to their long time cusotmers.  I bought Palms in 2002 and 2003.
    The support literature coming with two Treo 755p that I bought was so poor that never saw the fine print that there was three months of support if I registered the devices.  The registration page does not let me register.  All the fields are ghosted after I put in the serial number.  I bought one in June 2008 and the other in early 2008.  So never registered and can get no help from Palm now it seems.
    So beside that gripe below is the problem issue info.
    I can't get a Verizon Treo 755p to USB cable Hot Synch with my daughters 17" Mac Pro Laptop.  It is using OS 10.5x  She lives in another city so I am trouble shooting this remotely.
    Did - Revd Palm upgrage has been installed.
    PalmDesktopMac421Revd.dmg (17MB)
    http://kb.palm.com/SRVS/CGI-BIN/WEBCGI.EXE/,/?St=4518,E=0000000000255177998,K=6239,Sxi=3,case=obj(33...
    Did in advanced settings on the Treo select in the Synch preferences allow other Hot Sync applications.
    That process worked however on my own Treo 755p Verizon as below:
    After much work, hours over several months, I got my my Treo 755p Verizon to Hot Synch with a QuickSilver desk top Mac running os 10.5x. 
    Did the RevD upgrade.
    Did in advanced settings on the Treo select in the Synch preferences allow other Hot Sync applications.   Otherwise the Wireless Synch feature prevents a Hot Synch.
    Once those both were done than Hot Synch works fine, and Wireless Synch works fine and does not interfere.
    The Wireless on both PDAs is scheduled to be removed on both Treos due the economy on Feb. 4th, so I would like the HotSynch to be working so her Treo is backed up.
    Thanks so much to anyone who replies to help out.
    Best
    Post relates to: Treo 755p (Verizon)
    Post relates to: Treo 755p (Verizon)
    This question was solved.
    View Solution.

    Works now, she had created a user ID as prompted when installing the HotSynch Software, but it was not the same name of the Treo 755p.  The default ID was the one she from installing the software, so it showed nothing in address or contacts, but when she switched to the Treo ID than all her stuff was there.
    Post relates to: Treo 755p (Verizon)

Maybe you are looking for

  • Mac OS-X 10.6.8,  Safari 5.1.9, Flash Player 11.7.700.169 ,  all i get is "Blocked Plugin,

    Mac OS-X 10.6.8,  Safari 5.1.9, Flash Player 11.7.700.169 ,  all i get is "Blocked Plugin, I have tried for 3 days to install. Unable to watch any videos on youtube. Keep getting prompted to download, says install complete, but every time i click on

  • Installing lion onto external drive frozen during OSX install

    I was trying to install lion into a clean hardrive, using lion recovery. it's downloaded the first part, and the imac has restarted once and loaded up the "install Mac  OS X " page, it said it was going to take 25mins to install. It's frozen, about 2

  • E61i - can't end call

    I have an E61i and nothing happens when I press the end call button now. I can't hang up on calls anymore without going to the options menu. I have the latest version of the firmware. I have a memory card but I removed it and restarted with no effect

  • Vista keywords disappear on Mac

    HI All, I have this rather odd issue. I have a Vista desktop machine where I generally import all my photos from the camera, organise and tag them. I then copy them to my MacBook Pro and into iPhoto. This workflow has been working fine, and all my ta

  • Is there a way to disable automatic bluetooth switching?

    im sure the topic title is a little confusing.  so let me elaborate.  i have this jvc bluetooth device that has a 3.5 input to basically make your device comout of the speaker or media center that is connected to the bluetooth device.  i can either c