Analysis :: OLAP Cube Data Visualization Tools For Desktop?

Jun 5, 2015

I am looking for some Simple/Best Data Visualization tools for Desktop which accept data from SSAS Cubes.

View 5 Replies


ADVERTISEMENT

Analysis :: OLAP CUBE And Data Sources

Aug 4, 2015

I've

1. SQL Server Data Warehouse
2. OLAP CUBE in Analysis Services

My question is - If my SQL Server Data Warehouse is changed (Having Append Data) - Is that My OLAP Cube will have the Append Data?

It's possible, my OLAP Cube always having Append Data if my Data Warehouse is changed? If yes, how to do it without re-deploy and re-process my Analysis Services Project.

View 3 Replies View Related

Analysis :: Creating OLAP Cube / Dimension In Visual Studio ERRORS

May 15, 2015

When I want to create a dimension i always end showing up errors below:

COPY
<Batch xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
  <Process xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ddl2="http://schemas.microsoft.com/analysisservices/2003/engine/2" xmlns:ddl2_2="http://schemas.microsoft.com/analysisservices/2003/engine/2/2"
xmlns:ddl100_100="http://schemas.microsoft.com/analysisservices/2008/engine/100/100"

[Code] ...

Errors and Warnings from Response
    Internal error: The operation terminated unsuccessfully.
    The following system error occurred:
    Errors in the high-level relational engine. A connection could not be made to the data source with the DataSourceID of 'DB LAB2', Name of 'DB LAB2'.

[Code] .....

View 2 Replies View Related

Export Olap Cube Without Data

May 31, 2005

Is any way to export and import an olap cube whithout his data?

Tks!
Paul

View 1 Replies View Related

Analysis :: Create Analysis Services Project In Visual Studio 2012 Data Tools?

Feb 18, 2013

It is possible to create Analysis Services project (*.dwproj) in Visual Studio 2012 Data Tools?

View 5 Replies View Related

SQL Server 2008 :: OLAP CUBE And Data Sources

Aug 3, 2015

I've

1. Data Warehouse
2. OLAP CUBE in Analysis Services

My question is - If my Data Warehouse is changed (Having Append Data) - My OLAP Cube will have the Append Data?

It's possible, my OLAP Cube always having Append Data if my Data Warehouse is changed? If yes, how to do it without re-deploy and re-process my Analysis Services Project....

View 2 Replies View Related

Reg:SSIS Package To Transfer Data Between SQL Table And Olap Cube

Apr 2, 2008



Hi All,
can anybody help me in creating the SSIS package to transfer the data from SQL table in database engine to OLAP cube in Analysis services


Thanks in Advance.
Archana

View 1 Replies View Related

SSIS Package To Import Data From SQL Datasource To Datawarehouse OLAP Cube

Apr 8, 2008

Hi All,

I have created database and OLAP cube in Analysis services using SSAS.In SSAS I have used a datasource which is using SQL tables to populate OLAP cube.Now when I added some more data to my SQL tables and trying to deploy cube,the newly added is not getting populated in the cube.So i want run SSIS package which will import data from SQL tables to this OLAP cube.

Can you please help me how to write this SSIS package to import data from SQL tables to OLAP cube.(Very urgent issue)

Thanks in Advance,
Swapna

View 4 Replies View Related

OLTP Vs OLAP (Data Warehouse) As A DataSource In Analysis Services 2005

Jul 3, 2007

Hello,Can I import an OLTP (Reltional DB) as a Data Source into SQL ServerAnalysis Services 2005 and then use the Cube Wizard and the new DataSource View feature to create the OLAP model ?Or do I have to first design an OLAP Data Warehouse with a Star Schemaand then import this DW as a Data Source into my Analysis ServicesProject.With SQL Server 2000 , OLAP would be the way to go..but with SQLServer 2005 , it seems as though the wizard and data source viewfeatures do half the work for you.I have an OLTP DB and am not sure which route I should take ! Anysuggestions / input would be much appreciated.Thanks in Advance...RegardsRusszee

View 1 Replies View Related

Analysis :: Add Population Data In SSAS Cube

Aug 7, 2015

I want to implement population data in sales cube.

Fact table has customer code which is foreign key of Customer master dimension which in turn is linked to census data dimension. Census data dimension have city wise population data having foreign keys of zone and state.

We want to add population data in fact table.

View 3 Replies View Related

