When you install Oracle12c on a Windows Machine, which files are created on your system?
When you install Oracle 12c on a Windows machine, a number of files and directories are created on your system. Some of the most common files and directories that are created during an Oracle 12c installation on Windows include:
- Oracle Home directory: This is the main directory where the Oracle software is installed, and it typically contains subdirectories for the database software, client software, and various other components.
- Binaries: The Oracle Home directory contains a number of executables and shared libraries that are used to run the database and various other components of the software.
- Configuration files: The Oracle Home directory contains a number of configuration files, such as the tnsnames.ora file, which is used to define the connection information for the database, and the listener.ora file, which is used to configure the Oracle Net Listener.
- Log files: Various log files are created during the installation process, including installation logs, alert logs, and trace files, which can be used to diagnose problems and monitor the performance of the database.
- Database files: The Oracle Home directory also contains the database files, including the control files, datafiles, and redo log files, which are used to store the data and metadata for the database.
- Oracle Registry: An Oracle Registry is created during the installation process, which contains information about the installed components and their configuration settings.
- Windows Services: Oracle 12c creates several Windows Services during the installation process, including the OracleService instance, which is used to start and stop the database, and the Oracle Listener service, which is used to listen for incoming connections.
Note that the exact set of files and directories that are created during an Oracle 12c installation on Windows may vary based on the specific installation options that are selected, and the version of the operating system that is being used.
If you choose the default installation, you will end up with a directory structure called the
Oracle Home that consists of subdirectories and files. The following image shows a partial listing of my installation.
These are simplistic examples from a small database. The importance of these V$
views will become more relevant when we start talking about our backup and recovery options later in this series of courses. If you have the opportunity, I would recommend that you run these views against your own production databases. this will provide you with a better understanding of how your databases are structured. The next lesson wraps up this module.