本博客文章如无特别说明,均为原创!转载请注明出处:Big data enthusiast(http://www.lubinsu.com/)
本文链接地址:【Oracle】 Oracle中用户(User)和模式(Schema)的概念(http://www.lubinsu.com/index.php/archives/448)
数据库理论中数据库用户和数据库模式并没有必然的联系,详细的数据库模式解释可以在这里找到:
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 are authorized 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, and schema ownership is transferable.
也就是说数据库模式可以创建修改,并且可以给不同的用户访问也可以赋予不同的用户。
而Oracle文档《Concepts》中的解释是这样的:
A schema is a collection of logical structures of data, or schema objects. A schema is owned by a database user and has the same name as that user. Each user owns a single
schema.
虽然Oracle中模式也是数据对象的集合,但是在这里一个用户对应了一个模式,一个模式只能被一个数据库用户所拥有。
本文详细阐述了Oracle数据库中用户(User)与模式(Schema)的概念及其区别。在Oracle中,一个用户对应一个模式,该模式包含了由用户拥有的所有数据库对象。
1024

被折叠的 条评论
为什么被折叠?



