Solution to oracle tablespace not enough

execute the following commands by using system account login oracle:

  >sqlplus system/[email protected]:1522/xe;

SQL*Plus: Release 12.1.0.1.0 Production on Tue Sep 22 20:16:29 2015

Copyright (c) 1982, 2013, Oracle.  All rights reserved.

Connected to:
Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production

SQL>

1.the below command to display thecurrent size of tablespace

  >select t.tablespace_name,round(SUM(bytes/(1024*1024)),0) ts_size from dba_tablespaces t,dba_data_files d where t.tablespace_name=d.tablespace_name  group by t.tablespace_name;

TABLESPACE_NAME           TS_SIZE
------------------------------ ----------
SYSAUX                      680
UNDOTBS1                  510
USERS                      100
SYSTEM                      600

SQL>

2.use the below command to display the path of tablespace that will be used in command to modify the size of tablespace.

  >select file_name,tablespace_name from dba_data_files;

FILE_NAME                                                                                       TABLESPACE_NAME
---------------------------------------------------------------------------     -----------------------------------
/u01/app/oracle/oradata/XE/system.dbf                                           SYSTEM

3.the last command is to expand the size of current tablespace.
  > alter database datafile ‘/u01/app/oracle/oradata/XE/system.dbf‘ resize 5600M;

Database altered.

SQL>

时间: 2024-10-05 17:33:08

Solution to oracle tablespace not enough的相关文章

Oracle tablespace 表空间创建和管理

1.表空间的概述 1. 表空间是数据库的逻辑组成部分. 2. 从物理上讲,数据库数据存放在数据文件中: 3. 从逻辑上讲,数据库是存放在表空间中,表空间由一个或者多个数据文件组成. 2.oracle的逻辑组成 1.oracle 的逻辑结构包含 表 空间 段 区 块 2.数据库是由表空间构成,表空间又是有段构成,段是由区构成,区是由 oracle的块构成,这样做是为了提高数据库的效率 3.作用 A.控制数据库占用的磁盘空间 B dba 可以将不同数据类型部署到不同的位置,这样 有利于i/0的性能,

Oracle TableSpace

一.创建表空间 --创建用户表空间 CREATE TABLESPACE mytablespace NOLOGGING --nologging 则为不生重做日志,在TABLESPACE前 DATAFILE 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\mytp01.DBF' SIZE 1G AUTOEXTEND ON NEXT 1G MAXSIZE 30G EXTENT MANAGEMENT LOCAL AUTOALLOCATE; 说明: 第一行CREATE TAB

oracle中imp命令具体解释

Oracle的导入有用程序(Import utility)同意从数据库提取数据,而且将数据写入操作系统文件.imp使用的基本格式:imp[username[/password[@service]]],下面例举imp经常使用用法. 1. 获取帮助 imp help=y 2. 导入一个完整数据库 imp system/manager file=bible_db log=dible_db full=y ignore=y 3. 导入一个或一组指定用户所属的所有表.索引和其它对象 imp system/m

oracle在imp订单具体解释

Oracle导入实用程序(Import utility)同意从数据库中提取数据,和写入数据到一个操作系统文件项目.imp所用的基本格式:imp[username[/password[@service]]],下面的例子imp经常使用法. 1. 获取帮助 imp help=y 2. 导入一个完整数据库 imp system/manager file=bible_db log=dible_db full=y ignore=y 3. 导入一个或一组指定用户所属的所有表.索引和其它对象 imp syste

php 操作 oracle lob 数据

http://www.oracle.com/technetwork/articles/fuecks-lobs-095315.html Working with LOBs in Oracle and PHPby Harry Fuecks Hitting the 4,000-byte limit? Enter LOBs... Downloads for this article:Oracle Database 10gZend Core for OracleApache HTTP Server 1.3

oracle 导入imp 命令

最常用的      imp  name/[email protected]:1521/orcl[库] file="c:\123.dmp" full=y ignore=y. 例:imp abc/[email protected]:1521/orcl file = "c:\123.dmp" full=y ignore = y. oracle中imp命令详解 Oracle的导入实用程序(Import utility)允许从数据库提取数据,并且将数据写入操作系统文件.imp

Migrating Oracle on UNIX to SQL Server on Windows

Appendices Published: April 27, 2005 On This Page Appendix A: SQL Server for Oracle Professionals Appendix B: Getting the Best Out of SQL Server 2000 and Windows Appendix C: Baselining Appendix D: Installing Common Drivers and Applications Installing

oracle中imp命令详解 .

oracle中imp命令详解 Oracle的导入实用程序(Import utility)允许从数据库提取数据,并且将数据写入操作系统文件.imp使用的基本格式:imp[username[/password[@service]]],以下例举imp常用用法. 1. 获取帮助 imp help=y 2. 导入一个完整数据库 imp system/manager file=bible_db log=dible_db full=y ignore=y 3. 导入一个或一组指定用户所属的全部表.索引和其他对象

Working with LOBs in Oracle and PHP

原文链接:http://www.oracle.com/technetwork/articles/fuecks-lobs-095315.html Working with LOBs in Oracle and PHP by Harry Fuecks Hitting the 4,000-byte limit? Enter LOBs... Downloads for this article:  Oracle Database 10g Zend Core for Oracle  Apache HTTP