Difference between SQL Server and Oracle 'User'
In Oracle
, the users and the schema are one thing. You can create two different tables with the same name, belonging to different users.
In SQL Server
, schema and user are separate things. The users are only used to log in and define permissions.
See this question for more information: What is the difference between an Oracle and Microsoft schema?