Search code examples
databaseoracle-databasebusiness-logic

Business Logic: Database or Application Layer


The age old question. Where should you put your business logic, in the database as stored procedures ( or packages ), or in the application/middle tier? And more importantly, Why?

Assume database independence is not a goal.


Solution

  • Put enough of the business logic in the database to ensure that the data is consistent and correct.

    But don't fear having to duplicate some of this logic at another level to enhance the user experience.