Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I dynamically increment OLAP cube in SQL server ?

Status
Not open for further replies.

niraj2000

Programmer
Aug 1, 2001
7
0
0
US
I have created a cube in using Analysis Manager in Sql Server 2000. As the database grows, I want the cube to update itself. This can be done manually. But I want to automate for reporting capabilities.

Is anyone aware of such a facility in Analysis Manager of Sql Server 2002 for auto updates ?
 
You can use DTS to:
1. extract from cube some key that tells you the last loaded record (or anyway store this info at loading time)
2. load more recent records into cube with an incremental update setting the WHERE key > lastinsertedkeyfoundat1
Stick to your guns
 
I would (and currently am) write a vb app using DSO to do the incremental update. It is my experience that the DTS cube function are slow and have a large amount of overhead.

Paul
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top