oracle 添加管理员账号Oracle中用户(User)和模式(Schema)的概念

数据库理论中数据库用户和数据库模式并没有必然的联系,详细的数据库模式解释可以在这里找到:

https://stackoverflow.com/questions/2674222/what-is-purpose-of-database-schema

A database schema is a way to logically group objects such as tables, views, stored procedures etc. Think of a schema as a container of objects.You can assign a user login permissions to a single schema so that the user can only access the objects they areauthorized to access.

Schemas can be created and altered in a database, and users can be granted access to a schema. A schema can be owned by any user, aoracle账号nd schema ownership istransferable.

也就是说数据库模式可以创建修改,并且可以给不同的用户访问也可以赋予不同的用户。

而Oracle文档《Concepts》中的解释是这样的:

A schemais a collection of logical structures of data, or schemaobjects. A schema is

ownedby a database user and has the same name as that user. Each user owns a single
schema.

虽然Oracle中模式也是数据对象的集合,但是在这里一个用户对应了一个模式,一个模式只能被一个数据库用户所拥有。

此条目发表在oracle metalink账号分类目录,贴了标签。将固定链接加入收藏夹。