Skip to content

Files

Latest commit

7b0e080 · Jun 10, 2020

History

History
10 lines (8 loc) · 280 Bytes

how-to-add-a-datafile-to-a-tablespace.md

File metadata and controls

10 lines (8 loc) · 280 Bytes

How to add a datafile to a tablespace

The following example enables automatic extension for a datafile added to the users tablespace:

ALTER TABLESPACE users
    ADD DATAFILE '/home/mijin/test_data/users02.dbf' SIZE 1000M
      AUTOEXTEND ON
      MAXSIZE UNLIMITED;