ALTER TABLESPACE tablespace_name
AUTOEXTEND ON
NEXT 100M
MAXSIZE UNLIMITED;
This clause is valid only for bigfile (single-file) tablespaces. Use this clause to enable or disable autoextension of the single datafile in the tablespace. To enable or disable autoextension of a newly added datafile or tempfile in smallfile tablespaces, use the autoextend_clause of the database_file_clauses in the ALTER DATABASE statement
MARK
本文介绍如何使用 SQL 语句自动扩展 Oracle 数据库中的表空间。特别是对于大文件表空间,可以通过设置 AUTOEXTEND ON 来实现单个数据文件的自动扩展,并且可以设定每次扩展的大小及最大限制。
2065

被折叠的 条评论
为什么被折叠?



