Database design: one huge table or separate tables?

后端 未结 13 1913
自闭症患者
自闭症患者 2020-12-09 03:16

Currently I am designing a database for use in our company. We are using SQL Server 2008. The database will hold data gathered from several customers. The goal of the databa

13条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-09 03:56

    Splitting tables for performance reasons is called sharding. Also, a database schema can be more or less normalized. A normalized schema has separate tables with relations between them, and data is not duplicated.

提交回复
热议问题