Data Load Analysis Tools

Apr 4, 2008



In the process of building a data warehouse is their an easy to test if the data received is right data.
Are there any tools free tools available

Or do i have to build these ssis packages
Please let me know

View 1 Replies View Related

Analysis :: Excel 2010 Not Refreshing Data From Cube?

Aug 21, 2015

So I use Excel 2010 connect to a cube I have built.  Then I change some values in the cube via my ETL and re-process the cube.  Then I verify that record is NOT there in the fact table - check!

However, when I refresh the worksheet where the pivot table is pulling data from the cube, but that old record wont go away!

Just realized my cube data source on the dev server, was in fact still configured with my local workstation name. Once I updated that, processed the cube all was well.

View 2 Replies View Related

Analysis :: How To Restrict Cube Users To See Only Last 2 Days Of Data

Nov 9, 2015

in cube we have one role defined. users in that cube should be allowed to see only last 2 days of data. I mean they should be able to browse only last 2 days of data based on current date. How to implement?

View 5 Replies View Related

Analysis :: SSAS Planning / Forecast Copy Data In Cube

Oct 2, 2015

Is there any way to copy my Data of 2015 to the Planning/Forecasting Value of 2016?

My question is based on that we use INFOR ION BI right now and there we can just add an Button in our reports wich physically copies the value from one year to the next year based on some other rules in the cube.

Now I need to make this example work with SSAS and Excel PivotTables but I cant figure out how.

I have absolutely no clue where and how to accomplish it. Do I use Calculations, do I use Actions, do i make it in the Dataview, Cube or directly in Excel?

View 4 Replies View Related

Analysis :: Creating Cube With AMO - Cube Has No Measure Groups?

May 19, 2015

I have problems creating a cube with AMO.

I can add the cube to the database object and fill it with dimensions and a measuregroup (see code below).

If I call cube.Update() it says something like "Error in meta data manager. Cube has no measuregroups." (getting the message in german language)

The error in Microsoft.AnalysisServices.OperationException.Results.Messages is -1055653629

I can't find any documentation about this (or any other) error code in Microsoft documentation.

Here's my Code:

Cube newCube = database.Cubes.Add("MyCube","MyCube");
newCube.Language = 1031;
newCube.Collation = "Latin1_General_CI_AS";
CubeDimension dim = newCube.Dimensions.Add("dim1","dim1","dim1");
CubeAttribute attrib = dim.Attributes.Find("dim1Attr1");

[code]....

View 2 Replies View Related

Analysis :: SSAS - Roles With Read Definition Access Are Not Able To See Data In Cube

Nov 25, 2015

I am facing a very weird issue in our SSAS database. We have several roles with 'Read definition' access. None of these roles are able to see data in the cubes. I have checked these roles over and over and there is no problem with the definition. Each of the roles have been given read access to Data Source, Cube and Dimensions.

The users are able to access the definition and structure of the cube i.e. they can see the measures & dimensions available but when they drag measures and dimension attributes in the browser (SSMS) OR execute an MDX - they get null values. The roles with 'Full Control (administrator)' access are able to see all the data without any issues.
 
I have tried the following:

1. Deleted all roles and re-created.
2. Created roles directly on SSAS DB.
3. Deployed all objects and processed the DB.
 
Each time only the admins are able to see the data.

View 7 Replies View Related

Analysis :: Cube Extracting Data From Physical Or Logical Star Schema?

Oct 22, 2015

We have an OLTP database and operational reporting is carried out on a replica server / database. We have plans to build a new data warehouse and an analysis services cube.

Question 1:Should a cube be designed to extract data from a physical star schema rather than a logical one (3NF relational (ODS?) using a data source view to derive the star)? I'm guessing for performance it's better to pull data from similar structures (physical facts and dimensions as required by analysis services) but is the difference significant?

Question 2:Depending on the answer to q1, is it bad practice to ETL data from a staging database (replica > staging) directly to a star schema (multiple data sources and cleansing / business rules required)? Or should it be processed from staging to an ods and only then to a star schema (physical or logical). I still don't know if an ODS is required but I guess the consideration for this decision is whether the business would require  daily operational (or ad hoc) reporting on the consolidated data sources (without needing historical DW functionality).

View 2 Replies View Related

Analysis :: Cube Measure Does Not Show Any Data When Drag And Drop In Browser

Aug 26, 2015

