ifuleyou 发表于 2018-9-12 09:32:55

Oracle 11g下大文件表空间管理

  1.创建表空间
  $ sqlplus / as sysdba
  SQL*Plus: Release 11.2.0.4.0 Production on Mon Apr 28 18:50:03 2014
  Copyright (c) 1982, 2013, Oracle.All rights reserved.
  Connected to:
  Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
  With the Partitioning, OLAP, Data Mining and Real Application Testing options
  SQL> create bigfile tablespace BIGTBS
  2datafile '/u01/app/oracle/oradata/orcl1/bigtbs.dbf'
  3size 5M;
  Tablespace created.
  2.删除表空间
  SQL> drop tablespace bigtbs
  2including contents and datafiles;
  Tablespace dropped.
  SQL> drop tablespace inventory
  2including contents and datafiles;
  Tablespace dropped.

页: [1]
查看完整版本: Oracle 11g下大文件表空间管理