I wanted to know how many people are accessing a particular ssas cube. Please let me know the process to find them.
How to see how many people are accessing a ssas cube?
2k views Asked by Sharath Reddy At
2
There are 2 answers
Related Questions in SSAS
- How can I connect to a local SSAS (OLAP) server from Python?
- Microsoft.AnalysisServices.AdomdClient.NetCore.retail.amd64 not working on windows server
- SSAS Error. An unexpected error occurred: "A call to a COM component returned an error in the format HRESULT E_FAIL."
- After copying the SSAS cube and SSIS packages there is processing problem
- Connect an on-prem SQL Server Analysis Server Tabular Model with Azure Data Factory
- Power BI composite/dual mode - SQL DB + SSAS MOLAP
- How to get data in sematic model in power bi premium from SSAS?
- Programmatically get relational database source for SSAS objects across compatibility levels
- Issues with deploying a project in SSAS: "Cannot deploy metadata"
- SSAS Tabular deployment issue
- Performance difference depending on attribute order when using SSAS for data import in Excel pivot table
- Executing queries against PowerBI / SSAS using the Microsoft.AnalysisServices.Tabular library in Python?
- Filtering OLAP Pivot Table based on dates
- SSAS Cube Hierarchy Collapsing within Excel with sub values
- My SQL Server Analysis services won't switch from tabular to multidimensional
Related Questions in CUBE
- OLAP Cube process error (A connection could not be made to the data source with the DataSourceID of 'Example_SQL', Name of 'ExampleSQL'.)
- SSAS Cube Hierarchy Collapsing within Excel with sub values
- Trying to make a smooth dragging 3d box rotation
- SSAS cube aggregation formula when all dimensions' values are the same
- How to load the .cube file into the real-time iOS camera in swift iOS?
- Retrieving data from DataModel (Power Pivot) within VBA
- SSAS Process Cube error "We can't sign you in with this credential because your domain isn't available."
- Configuring TLS and SSL for AWS Fargate Cube.js Server with NLB
- Error while arming cube orange plus using ros2 which runs on a companion computer?
- cube animation in c++ with setconsolecursoreposiotion
- OLAP Query Cube Issues to config connection string for not login many times?
- Spark Connector with Cube js
- DAX - YoY Calculation don't work on higher Date level
- Process data: error: execution of DDL failed
- sync tabular model from single server to the two different servers at same time
Related Questions in OLAP-CUBE
- Finding shorter solution for the grouping
- SSAS Cube Hierarchy Collapsing within Excel with sub values
- My SQL Server Analysis services won't switch from tabular to multidimensional
- Pivot Tables / Cubes - Need to create a new member that categorizes values from another member
- SSAS CUBE connection from Visual Studio
- Week dimension in case of month split
- Need to create a report in Apache Kylin using SSB sample data
- OLAP Query Cube Issues to config connection string for not login many times?
- How to Execute multiple XML statements
- Error when sending multiple values for a dimension in SSRS through JSON
- I cant change the brand name for total product
- Process SSAS OLAP cube via Python
- How to create report in SSRS using two parameters from one dimension
- Measure Counts Doubled in SSAS based on where dimension is referenced in MDX statement
- OLAP Cube deployment issues in visual studio
Related Questions in MSBI
- How to use Project Level connection Managers in SSIS Script Task
- How to pass a variable value in SSIS to Python Script : Execute Process task
- Multiple CSV files to Multiple tables with different schema in SSIS
- How can I fix the error "404 requested resource is not found" when clicking the report accessible report link?
- Could not load file or assembly 'Newtonsoft.Json, Version=6.0.0.0 in SSIS 2016
- SSIS - Retrieve variable value from controle flow (no using script task) to data flow
- Why SSRS PDF link is not clicking
- Issue with ssrs parameter
- Script task Issue
- Dynamic creation of SSRS Data driven subscriptions
- Need to search the recently modified file in SSIS and rename it
- I can't see my variable name in property expressions editor in foreach loop container
- Creating flat file connection manager in ssis
- How does a non-clustered index with SQL Variant as one of the columns work?
- Recompile an Altered Table
Related Questions in CUBES
- Issues with deploying a project in SSAS: "Cannot deploy metadata"
- Accessing an API with multiple cubes using 'for' loop or 'lapply' in R, with pagination, and saving to multiple dataframes
- How to programm Shepard-Metzler-figures with R
- Obtain coordinates of 4D-hypercubes using meshgrid - Python
- Unexpected error thrown when drill down a cube using cubes library
- Performing aggregation on cube throws unexpected error
- Errors in the OLAP storage engine: Rigid relationships between attributes cannot be changed during incremental processing of a dimension
- how to create cubes with druid using hdfs files
- Using multiple SSAS Cubes as PowerBI source for reporting
- Can two 3×3 scrambled rubix cube be exact same?
- 3D cubes in matlab
- How to see how many people are accessing a ssas cube?
- Why is rotation on the z axis behaving differently than rotation on the x and y axes?
- Squeezing cubes in unity
- TM1py upload of different cubes
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I don't think there's a simple way to get connected users from a cube. You can use a couple of different tools to collect that information (along with lot's of other information as well).
To get a list for users currently connected to a SSAS instance, you might use SQL Server Profiler. Then you can filter one cube from the resulting data.
For tracking users extended period of time, you can use Extended events
Both of these tools create data for a lot of data and you'll need to parse distinct users from that is some way.