Database vs tablespace, what#39;s the difference?(数据库 vs 表空间,有什么区别?)
问题描述
在oracle中,数据库和表空间有什么区别?
In oracle what's the differences between a database and a table space?
推荐答案
一些术语:
Oracle 将数据库定义为您在 Oracle 系统上找到的文件集.这意味着您的 Oracle 系统中的所有数据都在这些数据库文件中,通常称为数据文件".数据库中还有其他文件,如参数文件和重做日志.
Oracle defines a database as the set of files that you find on your Oracle system. This means all data in your Oracle system is in these database files, commonly known as "data files". There are other files in the database such as parameter files and redo logs.
另一方面,实例由 Oracle 数据库使用的进程和内存区域组成.数据库和实例共同构成了一个数据库系统.(有关详细信息,请参阅 Oracle 概念指南)
On the other hand, an instance consists of the processes and memory areas that Oracle database uses. Together, a database and an instance make up a database system. (For more information, see the Oracle Concept guide)
从逻辑上讲,您需要在该数据库中定义不同的空间.这是通过表空间完成的(参见Oracle 概念指南).一个表空间通常由一个或多个数据文件组成.当您使用 CREATE TABLE 定义表时,您可以指定应在哪个表空间中创建该表.例如,这允许您在同一数据库系统上分离不同的应用程序.
Logically, you will want to define different spaces within that database. This is done via tablespaces (see Oracle Concept guide). A tablespace usually consists of one or more data files. When you define a table with CREATE TABLE, you can specify in which tablespace the table should be created. This allows you to seperate different applications on the same database system, for example.
Oracle 概念指南是解决此类问题的绝佳信息来源.查看这张图片,了解数据文件和表空间如何组成.
The Oracle Concepts guide is an excellent source of information for questions like these. See this picture on how data files and tablespaces are composed.
这篇关于数据库 vs 表空间,有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:数据库 vs 表空间,有什么区别?
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 更改自动增量起始编号? 2021-01-01