This is a discussion on SQL Server Lab Design within the SQL Server forums, part of the Microsoft SQL Server category; --> Hi I need some design info. Say that I need to create an educational lab for databases with SQL ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi I need some design info. Say that I need to create an educational lab for databases with SQL Server. I need all the users to be able to execute common SQL commands ( create - alter – drop table , insert , update , delete ) and each user have his own space ( users not able to see others data and a limit say of 2 MB) . The most obvious solution is to create ( if I have 100 users ) , 100 login account ( SQL Server Accounts ) , then create 100 databases , and assign each user to one of this account with database role db_datawriter. Is this the best solution or there is another way to do it ? Thanks |