How to increase and extend the tablespace in Oracle

Source: Internet
Author: User
Tags extend file size

Four ways to increase the size of table space in Oracle

1: Add data files to the table space

ALTER tablespace App_Data ADD datafile

' D:\ORACLE\PRODUCT\10.2.0\ORADATA\EDWTEST\APP03. DBF ' SIZE 50M;

2: New data files, and allow data files to grow automatically

ALTER tablespace App_Data ADD datafile

' D:\ORACLE\PRODUCT\10.2.0\ORADATA\EDWTEST\APP04. DBF ' SIZE 50M

Autoextend on NEXT 5M MAXSIZE 100M;

3: Allow existing data files to grow automatically

ALTER DATABASE datafile ' D:\ORACLE\PRODUCT\10.2.0\ORADATA\EDWTEST\APP03. DBF '

Autoextend on NEXT 5M MAXSIZE 100M;

4: Manually change the size of existing data files

ALTER DATABASE datafile ' D:\ORACLE\PRODUCT\10.2.0\ORADATA\EDWTEST\APP02. DBF '

RESIZE 100M;

3 Ways to extend table space

1 Manually increase the data file size

ALTER DATABASE datafile '/HOME/ORACLE/TS01.DBF ' resize 100m;

2 Set the table space to automatically expand

ALTER DATABASE datafile '/HOME/ORACLE/TS01.DBF ' autoextend on next 5m MaxSize Unlimited;

3 Add data file to table space

Alter tablespace ts01 add datafile '/home/oracle/ts02.dbf ' size 2m;

See more highlights of this column: http://www.bianceng.cnhttp://www.bianceng.cn/database/Oracle/

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.