Hello everyone, How do I group a set of tables or label them together?
In our project,each user has two separate tables allocated for them. I need to group all users tables separately.
How do I accomplish this?
Thanks.
Hello everyone, How do I group a set of tables or label them together?
In our project,each user has two separate tables allocated for them. I need to group all users tables separately.
How do I accomplish this?
Thanks.
You may have to create another table to track what tables are allocated to whom. You can save Object Id of the tables with the User's ID.
Perhaps you could use SQL Server Schemas to create logical separation of database objects (tables,views,stored procedures,functions,triggers etc.).
See the Microsoft Books Online Reference: User-Schema Separation
Using this method, you could then group related tables into the same schema.