English 中文(简体)
B. 书目网上存储程序和/或操作
原标题:Stored Procedure AND/OR ORM for a BI web app

我正在第5号站点建立一个商业情报网,显示从一个高度正常的数据中心检索的信息(我sql的60+表格)。

我们利用MADx作为我们的CMF组织该守则。 到目前为止,该法典主要是图拉,每一页基本上都由Snippet(如MODx术语表)和密码直接组成的板块组成,显示表格和图表中的胎儿。

我们正在为我们的主要组成部分制造物体,在那里提出q问,并使用DO。 当问询计划成为该领域的真正目标时,很容易做到。

关于更多的书目(按子类分类,加入5+表格)或面向搜索的查询,我发现,如何取代有活力的造价。 例如,我们在网上有搜索功能,有许多标准。 视选择哪些标准而定,《加拿大刑法》增加或删除表格,以便加入、分类和修改条款。

Do you think an ORM or Stored Proc could improve performance/quality of code in that context ? Is our model (60+ tables highly normalized) too complicated to be directly accessed from the web app and a kind of datamart (basically denormalized view of the data) would bring more benefits than ORM ?

这个问题涉及:stored-procedures-or-mappers

问题回答

The bottleneck would surely be the level of normalization - if the option is available to you, adopting a more star-schema style DWH would greatly increase performance as it pre-prepares the data for consumption by your BI app.





相关问题
Entity Framework with File-Based Database

I am in the process of developing a desktop application that needs a database. The application is currently targeted to SQL Express 2005 and works wonderfully. However, I m not crazy about having ...

Assistance with CakePHP model relationships

How would I represent the following in a CakePHP model? Product ======= product_id .... Cart ==== cart_id .... Carts_Products ============== cart_id product_id quantity

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How are Models (in MVC) and DAOs supposed to interact?

How are models and DAOs supposed to interact? I m in the process of putting together a simple login module and I m unsure where to put the "business logic." If I put the logic with the data in the ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签