Oracle数据库Schema的简介
百度文库中 Schema 的解释: 数据库中的Schema,为 数据库对象 的集合,一个用户一般对应一个schema。 官方定义如下: A schema is a collection of database objects (used by a user.). schema objects are the logical structures that directly refer to the database’s data. A user is a name defined in the database that can connect to and access objects. schemas and users help database administrators manage database security. 从定义中我们可以看出schema为 数据库对象 的集合,为了区分各个集合,我们需要给这个集合起个名字,这些名字就是我们在 企业管理器 的方案下看到的许多类似用户名的节点,这些类似用户名的节点其实就是一个schema,schema里面包含了各种对象如tables views sequences stored procedures synonyms indexes clusters and database links。 一个用户一般对应一个schema