I'm new to OLAP and I ran into the following situation:
I have a none star schema database(PostgreSQL) that contains hundreds of tables, and now I need to convert it to star schema database in order to perform OLAP. Here comes some questions:
Do I have to create a new database in the form of star schema and insert existing data into new database? If so, is there any tools that can help me to finish that task automatically?
The data that Mondrian needs should be at a star schema database, but my web project is based on none star schema DB. That is to say, every time I got a new record, I have to update both DB simultaneously, right?
I'll appreciate your help, thanks!