Oracle中用户和模式之间的区别?

2023-09-20数据库问题
0

本文介绍了Oracle中用户和模式之间的区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

Oracle 中的用户和模式有什么区别?

What is the difference between a user and a schema in Oracle?

推荐答案

来自 问汤姆

您应该将架构视为用户帐户和其中所有对象的集合作为所有意图和目的的模式.

You should consider a schema to be the user account and collection of all objects therein as a schema for all intents and purposes.

SCOTT 是一种架构,其中包括具有各种授权的 EMP、DEPT 和 BONUS 表,以及其他东西.

SCOTT is a schema that includes the EMP, DEPT and BONUS tables with various grants, and other stuff.

SYS 是一个包含大量表、视图、授权等的架构.

SYS is a schema that includes tons of tables, views, grants, etc etc etc.

SYSTEM 是一个架构.....

SYSTEM is a schema.....

从技术上讲——模式是数据库使用的一组元数据(数据字典),通常使用 DDL 生成.模式定义了数据库的属性,例如表、列和属性.数据库模式是对数据的描述数据库.

Technically -- A schema is the set of metadata (data dictionary) used by the database, typically generated using DDL. A schema defines attributes of the database, such as tables, columns, and properties. A database schema is a description of the data in a database.

这篇关于Oracle中用户和模式之间的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

SQL 子句“GROUP BY 1"是什么意思?意思是?
What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)...
2024-04-16 数据库问题
62

为什么 Mysql 的 Group By 和 Oracle 的 Group by 行为不同
Why Mysql#39;s Group By and Oracle#39;s Group by behaviours are different(为什么 Mysql 的 Group By 和 Oracle 的 Group by 行为不同)...
2024-04-16 数据库问题
13

如何在MySQL中为每个组选择第一行?
How to select the first row for each group in MySQL?(如何在MySQL中为每个组选择第一行?)...
2024-04-16 数据库问题
13

MySQL - 获取最低值
MySQL - Fetching lowest value(MySQL - 获取最低值)...
2024-04-16 数据库问题
8

在 cmakelist.txt 中添加和链接 mysql 库
Add and link mysql libraries in a cmakelist.txt(在 cmakelist.txt 中添加和链接 mysql 库)...
2024-04-16 数据库问题
41

考勤数据库的良好数据库设计(架构)是什么?
What is a good database design (schema) for a attendance database?(考勤数据库的良好数据库设计(架构)是什么?)...
2024-04-16 数据库问题
7