sql
7 SQL performance technics
Submitted by admin on Tue, 10/04/2011 - 20:14 1. Don't use UPDATE instead of CASE
This issue is very common, and though it's not hard to spot, many developers often overlook it because using UPDATE has a natural flow that seems logical.
- admin's blog
- Login or register to post comments
- Read more
SQL Query Performance
Submitted by GeorgeS on Sun, 02/08/2009 - 11:18Database performance relies on several layers ranging from operation system, hardware, network, devices, database server, database design, to client side SQL query design in an application. The bottleneck could lay on any layer. However , once the system environments have been established and a database has been properly designed, the performance of the database mainly depends on properly created indexes and SQL query design. Accordiing to Sybase , 80% of Sybase database performance problems can be solved by properly created index and carefully design of SQL queries.
- GeorgeS's blog
- Login or register to post comments
- Read more