-
创建一个名为“最新金属材料牌号、性能、用途及中外牌号对照速用速查实用手册”的临时表空间组
资源介绍
(1) 通过uniform建立
05:26:04 SQL> create temporary tablespace temp01
05:26:25 2 tempfile '/disk3/oradata/orcl/temp01.dbf' size 5m
05:26:46 3 uniform size 256k;
Tablespace created.
注意不能指定AUTOALLOCATE选项。
(2) 建立大文件临时表空间
05:26:59 SQL> create bigfile temporary tablespace temp02
05:29:16 2 tempfile '/disk3/oradata/orcl/temp02.dbf' size 5m;
Tablespace created.
该表空间只包含一个临时文件,空间管理采用本地管理。
(3)建立临时表空间组
05:29:50 SQL> create temporary tablespace temp03
05:31:59 2 tempfile '/disk3/oradata/orcl/temp03.dbf' size 5m
05:32:23 3 tablespace group temgrp01;
Tablespace created.
隐含建立临时表空间组 temgrp01;
05:32:41 SQL> alter tablespace temp tablespace group group2;
Tablespace altered.
隐含建立group2 ,并将temp添加到group 2中
改变临时表空间组成员:
05:38:42 SQL> alter tablespace temp01 tablespace group temgrp01;
Tablespace altered.
05:38:50 SQL> alter tablespace temp02 tablespace group temgrp01;
Tablespace altered.
从临时表空间组里删除成员:
05:38:56 SQL> alter tablespace temp tablespace group '';
Tablespace altered.
23:01:14 SQL> col PROPERTY_VALUE for a30
23:01:28 SQL> col DESCRIPTION fro a40
SP2-0158: unknown COLUMN option "fro"
23:01:37 SQL> col DESCRIPTION for a40
23:01:42 SQL> r
1* select * from database_properties
PROPERTY_NAME PROPERTY_VALUE DESCRIPTION
------------------------------ ------------------------------ ----------------------------------------
DICT.BASE 2 dictionary base tables version #
DEFAULT_TEMP_TABLESPACE TMPGRP02 Name of default temporary tablespace
DEFAULT_PERMANENT_TABLESPACE SYSTEM Name of default permanent tablespace
DBTIMEZONE -08:00 DB time zone
DEFAULT_TBS_TYPE SMALLFILE Default tablespace type
NLS_LANGUAGE AMERICAN Language
NLS_TERRITORY AMERICA Territory
NLS_CURRENCY $ Local currency
NLS_ISO_CURRENCY AMERICA ISO currency
NLS_NUMERIC_CHARACTERS ., Numeric characters
NLS_CHARACTERSET ZHS16GBK Character set
NLS_CALENDAR GREGORIAN Calendar system
分区 oracle ocp dba 的第 70 页
- 上一篇: oracle 052题库解析
- 下一篇: 1-Oracle安装.md