oracle表空间操作 create tablespace命令
select *
from dba_tables
where owner='peter' create tablespace data01
datafile 'D:\oracle\ora92\oradata\db\DATA01.dbf' SIZE 200M
uniform SIZE 128k;
#指定区尺寸为128k,如不指定,区尺寸默认为64kcreate temporary tablespace temp_data
TEMPFILE 'D:\oracle\ora92\oradata\db\TEMP_DATA.dbf' SIZE 100M
create user peter IDENTIFIED BY peter
default tablespace data01 temporary tablespace temp_data;grant connect,resource,dba to peter;
一、建立表空间
create tablespace data01
datafile '/oracle/oradata/db/DATA01.dbf' SIZE 500M
uniform SIZE 128k; #指定区尺寸为128k,如不指定,区尺寸默认为64k
二、建立undo表空间
create undo tablespace undoTBS02
datafile '/oracle/oradata/db/undoTBS02.dbf' SIZE 50M
#注意:在OPEN状态下某些时刻只能用一个undo表空间,如果要用新建的表空间,必须切换到该表空间:
alter system set undo_tablespace=undoTBS02;
三、建立临时表空间
create temporary tablespace temp_data
TEMPFILE '/oracle/oradata/db/TEMP_DATA.dbf' SIZE 50M
四、改变表空间状态
1.使表空间脱机
alter tablespace game offline;
如果是意外删除了数据文件,则必须带有recover选项
alter tablespace game offline for recover;
2.使表空间联机
alter tablespace game online;
3.使数据文件脱机
alter database datafile 3 offline;
4.使数据文件联机
alter database datafile 3 online;
5.使表空间只读
alter tablespace game read only;
6.使表空间可读写
alter tablespace game read write;
五、删除表空间
DROP tablespace data01 including contents and datafiles;
六、扩展表空间
首先查看表空间的名字和所属文件
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_space
from dba_data_files
order by tablespace_name;
1.增加数据文件
alter tablespace game
ADD datafile '/oracle/oradata/db/GAME02.dbf' SIZE 1000M;
2.手动增加数据文件尺寸
alter database datafile '/oracle/oradata/db/GAME.dbf'
RESIZE 4000M;
3.设定数据文件自动扩展
alter database datafile '/oracle/oradata/db/GAME.dbf
autoextend ON NEXT 100M
MAXSIZE 10000M;
设定后查看表空间信息
SELECT A.tablespace_NAME,A.BYTES TOTAL,B.BYTES USED, C.BYTES FREE,
(B.BYTES*100)/A.BYTES "% USED",(C.BYTES*100)/A.BYTES "% FREE"
FROM SYS.SM$TS_AVAIL A,SYS.SM$TS_USED B,SYS.SM$TS_FREE C
WHERE A.tablespace_NAME=B.tablespace_NAME and A.tablespace_NAME=C.tablespace_NAME;
-----------------------------------------------------------------------------------------------------------------------------------
create tablespace命令
create [undo] tablespace tablespace_name
[datafile datefile_spec1 [,datefile_spec2] ......
[ {MININUM EXTENT integer [k|m] | BLOCKSIZE integer [k] |logging clause|forCE LOGGING |default {data_segment_compression } storage_clause
|[online|offline]|[PERMANENT|temporary] |extent_manager_clause|segment_manager_clause}]
1、undo
说明系统将创建一个回滚表空间。
在9i中数据库管理员可以不必管理回滚段,只有建立了undo表空间,系统就会自动管理回滚段的分配,回收的工作。当然,也可以创建一般的表空间,在上面创建回滚段.不过对于用户来说,系统管理比自己管理要好很多.如果需要自己管理,请参见回滚段管理的命令详解.
当没有为系统指定回滚表空间时,系统将使用system系统回滚段来进行事务管理。
2、tablespace
指出表空间的名称。
3、datafile datefile_spec1
指出表空间包含什么空间文件。datefile_spec1 是形如 ['filename'] [SIZE integer [ K | M ]] [REUSE] [autoextend_clause]
[autoextend_clause]切稳纾autoextend { OFF | ON [ NEXT integer [ K | M ] ] [maxsize_clause] }
其中filename是数据文件的全路径名,size是文件的大小,REUSE表示文件是否被重用.
autoextend表明是否自动扩展. OFF | ON 表示自动扩展是否被关闭.NEXT 表示数据文件满了以后,扩展的大小.
maxsize_clause表示数据文件的最大大小.形如MAXSIZE { UNLIMITED | integer [ K | M ] }.UNLIMITED 表示无限的表空间.integer是数据文件的最大大小.
4、MININUM EXTENT integer [k|m]
指出在表空间中范围的最小值。这个参数可以减小空间碎片,保证在表空间的范围是这个数值的整数倍。
5、BLOCKSIZE integer [k]
这个参数可以设定一个不标准的块的大小。如果要设置这个参数,必须设置db_block_size,至少一个db_nk_block_size,并且声明的integer的值必须等于db_nk_block_size.
注意:在临时表空间不能设置这个参数。
6、logging clause
这个子句声明这个表空间上所有的用户对象的日志属性(缺省是logging),包括表,索引,分区,物化视图,物化视图上的索引,分区。
7、forCE LOGGING
使用这个子句指出表空间进入强制日志模式。此时,系统将记录表空间上对象的所有改变,除了临时段的改变。这个参数高于对象的nologging选项。
注意:设置这个参数数据库不行open并且出于读写模式。而且,在临时表空间和回滚表空间中不能使用这个选项。
8、default storage_clause
声明缺省的存储子句。
9、online|offline
改变表空间的状态。online使表空间创建后立即有效.这是缺省值.offline使表空间创建后无效.这个值,可以从dba_tablespace中得到。
10、PERMANENT|temporary
指出表空间的属性,是永久表空间还是临时表空间。永久表空间存放的是永久对象,临时表空间存放的是session生命期中存在的临时对象。这个参数生成的临时表空间创建后一直都是字典管理,不能使用extent management local选项。如果要创建本地管理表空间,必须使用create temporary tablespace
注意,声明了这个参数后,不能声明block size
11、extent_management_clause
这是最重要的子句,说明了表空间如何管理范围。一旦你声明了这个子句,只能通过移植的方式改变这些参数。
如果希望表空间本地管理的话,声明local选项。本地管理表空间是通过位图管理的。autoallocate说明表空间自动分配范围,用户不能指定范围的大小。只有9.0以上的版本具有这个功能。uniform说明表空间的范围的固定大小,缺省是1m。
不能将本地管理的数据库的system表空间设置成字典管理。
oracle公司推荐使用本地管理表空间。
如果没有设置extent_management_clause,oracle会给他设置一个默认值。如果初始化参数compatible小于9.0.0,那么系统创建字典管理表空间。如果大于9.0.0,那么按照如下设置:
如果没有指定default storage_clause,oracle创建一个自动分配的本地管理表空间。
否则,如果指定了mininum extent,那么oracle判断mininum extent 、initial、next是否相等,以及pctincrease是否=0.如果满足以上的条件,oracle创建一个本地管理表空间,extent size是initial.如果不满足以上条件,那么oracle将创建一个自动分配的本地管理表空间。
如果没有指定mininum extent。initial、那么oracle判断next是否相等,以及pctincrease是否=0。如果满足oracle创建一个本地管理表空间并指定uniform。否则oracle将创建一个自动分配的本地管理表空间。
注意:本地管理表空间只能存储永久对象。如果你声明了local,将不能声明default storage_clause,mininum extent、temporary.
12、segment_management_clause
建立表空间
create tablespace data01
datafile '/oracle/oradata/db/DATA01.dbf' SIZE 500M
uniform SIZE 128k; #指定区尺寸为128k,如不指定,区尺寸默认为64k
删除表空间
DROP tablespace data01 including contents and datafileS;
(一)查看表空间的信息
1)从控制文件中得到的所有表空间的名称
SQL> select * from V$tablespace;
TS# NAME INC BIG FLA ENC
---------- ------------------------------ --- --- --- ---
0 SYSTEM YES NO YES
1 UNDOTBS1 YES NO YES
2 SYSAUX YES NO YES
4 USERS YES NO YES
3 TEMP NO NO YES
6 EXAMPLE YES NO YES
已选择6行。
2)查看所有的(或者用户可以访问的)表空间
SQL> select * from dba_tablespaces;
SQL> select * from user_tablespaces;
3)查看所有的(或者用户可以访问的)表空间内的空闲区间的信息
SQL> select * from dba_free_space;
SQL> select * from user_free_space;
SQL> desc dba_free_space;
名称 是否为空? 类型
----------------------------------------- -------- -----------------
TABLESPACE_NAME VARCHAR2(30)
FILE_ID NUMBER
BLOCK_ID NUMBER
BYTES NUMBER
BLOCKS NUMBER
RELATIVE_FNO NUMBER
dba_free_space 各字段的定义如下:(以下是oracle官方网的定义)
DBA_FREE_SPACE
DBA_FREE_SPACE describes the free extents in all tablespaces in the database.
Related View
USER_FREE_SPACE describes the free extents in the tablespaces accessible to the current user.
Column
Datatype
NULL
Description
TABLESPACE_NAME
VARCHAR2(30)
Name of the tablespace containing the extent
FILE_ID
NUMBER
File identifier number of the file containing the extent
BLOCK_ID
NUMBER
Starting block number of the extent
BYTES
NUMBER
Size of the extent (in bytes)
BLOCKS
NUMBER
Size of the extent (in Oracle blocks)
RELATIVE_FNO
NUMBER
Relative file number of the file containing the extent
4)查看所有数据文件(临时文件)的信息
SQL> select * from V$datafile;
SQL> select * from V$tempfile;
5)查看所有属于表空间的数据(或临时)文件
SQL> select * from dba_data_files;
SQL> select * from dba_temp_files;
6)查看临时文件的使用/剩余空间
SQL> select * from V$temp_space_header;
TABLESPACE_NAME FILE_ID BYTES_USED BLOCKS_USED BYTES_FREE
------------------------------ ---------- ---------- ----------- ----------
BLOCKS_FREE RELATIVE_FNO
----------- ------------
TEMP 1 19922944 2432 1048576
128 1
7)查看用户的默认和临时表空间
SQL> select * from dba_users;
8)查看所有用户的表空间配额
SQL> select * from dba_ts_quotas;
TABLESPACE_NAME USERNAME BYTES MAX_BYTES BLOCKS MAX_BLOCKS DRO
------------------------------ ------------------------------ ---------- ---------- ---------- ---------- ---
SYSAUX DMSYS 262144 209715200 32 25600 NO
SYSAUX SYSMAN 52101120 -1 6360 -1 NO
SYSAUX OLAPSYS 16318464 -1 1992 -1 NO
dba_ts_quotas 各个字段的解释如下:
DBA_TS_QUOTAS
DBA_TS_QUOTAS describes tablespace quotas for all users.
Related View
USER_TS_QUOTAS describes tablespace quotas for the current user. This view does not display the USERNAME column.
Column
Datatype
NULL
Description
TABLESPACE_NAME
VARCHAR2(30)
NOT NULL
Tablespace name
USERNAME
VARCHAR2(30)
NOT NULL
User with resource rights on the tablespace
BYTES
NUMBER
Number of bytes charged to the user
MAX_BYTES
NUMBER
User's quota in bytes, or -1 if no limit
BLOCKS
NUMBER
NOT NULL
Number of Oracle blocks charged to the user
MAX_BLOCKS
NUMBER
User's quota in Oracle blocks, or -1 if no limit
(二)创建表空间
SQL> create tablespace test datafile 'C:\oradata\testdb\test1.dat' size 1M;
表空间已创建。(permernant tablespace)
SQL> create temporary tablespace test_temp tempfile 'C:\oradata\testdb\testtemp.dat' size 2M;
表空间已创建。(temporary tablespace)
SQL> create undo tablespace testundo datafile 'C:\oradata\testdb\testundo.dat' size 2M;
表空间已创建。(undo tablespace)
(三)修改表空间:
修改表空间的语法如下:
alter tablespace 表空间名字
{ [coalesce]
[temporary|permanent]
[read only|read write]
[online]
[offline [normal|temporary|immediate|for recover]]
[minimum extent 数目[k|M]]
[default 存储参数语句]
[datafile 路径]
}
例子:
SQL> alter tablespace test read write;
SQL> alter tablespace test online;
(四)删除表空间
SQL> drop tablespace TEST_TEMP;
表空间已删除。
select *
from dba_tables
where owner='peter' create tablespace data01
datafile 'D:\oracle\ora92\oradata\db\DATA01.dbf' SIZE 200M
uniform SIZE 128k;
#指定区尺寸为128k,如不指定,区尺寸默认为64kcreate temporary tablespace temp_data
TEMPFILE 'D:\oracle\ora92\oradata\db\TEMP_DATA.dbf' SIZE 100M
create user peter IDENTIFIED BY peter
default tablespace data01 temporary tablespace temp_data;grant connect,resource,dba to peter;
一、建立表空间
create tablespace data01
datafile '/oracle/oradata/db/DATA01.dbf' SIZE 500M
uniform SIZE 128k; #指定区尺寸为128k,如不指定,区尺寸默认为64k
二、建立undo表空间
create undo tablespace undoTBS02
datafile '/oracle/oradata/db/undoTBS02.dbf' SIZE 50M
#注意:在OPEN状态下某些时刻只能用一个undo表空间,如果要用新建的表空间,必须切换到该表空间:
alter system set undo_tablespace=undoTBS02;
三、建立临时表空间
create temporary tablespace temp_data
TEMPFILE '/oracle/oradata/db/TEMP_DATA.dbf' SIZE 50M
四、改变表空间状态
1.使表空间脱机
alter tablespace game offline;
如果是意外删除了数据文件,则必须带有recover选项
alter tablespace game offline for recover;
2.使表空间联机
alter tablespace game online;
3.使数据文件脱机
alter database datafile 3 offline;
4.使数据文件联机
alter database datafile 3 online;
5.使表空间只读
alter tablespace game read only;
6.使表空间可读写
alter tablespace game read write;
五、删除表空间
DROP tablespace data01 including contents and datafiles;
六、扩展表空间
首先查看表空间的名字和所属文件
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_space
from dba_data_files
order by tablespace_name;
1.增加数据文件
alter tablespace game
ADD datafile '/oracle/oradata/db/GAME02.dbf' SIZE 1000M;
2.手动增加数据文件尺寸
alter database datafile '/oracle/oradata/db/GAME.dbf'
RESIZE 4000M;
3.设定数据文件自动扩展
alter database datafile '/oracle/oradata/db/GAME.dbf
autoextend ON NEXT 100M
MAXSIZE 10000M;
设定后查看表空间信息
SELECT A.tablespace_NAME,A.BYTES TOTAL,B.BYTES USED, C.BYTES FREE,
(B.BYTES*100)/A.BYTES "% USED",(C.BYTES*100)/A.BYTES "% FREE"
FROM SYS.SM$TS_AVAIL A,SYS.SM$TS_USED B,SYS.SM$TS_FREE C
WHERE A.tablespace_NAME=B.tablespace_NAME and A.tablespace_NAME=C.tablespace_NAME;
-----------------------------------------------------------------------------------------------------------------------------------
create tablespace命令
create [undo] tablespace tablespace_name
[datafile datefile_spec1 [,datefile_spec2] ......
[ {MININUM EXTENT integer [k|m] | BLOCKSIZE integer [k] |logging clause|forCE LOGGING |default {data_segment_compression } storage_clause
|[online|offline]|[PERMANENT|temporary] |extent_manager_clause|segment_manager_clause}]
1、undo
说明系统将创建一个回滚表空间。
在9i中数据库管理员可以不必管理回滚段,只有建立了undo表空间,系统就会自动管理回滚段的分配,回收的工作。当然,也可以创建一般的表空间,在上面创建回滚段.不过对于用户来说,系统管理比自己管理要好很多.如果需要自己管理,请参见回滚段管理的命令详解.
当没有为系统指定回滚表空间时,系统将使用system系统回滚段来进行事务管理。
2、tablespace
指出表空间的名称。
3、datafile datefile_spec1
指出表空间包含什么空间文件。datefile_spec1 是形如 ['filename'] [SIZE integer [ K | M ]] [REUSE] [autoextend_clause]
[autoextend_clause]切稳纾autoextend { OFF | ON [ NEXT integer [ K | M ] ] [maxsize_clause] }
其中filename是数据文件的全路径名,size是文件的大小,REUSE表示文件是否被重用.
autoextend表明是否自动扩展. OFF | ON 表示自动扩展是否被关闭.NEXT 表示数据文件满了以后,扩展的大小.
maxsize_clause表示数据文件的最大大小.形如MAXSIZE { UNLIMITED | integer [ K | M ] }.UNLIMITED 表示无限的表空间.integer是数据文件的最大大小.
4、MININUM EXTENT integer [k|m]
指出在表空间中范围的最小值。这个参数可以减小空间碎片,保证在表空间的范围是这个数值的整数倍。
5、BLOCKSIZE integer [k]
这个参数可以设定一个不标准的块的大小。如果要设置这个参数,必须设置db_block_size,至少一个db_nk_block_size,并且声明的integer的值必须等于db_nk_block_size.
注意:在临时表空间不能设置这个参数。
6、logging clause
这个子句声明这个表空间上所有的用户对象的日志属性(缺省是logging),包括表,索引,分区,物化视图,物化视图上的索引,分区。
7、forCE LOGGING
使用这个子句指出表空间进入强制日志模式。此时,系统将记录表空间上对象的所有改变,除了临时段的改变。这个参数高于对象的nologging选项。
注意:设置这个参数数据库不行open并且出于读写模式。而且,在临时表空间和回滚表空间中不能使用这个选项。
8、default storage_clause
声明缺省的存储子句。
9、online|offline
改变表空间的状态。online使表空间创建后立即有效.这是缺省值.offline使表空间创建后无效.这个值,可以从dba_tablespace中得到。
10、PERMANENT|temporary
指出表空间的属性,是永久表空间还是临时表空间。永久表空间存放的是永久对象,临时表空间存放的是session生命期中存在的临时对象。这个参数生成的临时表空间创建后一直都是字典管理,不能使用extent management local选项。如果要创建本地管理表空间,必须使用create temporary tablespace
注意,声明了这个参数后,不能声明block size
11、extent_management_clause
这是最重要的子句,说明了表空间如何管理范围。一旦你声明了这个子句,只能通过移植的方式改变这些参数。
如果希望表空间本地管理的话,声明local选项。本地管理表空间是通过位图管理的。autoallocate说明表空间自动分配范围,用户不能指定范围的大小。只有9.0以上的版本具有这个功能。uniform说明表空间的范围的固定大小,缺省是1m。
不能将本地管理的数据库的system表空间设置成字典管理。
oracle公司推荐使用本地管理表空间。
如果没有设置extent_management_clause,oracle会给他设置一个默认值。如果初始化参数compatible小于9.0.0,那么系统创建字典管理表空间。如果大于9.0.0,那么按照如下设置:
如果没有指定default storage_clause,oracle创建一个自动分配的本地管理表空间。
否则,如果指定了mininum extent,那么oracle判断mininum extent 、initial、next是否相等,以及pctincrease是否=0.如果满足以上的条件,oracle创建一个本地管理表空间,extent size是initial.如果不满足以上条件,那么oracle将创建一个自动分配的本地管理表空间。
如果没有指定mininum extent。initial、那么oracle判断next是否相等,以及pctincrease是否=0。如果满足oracle创建一个本地管理表空间并指定uniform。否则oracle将创建一个自动分配的本地管理表空间。
注意:本地管理表空间只能存储永久对象。如果你声明了local,将不能声明default storage_clause,mininum extent、temporary.
12、segment_management_clause
建立表空间
create tablespace data01
datafile '/oracle/oradata/db/DATA01.dbf' SIZE 500M
uniform SIZE 128k; #指定区尺寸为128k,如不指定,区尺寸默认为64k
删除表空间
DROP tablespace data01 including contents and datafileS;
(一)查看表空间的信息
1)从控制文件中得到的所有表空间的名称
SQL> select * from V$tablespace;
TS# NAME INC BIG FLA ENC
---------- ------------------------------ --- --- --- ---
0 SYSTEM YES NO YES
1 UNDOTBS1 YES NO YES
2 SYSAUX YES NO YES
4 USERS YES NO YES
3 TEMP NO NO YES
6 EXAMPLE YES NO YES
已选择6行。
2)查看所有的(或者用户可以访问的)表空间
SQL> select * from dba_tablespaces;
SQL> select * from user_tablespaces;
3)查看所有的(或者用户可以访问的)表空间内的空闲区间的信息
SQL> select * from dba_free_space;
SQL> select * from user_free_space;
SQL> desc dba_free_space;
名称 是否为空? 类型
----------------------------------------- -------- -----------------
TABLESPACE_NAME VARCHAR2(30)
FILE_ID NUMBER
BLOCK_ID NUMBER
BYTES NUMBER
BLOCKS NUMBER
RELATIVE_FNO NUMBER
dba_free_space 各字段的定义如下:(以下是oracle官方网的定义)
DBA_FREE_SPACE
DBA_FREE_SPACE describes the free extents in all tablespaces in the database.
Related View
USER_FREE_SPACE describes the free extents in the tablespaces accessible to the current user.
Column
Datatype
NULL
Description
TABLESPACE_NAME
VARCHAR2(30)
Name of the tablespace containing the extent
FILE_ID
NUMBER
File identifier number of the file containing the extent
BLOCK_ID
NUMBER
Starting block number of the extent
BYTES
NUMBER
Size of the extent (in bytes)
BLOCKS
NUMBER
Size of the extent (in Oracle blocks)
RELATIVE_FNO
NUMBER
Relative file number of the file containing the extent
4)查看所有数据文件(临时文件)的信息
SQL> select * from V$datafile;
SQL> select * from V$tempfile;
5)查看所有属于表空间的数据(或临时)文件
SQL> select * from dba_data_files;
SQL> select * from dba_temp_files;
6)查看临时文件的使用/剩余空间
SQL> select * from V$temp_space_header;
TABLESPACE_NAME FILE_ID BYTES_USED BLOCKS_USED BYTES_FREE
------------------------------ ---------- ---------- ----------- ----------
BLOCKS_FREE RELATIVE_FNO
----------- ------------
TEMP 1 19922944 2432 1048576
128 1
7)查看用户的默认和临时表空间
SQL> select * from dba_users;
8)查看所有用户的表空间配额
SQL> select * from dba_ts_quotas;
TABLESPACE_NAME USERNAME BYTES MAX_BYTES BLOCKS MAX_BLOCKS DRO
------------------------------ ------------------------------ ---------- ---------- ---------- ---------- ---
SYSAUX DMSYS 262144 209715200 32 25600 NO
SYSAUX SYSMAN 52101120 -1 6360 -1 NO
SYSAUX OLAPSYS 16318464 -1 1992 -1 NO
dba_ts_quotas 各个字段的解释如下:
DBA_TS_QUOTAS
DBA_TS_QUOTAS describes tablespace quotas for all users.
Related View
USER_TS_QUOTAS describes tablespace quotas for the current user. This view does not display the USERNAME column.
Column
Datatype
NULL
Description
TABLESPACE_NAME
VARCHAR2(30)
NOT NULL
Tablespace name
USERNAME
VARCHAR2(30)
NOT NULL
User with resource rights on the tablespace
BYTES
NUMBER
Number of bytes charged to the user
MAX_BYTES
NUMBER
User's quota in bytes, or -1 if no limit
BLOCKS
NUMBER
NOT NULL
Number of Oracle blocks charged to the user
MAX_BLOCKS
NUMBER
User's quota in Oracle blocks, or -1 if no limit
(二)创建表空间
SQL> create tablespace test datafile 'C:\oradata\testdb\test1.dat' size 1M;
表空间已创建。(permernant tablespace)
SQL> create temporary tablespace test_temp tempfile 'C:\oradata\testdb\testtemp.dat' size 2M;
表空间已创建。(temporary tablespace)
SQL> create undo tablespace testundo datafile 'C:\oradata\testdb\testundo.dat' size 2M;
表空间已创建。(undo tablespace)
(三)修改表空间:
修改表空间的语法如下:
alter tablespace 表空间名字
{ [coalesce]
[temporary|permanent]
[read only|read write]
[online]
[offline [normal|temporary|immediate|for recover]]
[minimum extent 数目[k|M]]
[default 存储参数语句]
[datafile 路径]
}
例子:
SQL> alter tablespace test read write;
SQL> alter tablespace test online;
(四)删除表空间
SQL> drop tablespace TEST_TEMP;
表空间已删除。