PLSQL Developer installation and connection

Installation Process Reference Source: https://blog.csdn.net/qq_28867949/article/details/77775918

 

table of Contents

First, download PLSQL Developer

Second, download the Oracle client

Third, the configuration variables

Fourth, to connect to Oracle Configuration

Fifth, start PLSQL Developer to configure


I downloaded resources packaged PLSQL Developer and Oracle client and the relevant configuration, download, unzip and then do the third and fifth steps can be.

 

First, download PLSQL Developer

I use the older version: 10 version, the installation process all the way round to say here is not effortless. The resources required to download I can upload.

 

Second, download the Oracle client

https://www.oracle.com/database/technologies/instant-client/microsoft-windows-32-downloads.html , point first, very fast download, unzip the file is finished, unzip the folder into PLSQL Developer folder inside the line. The resources required to download I can upload.

Third, the configuration variables

Point into the Preferences folder, find the Default Configuration

The following point into the configuration, the path change their own use oh:

ORACLE_HOME: D:\YY\plsql\instantclient_19_5
TNS_ADMIN: D:\YY\plsql\instantclient_19_5\NETWORK\ADMIN
NLS_LANG:SIMPLIFIED CHINESE_CHINA.ZHS16GBK

Fourth, to connect to Oracle Configuration

Client a new file folders NETWORK, NETWORK then in a new folder ADMIN, then the tnsnames.ora new file, and then copying the following:

ORACLE = 
(DESCRIPTION = 
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521)) 
(CONNECT_DATA = 
(SERVER = DEDICATED) 
(SERVICE_NAME = ORACLE) ) )

Fifth, start PLSQL Developer to configure

Tools to find the menu - preferences, configuration is as follows, and then quit and re-open the input user name, password, and server address to

Published 44 original articles · won praise 16 · views 10000 +

Guess you like

Origin blog.csdn.net/YYIverson/article/details/103735021