dbTalk Databases Forums  

situations where a cube needs to be deployed/processed

microsoft.public.sqlserver.olap microsoft.public.sqlserver.olap


Discuss situations where a cube needs to be deployed/processed in the microsoft.public.sqlserver.olap forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
M
 
Posts: n/a

Default situations where a cube needs to be deployed/processed - 06-22-2006 , 07:51 AM






Under what situations should a cube be rebuilt? Is it just when the
underlying schema has changed? Not when a new data load occurs in the
database, correct?

thx,
M

Reply With Quote
  #2  
Old   
Wayne Snyder
 
Posts: n/a

Default RE: situations where a cube needs to be deployed/processed - 06-23-2006 , 06:48 AM






Rebuild a cube when the structure changes.
Do a data reload when you must re-do the aggregations, or change any
existing fact
Do an increment build during normal daily/weekly processing to add new data
to the cube
--
Wayne Snyder MCDBA, SQL Server MVP
Mariner, Charlotte, NC

I support the Professional Association for SQL Server ( PASS) and it''s
community of SQL Professionals.


"M" wrote:

Quote:
Under what situations should a cube be rebuilt? Is it just when the
underlying schema has changed? Not when a new data load occurs in the
database, correct?

thx,
M

Reply With Quote
  #3  
Old   
Marilyn
 
Posts: n/a

Default RE: situations where a cube needs to be deployed/processed - 06-23-2006 , 07:24 AM



I'm using SQL Server Integration Services to perform daily data loads. Is
there a way to automate the incremental build each time a data load occurs?

thanks,
-Marilyn

"Wayne Snyder" wrote:

Quote:
Rebuild a cube when the structure changes.
Do a data reload when you must re-do the aggregations, or change any
existing fact
Do an increment build during normal daily/weekly processing to add new data
to the cube
--
Wayne Snyder MCDBA, SQL Server MVP
Mariner, Charlotte, NC

I support the Professional Association for SQL Server ( PASS) and it''s
community of SQL Professionals.


"M" wrote:

Under what situations should a cube be rebuilt? Is it just when the
underlying schema has changed? Not when a new data load occurs in the
database, correct?

thx,
M

Reply With Quote
  #4  
Old   
Jeje
 
Posts: n/a

Default Re: situations where a cube needs to be deployed/processed - 06-23-2006 , 09:08 AM



yes, SSIS provides some tasks to execute XML/A commands or process a
partition.
and also, there is an option in a dataflow to directly load a partition from
an SQL Source.

for example, you have a query which load your fact table (sales for
example), then you can load these new data into the fact table AND push
directly these rows into your AS partition.

"Marilyn" <Marilyn (AT) discussions (DOT) microsoft.com> wrote

Quote:
I'm using SQL Server Integration Services to perform daily data loads. Is
there a way to automate the incremental build each time a data load
occurs?

thanks,
-Marilyn

"Wayne Snyder" wrote:

Rebuild a cube when the structure changes.
Do a data reload when you must re-do the aggregations, or change any
existing fact
Do an increment build during normal daily/weekly processing to add new
data
to the cube
--
Wayne Snyder MCDBA, SQL Server MVP
Mariner, Charlotte, NC

I support the Professional Association for SQL Server ( PASS) and it''s
community of SQL Professionals.


"M" wrote:

Under what situations should a cube be rebuilt? Is it just when the
underlying schema has changed? Not when a new data load occurs in the
database, correct?

thx,
M



Reply With Quote
  #5  
Old   
Marilyn
 
Posts: n/a

Default Re: situations where a cube needs to be deployed/processed - 06-26-2006 , 03:28 PM



Because there is quite a bit of data manipulation that I need to perform on
the data before it becomes a cube I perform it within stored procedures. I
have an IS package that copies data that I need and then invokes the stored
proc to process it creating the fact and dimension tables. Is there a way via
source code to automate the deployment and processing of the dimensions and
cubes without being forced to use the mapping process that IS has?

thx,
-Marilyn

"Jeje" wrote:

Quote:
yes, SSIS provides some tasks to execute XML/A commands or process a
partition.
and also, there is an option in a dataflow to directly load a partition from
an SQL Source.

for example, you have a query which load your fact table (sales for
example), then you can load these new data into the fact table AND push
directly these rows into your AS partition.

"Marilyn" <Marilyn (AT) discussions (DOT) microsoft.com> wrote in message
news:38A15125-845B-4E43-8A59-9E0F4EC40C99 (AT) microsoft (DOT) com...
I'm using SQL Server Integration Services to perform daily data loads. Is
there a way to automate the incremental build each time a data load
occurs?

thanks,
-Marilyn

"Wayne Snyder" wrote:

Rebuild a cube when the structure changes.
Do a data reload when you must re-do the aggregations, or change any
existing fact
Do an increment build during normal daily/weekly processing to add new
data
to the cube
--
Wayne Snyder MCDBA, SQL Server MVP
Mariner, Charlotte, NC

I support the Professional Association for SQL Server ( PASS) and it''s
community of SQL Professionals.


"M" wrote:

Under what situations should a cube be rebuilt? Is it just when the
underlying schema has changed? Not when a new data load occurs in the
database, correct?

thx,
M




Reply With Quote
  #6  
Old   
EdwinDH
 
Posts: n/a

Default Re: situations where a cube needs to be deployed/processed - 01-02-2008 , 10:55 AM



Hi everyone,

I have a question about a connection with Analysis Services:

I have a big XML file with many nodes and many information, to understand
better, I have a littel example called employee.xml:

<AddressBook>
<Person familyName="Gates" firstName="Bob">
<Address street="Pine Rd." number="1239" state="CA"/>
<JobInfo jobDescription="Manager"/>
<Description>Family man</Description>
</Person>
<Person familyName="Brown" firstName="Robert">
<Address street="118 St." number="344" state="NY"/>
<JobInfo jobDescription="Group Leader"/>
<Description>Hacker</Description>
</Person>
<Person familyName="DePaiva" firstName="Kassie">
<Address street="Pine Rd." number="1234" state="CA"/>
<JobInfo jobDescription="Actor"/>
<Description>Actor</Description>
</Person>
</AddressBook>

I want to create a project in Visual Studio for Analysis Services to make
cubes using exclusively the XML file "employee.xml", I tryed with many
providers without success.

I don't want to use temporal tables in SQL Server to store all the XML file,
I need to use directly this information.

Please if you have a way to do it, please help me.

Atte,
Edwin

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.