Oracle Database Installation Error: Environment Path

When trying to install Oracle Database 11g Release 2 on Windows 7 (64 bit) .

Error Detected ( PRVF-3929 )

oracle install wizard

It states that the environment variable path is too long. To achieve this variable, I searched for "envir" on Windows and selected "Change variable settings for your account." Presumably, this is the path to the system, not the user who needs to be changed.

system

Can I delete as I see fit - naturally, removing extensions will be related to different language compilations. Why does Oracle require this limitation, and is it specific to installing Oracle, or is it a constant limitation on the use of dbms oracles?

+6
source share
1 answer

This restriction is based on older Windows restrictions where the length of environment variables is important. This limitation still exists in the Oracle installation.

Work on it:

  • Step 1: Copy the value of the path variable into a text editor (Ex .: notepad) and save this value as a backup.
  • Step 2: Reduce the size of this path to less than 1023 characters. Remove the path variables at the end. During the installation of the oracle, you will not need any of them. Store these deleted values ​​in a separate text file because you need to add them later!
  • Step 3: Run the oracle installation again.
  • Step 4: After installing Oracle: Add these remote path values ​​again at the end of the path.

Good luck

+7
source

All Articles