ORA-01658: 无法为表空间 TS_DATA 中的段创建初始范围

2023-10-26数据库问题
6

本文介绍了ORA-01658: 无法为表空间 TS_DATA 中的段创建初始范围的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

当我尝试在我的 User_DB 模式中创建一个表时,我收到一个错误为 ORA-01658:无法为表空间 TS_DATA 中的段创建初始范围.我运行以下查询以获取所有 TABLESPACE_NAME:

When i tried to create a table in my User_DB schema i am getting an error as ORA-01658: unable to create INITIAL extent for segment in tablespace TS_DATA. I run the following query to get all the TABLESPACE_NAME:

SELECT * FROM DBA_DATA_FILES;

但我真的不知道我使用的是哪个表空间以及如何扩展表空间来解决这个问题.

But i really dont know which tablespace i am using and how to extend the tablespace to solve this issue.

推荐答案

如错误消息所示,您正在使用 TS_DATA 表空间.您可以通过扩大现有数据文件之一来扩展它:

As the error message indicates, you're using the TS_DATA tablespace. You can extend it by either enlarging one of the existing data files:

ALTER DATABASE 
DATAFILE 'C:ORACLEXEAPPORACLEORADATAXETS_DATA.DBF' 
RESIZE 3000M;

或者通过向表空间添加第二个数据文件:

Or by adding a second datafile to the tablespace:

ALTER TABLESPACE ts_data 
ADD DATAFILE 'C:ORACLEXEAPPORACLEORADATAXETS_DATA2.DBF' 
SIZE 1000M;

或者只是允许数据文件自动扩展:

Or just allow the datafile to auto extend:

ALTER DATABASE 
DATAFILE 'C:ORACLEXEAPPORACLEORADATAXETS_DATA2.DBF'
AUTOEXTEND ON
MAXSIZE UNLIMITED; -- Or some reasonable cap

这篇关于ORA-01658: 无法为表空间 TS_DATA 中的段创建初始范围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

MySQL SELECT 按组最频繁
MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)...
2024-04-16 数据库问题
16

为什么 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

创建分层定义的数据集的扁平表/视图
Creating a flattened table/view of a hierarchically-defined set of data(创建分层定义的数据集的扁平表/视图)...
2024-04-16 数据库问题
4

MySQL:如何做到行级安全(如 Oracle 的 Virtual Private Database)?
MySQL: how to do row-level security (like Oracle#39;s Virtual Private Database)?(MySQL:如何做到行级安全(如 Oracle 的 Virtual Private Database)?)...
2024-04-16 数据库问题
6

强制执行具有完整性约束的“子集"关系的最佳方法是什么
What is the best way to enforce a #39;subset#39; relationship with integrity constraints(强制执行具有完整性约束的“子集关系的最佳方法是什么)...
2024-04-16 数据库问题
7