Hi All,
I am new to analysis service.
I am looking for ssas writeback option
Can any body please help me out how to write back to fact table in ssas?
Thanks & Regards,
Mahesh
Technology Tips and News
Hi All,
I am new to analysis service.
I am looking for ssas writeback option
Can any body please help me out how to write back to fact table in ssas?
Thanks & Regards,
Mahesh
Hi
You can use UPDATE CUBE.
You can do weighted allocations and even distributions.
You just need to enable writeback on the partition tab of your cube in VS. (right-click your partition and select 'write-back settings')
Here's something to get you started : http://msdn.microsoft.com/en-us/library/ms145568.aspx
Hi Jason,
Thanks for the reply.
I have already set the writeback option.
How should I use write back option so that modified data will be inserted/updated into relational database?
SSAS creates a table that contains all your writeback rows.
By default it's called Writeback_<MeasureGroup name>
You can writeback using the UPDATE CUBE statement or a client like Excel 2010 (Options-->Whatif Analysis).
This writeback table relates directly to the cube partition. Test it using Excel and see how it writes the values to the table.
If you want to write back to another relational table or set of tables you'll need to use another process from there - SSIS/SQL (triggers) from writeback table to whatever table you need to sort out.
Regards,
Jason
Hi All,
Thanks for the suggestions.
I am confused here how I will achieve this. Can anybody guide me?
My requirement is
I am using JQuery grid. I want to bind cube data with JQuery grid.
When I will do any changes in the grid cell(add/modify) it will be write back to cube and finally on save button click I want it to save in the relational database.
Please guide me.
Thanks in advance.
Mahesh M.
Hi
You're on the wrong forum if you're looking for JQuery assistance.
Regards,
Jason
Hi Jason,
I am using JQuery grid to only show the data.
I am binding Cube data to JQuery grid.