10 Essential SQL Tips for Developers

some tips for dbms performance

there are some other things that can be done to improve dbms speed performance:

  1. using stored procedures to create tables instead of executing queries (this is especially good for frequently accessed reports)
  2. denormalized tables can sometimes give better performance, example monthly data can be arranged as fields within a year instead of in 12 + 1 separate records. it reduces the need for joins which consumes more resources.
  3. using views instead of executing queries where it is possible to further improve indexing and cache : SQL-99 compliant dbms usually handles views more efficiently than queries.
  4. other advanced stuff like cache size, memory, services can give better performance and stability