Making All Tablespaces Autoextend

During an install of Financials 8.9, I had trouble with some of my tablespaces not autoextending. When I went to load the PPLTLS84CUR project, Application Designer failed saying the PTTBL tablespace was full.

Here is some SQL that I used:

This showed me all of the data files that were not auto-extending:

1
2
3
SELECT * FROM DBA_DATA_FILES
 
WHERE AUTOEXTENSIBLE = 'NO';

This generated the SQL required to make all of the tablespaces auto-extending

1
2
3
SELECT 'ALTER DATABASE DATAFILE ''' || file_name || ''' AUTOEXTEND ON NEXT 5M MAXSIZE UNLIMITED;' FROM DBA_DATA_FILES
 
WHERE AUTOEXTENSIBLE = 'NO';

Leave a Comment

Your email address will not be published. Required fields are marked *

Comments
Name
Email
Website

This site uses Akismet to reduce spam. Learn how your comment data is processed.