python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Why MAX is NULL when projecting along the same dimension
Here is a vanilla "Sales" database:
CREATE TABLE Sales(id INT, category VARCHAR(50), item VARCHAR(50), date DATE, amount DECIMAL(10, 2));
INSERT INTO Sales VALUES
(1, 'Memory', 'Corsair ...

Pragmateek
Votes: 0
Answers: 1
Exponential moving average in MDX
I have bellow output of cube
date value
---- -----------
2021-01-06 10
2021-01-07 Null
2021-01-08 Null
2021-01-09 15
2021-01-10 18
2021-01-11 25
My question is, ho...

Mohammad Reza
Votes: 0
Answers: 1
Connecting R or Python to an Analysis Services Cube (Microsoft)?
I'm trying to connect R or Python to an Analysis Services Cube. I usually access it through Excel Analysis Services, with the URL of the remote server and my username and password. You can see how I a...
alcastaro
Votes: 0
Answers: 0
Retrieve only existing combinations of dimensions
Here is a basic model with 2 tables in a 1-1 relationship:
CREATE TABLE CountriesNames(countryId INT, countryName VARCHAR(50));
INSERT INTO CountriesNames VALUES
(1, 'France'),
(2, 'Germany'),...

Pragmateek
Votes: 0
Answers: 1