SQL Server database schemas
2 answers
The schema appeared on the original Sql server. They didn't have schemas, which meant that every single object in the database had to be owned by someone. If the lesson from accounting left the company, then you had to manually reassign all of its things to someone else, etc. Now schemas have their own objects and users belong to schemas, which makes all DB addons very happy people :).
Basically, you can keep users and remove your privileges by removing them from schemas and deleting the user. Adding privileges to a user is now as easy as adding a user to the schema.
+1
source to share