简体   繁体   中英

How to change the AUTOEXTENSIBLE column to YES in table DBA_TEMP_FILES for TEMP TABLESPACE in Amazon ORACLE AWS RDS?

I have two Oracle DBs, one locally and another in AWS RDS. In Local, I can give the option AUTOEXTEND ON for tablespaces but RDS does not have this option as far as I know.

Also, when I check the DBA_TEMP_FILES in both the DBs, in the local one the autoextensible is YES where as in RDS it is NO.

I want to know if there is anyway we can change this autoextensible to YES in RDS?

I have gone through online links and read through the Amazon AWS documentation but could not find anything related to autoextensible column or AUTOEXTEND replacement.

select file_name, AUTOEXTENSIBLE from DBA_TEMP_FILES;

FILE_NAME

AUT

/u02/oradata/ORCL/datafile/o1_mf_temp_ho781f7f_.tmp YES alter database tempfile '/u02/oradata/ORCL/datafile/o1_mf_temp_ho781f7f_.tmp' autoextend off; SQL> select file_name, AUTOEXTENSIBLE from DBA_TEMP_FILES;

FILE_NAME

AUT

/u02/oradata/ORCL/datafile/o1_mf_temp_ho781f7f_.tmp NO

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM