Oracle8i SQL Reference Release 3 (8.1.7) Part Number A85397-01 |
|
SQL Statements:
CREATE SYNONYM to DROP ROLLBACK SEGMENT, 5 of 31
Use the CREATE
TEMPORARY
TABLESPACE
statement to create a temporary tablespace, which is an allocation of space in the database that can contain schema objects for the duration of a session.
To create a tablespace to contain persistent schema objects, use the CREATE
TABLESPACE
statement.
You must have the CREATE
TABLESPACE
system privilege.
tablespace
Specify the name of the temporary tablespace.
TEMPFILE
filespec
Specify the tempfiles that make up the tablespace.
autoextend_clause
The autoextend_clause
lets you enable or disable the automatic extension of the tempfile.
EXTENT
MANAGEMENT
LOCAL
The EXTENT
MANAGEMENT
clause lets you specify that the tablespace is locally managed, meaning that some part of the tablespace is set aside for a bitmap.
This statement creates a temporary tablespace in which each extent is 16M.
CREATE TEMPORARY TABLESPACE tbs_1 TEMPFILE 'file_1.f' EXTENT MANAGEMENT LOCAL UNIFORM SIZE 16M;
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|