I created SSAS cube in VS 2008 and have been able to deploy it successfully to the server. While creating the cube I was able to browse dimensions and all underlying tables just to make sure it has data. After deploying successfully when I drag and drop any measure group to browser it does not display anything.

The only thing I did different from straightforward cube building process was that when I created those measure groups the partitions that were created by default were giving me some unknown errors so I had to delete them in order for cube to process successfully.

Did that made any difference because I thought partitions are for improving query performance and has nothing to do with cube processing errors.

View 9 Replies View Related

Licensing Of Data Mining Tools With SQL 2005 Analysis Services

Oct 25, 2006

A rather dumb question but I've installed an evaluation copy of SQL 2005 on my machine and a colleague would like the Analysis Services Data Mining capability on his machine (without the eval SQL Server).

Is there a license associated with such an installation when we buy 2005 or does it fall under client components which can be installed on any number of users machines?

Matt

View 1 Replies View Related

Analysis :: Cube Needs To Be Deployed From VS After SSIS Analysis Services Processing Task Completes?

May 13, 2014

I have a cube that we are processing nightly via an Analysis Service Processing Task in SSIS.  In order to increase the performance of the processing time, we elected to use a lot of rigid dimension attributes, and do a full process of everything in the SSIS task.  The issue that I am having is that after that task completes, I need to go into Visual Studio to deploy the cube becuase we are unable to browse or use the cube.  This issue seemed to start once we changed the SSIS Analysis Service Processing Task to do a full process on the dimensions, rather than an incremental.

I would expect that once development is done, and it is processed and deployed, that is it.  My thinking is that the SSIS task should just update the already deployed cube,

View 2 Replies View Related

How To Publish OLAP Cube

May 6, 2003

Hi,

I am new to SQLServer 2000.I have built a cube.I was wondering how to acess this from a client(say via excel or a browser).

Thanks,
copericus

View 4 Replies View Related

Export Cube OLAP

May 11, 2005

What I can do for obtain the information of a cube OLAP in Analysis Services and obtain in Excel, they are in different machine, The Excel do not have Analysis Service.

View 1 Replies View Related

Please, HELP!!! OLAP Cube Locked

Aug 26, 2004

When I try to process a cube on olap I receive this error message:

