views:

67

answers:

1

Are there any differences between a user in SQL Server and one in Oracle? If so, what are they?

Thanks in advance.

+3  A: 

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.

Quassnoi
Additionally, what is a `schema` in Oracle is a `database` in SQL Server.
René Nyffenegger
@René: `SQL Server` has a concept of `schema` too. In the three-part name `'mydb.dbo.mytable'`, `mydb` is a database (physical grouping), while `dbo` is a schema (logical grouping).
Quassnoi