March 15, 2016 at 10:51 am
Hi friends,
We are in the development phase of generating new reports(using 3rd party) tool from the application. Currently, the application connects to the Oracle database where there are relational schemas(original) and star schema(fact and dimension tables). Star schema tables are populated from the other relational schemas(original)in the database. The 3rd party reporting tool pulls data from the Oracle star schema to generate reports. It's more like the 3rd party tool requires a star schema to be built in the database to generate reports.
Similarly, we are looking to create star schema in our SQL server database as well. Currently we have all our tables under DBO. I'm researching to see if we can create star schema(fact and dimension tables) under same DBO user or should it be under different user account. Also, are the star schema optimization features applied at the database level or at the server level? Please give your thoughts.. Any suggestions would be really helpful.
Looking forward to your replies . Thank you
March 15, 2016 at 11:28 am
Please note that we are not looking to create a data warehouse. We just need to create tables in star schema so the 3rd party tool can access these tables for reporting purpose. So we are wondering if the fact and dimension tables can be created under same DBO account on the production database? If we enable star schema optimization features in future will it affect the other tables in the database?
Please give your thoughts. Thanks so much
March 15, 2016 at 11:31 am
Please note that we are not looking to create a data warehouse. We just need to create tables in star schema so the 3rd party tool can access these tables for reporting purpose. So we are wondering if the fact and dimension tables can be created under same DBO account on the production database? If we enable star schema optimization features in future will it affect the other tables in the database? Or is it recommended to create a seperate database for this purpose?
Please give your thoughts. Thanks so much
March 15, 2016 at 11:40 am
Yes, the tables can be created under the same dbo.
March 15, 2016 at 11:58 am
Thanks. If we create fact and dimension tables under same dbo schema, can we still implement the star join optimization features like bitmap filtering etc on these tables?
Thanks again
March 15, 2016 at 11:03 pm
Instead of creating a raft of new tables to hold identical data for a reporting tool, can you cheat and just create views that look like tables or, perhaps, use synonyms?
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply