ํ…Œ์ด๋ธ” ์ŠคํŽ˜์ด์Šค๋ฅผ ํŠœ๋‹ํ•˜๋ ค๊ณ  ์•„๋ž˜ ๋ช…๋ น์–ด๋ฅผ ์ž…๋ ฅํ•˜์˜€๋‹ค.

 

ALTER TABLESPACE ํ…Œ์ด๋ธ”์ŠคํŽ˜์ด์Šค๋ช… AUTOEXTEND ON NEXT 1024K;

 

๊ทธ๋žฌ๋”๋‹ˆ ์•„๋ž˜์ฒ˜๋Ÿผ ์˜ค๋ฅ˜๊ฐ€ ๋–จ์–ด์กŒ๋‹ค.

 

ORA-32773: operation not supported for smallfile tablespace ํ…Œ์ด๋ธ”์ŠคํŽ˜์ด์Šค๋ช…  

 

๊ตฌ๊ธ€๋งํ•ด์„œ ์–ป์–ด์˜จ ํ•ด๊ฒฐ์ฑ… ํ•˜๋‚˜. ์•„๋ž˜ ๊ฒฝ์šฐ๋ฅผ ์‚ดํŽด๋ณด๊ธฐ ๋ฐ”๋ž€๋‹ค.

 

 

SQL> alter tablespace users resize 300m;
alter tablespace users resize 300m
*
ERROR at line 1:
ORA-32773: operation not supported for smallfile tablespace USERS

SQL> select file_id, tablespace_name from dba_data_files;

   FILE_ID TABLESPACE_NAME
---------- ------------------------------
         1 SYSTEM
         2 UNDOTBS1
         3 SYSAUX
         4 USERS

SQL> alter database datafile 4 resize 300m;

Database altered.

//--------Description from online documents------------------------------------------------------------------
ORA-32773: operation not supported for smallfile tablespace string
Cause:
An attempt was made to perform. an operation which is supported only for bigfile tablespaces, e.g. resize tablespace.
Action: Use the appropriate clause of the ALTER DATABASE DATAFILE command instead.


SQL> alter tablespace users autoextend off;
alter tablespace users autoextend off
*
ERROR at line 1:
ORA-32773: operation not supported for smallfile tablespace USERS


SQL> alter database datafile 4 autoextend off;

Database altered.

 

์ถœ์ฒ˜ : http://blog.itpub.net/9765498/viewspace-259958/