Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Maximum datafiles reached in 9.2.0.5

Status
Not open for further replies.

gatetec

MIS
Mar 22, 2007
420
US
In the init.ora on my UNIX box, I don't see the parameter "DB_FILES" for the limit on the total number of files associated with the db instance. database. I assume the default is 1022 (V7) as to the parameter is left out on init.ora.
- How do you check whether it is V7 or not?
- Is there anyway to change the limit without bouncing the database?
- If bouncing db is required, should I put the "DB_FILES" in init.ora? Then, what should be the # of files to avoid any further issues on the # of "DB_FILES"?
- Do you usually put "DB_FILES" parameter in init.ora when you build a database?

I never expected this type of issue...

thx much
 
Hi gatec.

Default for 9.2.0.6 is 200 as well.

But to answer about putting your new value in the init.ora, the answer is yes. That way it'll take effect on any restart of the dB.

If you want to look at the value of that and other parameters not included in your init.ora you would log into SQLPLUS then:

Code:
SQL> show parameters
or to show ones including a specific "word"
Code:
SQL> show parameter db

The maximum amount of files, are OS dependent. Also the size of the dB files are OS dependent.

Good Luck
DrD
 
I have this:

SQL> show PARAMETER DB_FILES;

NAME TYPE VALUE
------------------------------------ ----------- -----------------------
db_files integer 1022

So, in init.ora, what is the exact entry if you want to put 2000 db files?

DB_FILES 2000

thx much
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top