Do tempfiles count against the db_files initialization parameter?
Inherited responsibility for an Oracle 10GR2 database that is within 25 files of the db_files parameter value.
select count(*) from dba_data_files;
275;
show parameter db_files;
300
select count(*) from dba_temp_files;
9
Do the 9 temp files from the dba_temp_files table count against the threshhold set by the db_files parameter?
0