- Building Microservices with .NET Core
- Gaurav Kumar Aroraa Lalit Kale Kanwar Manish
- 190字
- 2021-07-02 22:08:09
Big database
Our current application has a mammoth database containing a single schema with plenty of indexes. This structure poses a challenging job when it comes down to fine-tuning the performance:
- Single schema: All the entities in the database are clubbed under a single schema named dbo. This again hampers business due to the confusion with the single schema regarding various tables that belong to different modules; for example, Customer and Supplier tables belong to the same schema, that is, dbo.
- Numerous stored procedures: Currently, the database has a large number of stored procedures, which also contain a sizeable chunk of the business logic. Some of the calculations are being performed within the stored procedures. As a result, these stored procedures prove to be a baffling task to tend to when the time comes to optimize them or break them down into smaller units.
Whenever deployment is planned, the team will have to look closely at every database change. This again is a time-consuming exercise and many times would turn out to be even more complex than the build and deployment exercise itself.
推薦閱讀
- C語言程序設(shè)計(第2 版)
- Azure IoT Development Cookbook
- SQL Server 2012數(shù)據(jù)庫技術(shù)及應(yīng)用(微課版·第5版)
- Mastering Concurrency in Go
- OpenNI Cookbook
- Practical Game Design
- Node.js Design Patterns
- Swift 4 Protocol-Oriented Programming(Third Edition)
- SQL 經(jīng)典實例
- Learning Material Design
- 細(xì)說Python編程:從入門到科學(xué)計算
- STM8實戰(zhàn)
- Java高級程序設(shè)計
- Spring Boot從入門到實戰(zhàn)
- Google Adsense優(yōu)化實戰(zhàn)