Could not lock object (user xxx on computer yyy has locked 'xxxxxxxx'

I already tried to find an option to unlock the cube and I do a restart of SQL service.
I'm worryed about my job !!!! :eek:
Please, HELP ME !!!! :(

View 2 Replies View Related

SSIS And OLAP Cube DTS

Mar 3, 2006

I am having a problem creating an Integration Services package which executes an MDX query and place the results in a local DB.

I am using an OLE connection to connect to cube. However when I run the package I get the following error ....

[OLE DB Source [175]] Error: Cannot create an OLE DB accessor. Verify that the column metadata is valid.
AND
[DTS.Pipeline] Error: component "OLE DB Source" (175) failed the pre-execute phase and returned error code 0xC0202025.

Thanks in advance for the help

View 2 Replies View Related

Using DMX As An Action In An OLAP Cube

May 23, 2007

Is it possible to use a DMX query as an action in an OLAP cube? So when someone clicked on a product when browsing the cube, it called my DMX query with a product parameter, and the query would return a listing of associated products? I'm not asking how to do the query, I already have that, but just wondering if it's possible to even do that. Thanks!

View 3 Replies View Related

ETL Package To OLAP Cube

Jul 20, 2006

Hi guys! I'm new here!

Is there a way to create an ETL package that gets data from a flat file, puts it in a fact table and then it creates a cube based on the data without user intervention? So the package will generate automatically a cube that can be used in SSAS?

I am sorry if I did not make any sense. Thanks!

View 7 Replies View Related

OLAP Cube Format

Feb 1, 2006

Can the reporing services read the cube definitions (backcolor,forecolor etc.)?
the MDX contanins the " CELL PROPERTIES VALUE, FORMATTED_VALUE,
CELL_ORDINAL, FORE_COLOR, BACK_COLOR, FONT_FLAGS " clause.

Thank you

View 6 Replies View Related

Datasource Using OLAP Cube

May 22, 2008



I am trying to create datasource to OLAP cube to generate model. Here is what I am doing

First I configured IIS to make HTTP connction analysis services,

From management studion I am able to connection analysis services using following connction



http://ig-xp129/Dashboard/Dashboard/msmdpump.dll

I am able to see my cubes and also AdventureWork cubes.

After above step,

From Reporting Service Home page

select NEW DATASOURCE
given name and selected CONECTION TYPE = Microsoft SQL SERVER Analysis Services


on conection string

Data Source=http://ig-xp129/Dashboard/Dashboard/msmdpump.dll;Initial Catalog=AdventureWork

After apply this change, when i press generate model buttion getting error msg.

even I tried like this
1. http://ig-xp129/Dashboard/Dashboard;Initial Catalog=AdventureWork failed to connect


ANY HEP PL
Thanks
















An error occurred while generating model. (rsModelGenerationError) Get Online Help




Unsupported data format :

View 4 Replies View Related

Datamining A Olap Cube

Aug 24, 2007

I'm new to datamining and have gather some knowledge by following the tutorial that comes with sql server 2005.
I have following created a association mining model and tested it by using various DMX queries. I works quite satisfactory.

But I would like to use this mining model on a cube. Ie a calculated measure that would show top 1 recommendation for my customer portfolio.
My knowlede reaches to the extent that you need to feed data by using the OpenQuery or OpenRowset queries.
I would like to "stick" my model to the cube on some way and the extract values in the same manner as filtering criterias in stead of manually generating DMX queries.

I have googled a bit and searched MSDN without luck. Maybe I'm looking at this all wrong.

Is this possible?

Regards Bergur

View 1 Replies View Related

Visualization Of Changing Data

Nov 13, 2007

Hello,
I'm working on a distributed application which requires data from a central database to be shown to various users. In particular users should be able to open "views" on the database, specifying the data they are interested in, and being shown the result.

This can be easily accomplished modeling the view specifications as SQL select queries, sending those queries to the server, and visualizing the result. This approach is very flexible, supported, fast and definitely the way we would like to implement it.

The problem is that we have an additional requirement.
In general the data the users might be interested in is not static, and when that data changes, those changes should be propagated to the client views.

There are lots of solutions and technologies aimed to solve very similar problems, but no one seems to support this scenario well.

1. You can re-run the queries every x time (polling)... but this is hardly an option when you have hundreds of client-views that require data to be updated in real-time (so "x time" should be, say, 1 second).

2. You can use query notification... but the documentation explicitily says it doesn't scale well and shouldn't be used with a large number of clients (which is exactly what is needed in this case).

3. You can use replication services... but this technology doesn't really seem to be created to support this scenario.

4. You can use notification services... but even this technology seems to be focused on different scenarios. I haven't looked at it extensively anyway.

5. You can use DML triggers to track data changes... but you still don't have the publish-subscribe mechanism to register client views and the mechanism to know which client views are affected by the changes.

6. You can implement a business logic tier that relates modification requests to client views... and basically do everything from scratch without using existing services.

What are your opinions?


Thank you,

Lorenzo Castelli

View 2 Replies View Related

OLAP Tools?

Oct 4, 2004

So I am starting to look at an OLAP problem having been an OLTP DB wonk for several years.

All very nice. Am bending my head aorund cubes and the dimensions trciks and learing to choose them more carefully.

Have wokred through the various chapters of various SQL books (OLTP books with a couple of chapters of OLAP I admit) and am starting to feel if not comfortable with it at leats not compleetly terrified.

Now the Analysis manager in SQL is all well and good but I'm not about to hand it to the accounting monkeys that work here.

Does anyone have any suggetsions of some good OLAP specific books and any Cube viewing tools/suites/utilities that I can give to the computer-illiterate bean counters I work for?

many thanks

Steve

View 2 Replies View Related

Automatic Refresh Of OLAP Cube

Dec 7, 2000

Does anyone know an easy way to automatically (ie each morning) refresh a cube without having to log in to the OLAP manager and use the interface? Ideally I want to be able to schedule a job to run each morning so that the Sales & Marketing people arrive to fresh data in their Excel 2000 Pivot tables that are connected to the cube.

Any suggestions gratefully received.
Regards,
John Thorpe

View 1 Replies View Related

Processing Ms Olap-cube Via Jobs

May 29, 1999

Hello!

I'm looking for a possiblity to schedule the processing of a ms olap services cube in a SQL Server Agent job. Has anyone expericiences with that? Are there any alternatives for scheduling the processing?

Thanx, Wiebke

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved