Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT TABLESPACE_NAME FROM DBA_TABLESPACES;
(Step 2) SQL> CREATE TEMPORARY TABLESPACE temp2
2 TEMPFILE '<file_name>' SIZE 10M REUSE
3 AUTOEXTEND ON NEXT 1M MAXSIZE unlimited
4 EXTENT MANAGEMENT LOCAL AUTOALLOCATE;
Tablespace created.
(Step 3) SQL> ALTER DATABASE DEFAULT TEMPORARY TABLESPACE temp2;
Database altered.
(Step 4) SQL> DROP TABLESPACE temp INCLUDING CONTENTS AND DATAFILES;
Tablespace dropped.
(Step 5) SQL> CREATE TEMPORARY TABLESPACE temp
2 TEMPFILE '<file_name of old TEMP ts file>' SIZE 10M REUSE
3 AUTOEXTEND ON NEXT 10M MAXSIZE unlimited
4 EXTENT MANAGEMENT LOCAL AUTOALLOCATE;
Tablespace created.
(Step 6) SQL> ALTER DATABASE DEFAULT TEMPORARY TABLESPACE temp;
Database altered.
(Step 7) SQL> DROP TABLESPACE temp2 INCLUDING CONTENTS AND DATAFILES;
Tablespace dropped.
(Step 8) (execute o/s commands to remove "the placeholder" data file.)
williey said:It increases and reduces according to its needs.