浏览 2045 次
锁定老帖子 主题:Schema与User的区别
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2011-04-15
Schema: "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 http://download.oracle.com/docs/cd/B10500_01/server.920/a96524/c11schem.htm#22628 Schema是一个逻辑结构数据的集合。一个Schema属于一个数据库User,并且与该User同名。每个User只拥有一个Schema。
所以当我们使用scott/tiger登录,执行数据库MyDB下的表TUser查询时: SELECT * FROM TUser 等价于 SELECT * FROM scott.TUser; 但是此处的scott是Schema而不是User,因为table是属于Schema的而不是User,User有的只是管理操纵Schema的权限。
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2011-05-16
basically they are two different things.
user is a role granted with some privileges, while schema is a object collection. |
|
返回顶楼 | |