Handling large databases

前端 未结 14 1830
误落风尘
误落风尘 2021-01-31 00:21

I have been working in a web project(asp.net) for around six months. The final product is about to go live. The project uses SQL Server as the database. We have done performance

14条回答
  •  萌比男神i
    2021-01-31 00:59

    You are right to do whatever works.
    ... as long as you realise that there may be a price to pay later. It sounds like you are thinking about this anyway.

    Things to check:

    Deadlocks

    • Are all processes accessing tables in the same order?

    Slowness

    • Are any queries doing tablescans?
      • Check for large joins (more than 4 tables)
      • Check your indeces

    See my other posts on general performance tips:

    • How do you optimize tables for specific queries?
    • Favourite performance tuning tricks

提交回复
热议问题