InterviewSolution
| 1. |
How Do You Control Number Of Datafiles One Can Have In An Oracle Database? |
|
Answer» The db_files parameter is a "soft LIMIT " parameter that controls the MAXIMUM number of PHYSICAL OS files that can MAP to an Oracle instance. The maxdatafiles parameter is a DIFFERENT - "hard limit" parameter. When issuing a "create database" command, the value specified for maxdatafiles is stored in Oracle control files and default value is 32. The maximum number of database files can be set with the init parameter db_files. The db_files parameter is a "soft limit " parameter that controls the maximum number of physical OS files that can map to an Oracle instance. The maxdatafiles parameter is a different - "hard limit" parameter. When issuing a "create database" command, the value specified for maxdatafiles is stored in Oracle control files and default value is 32. The maximum number of database files can be set with the init parameter db_files. |
|