开发者

Correct model for a database with a table for each user

开发者 https://www.devze.com 2022-12-23 03:31 出处:网络
Kinda stuck here... I have an application with lets say 5000 rows of data per user and was w开发者_如何学JAVAondering if it was right or wrong to do it this way:

Kinda stuck here... I have an application with lets say 5000 rows of data per user and was w开发者_如何学JAVAondering if it was right or wrong to do it this way:

On user account creation a new table is created (UserData_[UserID])

or should I just have 1 table for userdata and have everything in there with a column for userid?

The reason I am stuck at the moment is that it seems NHibernate isn't able to be mapped to dynamic table names without creating another ISessionFactory which has alot of overhead AFAIK.

Any help would be greatly appreciated.

Thanks.


Dear god NO, this is the wrong way. Don't create a table for each user.

To know what exactly to do, we need to know what's in the 5000 records.

If, for example, each user has 5000 Widgets, put the Username and UserID in one table and all the Widgets (each with a UserID) in another.


One table is enough. 5000 rows per user, 100.000 users would ONLY be 500.000.000 rows - and that is no ta lot by SQL standards ;)

In general, db schema should be as static as possible.


One entity type, one table.

So, use one table for all users with a userid column unless you have unusual requirements elsewhere in the application.


Don't use different tables for one entity type. Use one table for all users and then you won't even have the problem of dynamicly created tables. Try to imagine how hard it will be to query your data, and how unlogical it is to query 5000 tables to get all users.

0

精彩评论

暂无评论...
验证码 换一张
取 消