Oracle 11g Lite Client Configuration
Oracle is typically deployed on the server, and the client needs to connect to Oracle on the server using connection tools such as PL/SQL Developer.
At this point, it is often necessary to install hundreds of megabytes of Oracle on the client and then configure the completion of PL/SQL Developer support through the Oracle Network Configuration Wizard.
And if we just need to link Oracle to perform general additions and deletions, we do not need to install the full Oracle client, and just install a Oracle-provided tool INSTANTCLIENT-BASIC (compressed 33M), you can implement the use of pl/ SQL Developer to connect to Oracle on the server.
Installation steps: 1. Download the installation tool first
can go to my web disk share link download: Baidu Network disk Password:enxt
You can also go to Oracle website to download:
Oracle Thin Client: Instant-client
Download the corresponding version of your system can.
2. Installation
- 1) Unzip the Oracle 32-bit thin client to D:\Oracle\, folder name Instantclient_11_2
- 2) Configure Environment variables
#添加 TNS_ADMIN 和对应的路径TNS_ADMIND:\Oracle\instantclient_11_2#添加 oracle 目录ORACLE_HOMED:\Oracle\instantclient_11_2#添加 oracle 字符集NLS_LANGSIMPLIFIED CHINESE_CHINA.ZHS16GBK# 在Path 变量最开始处添加Path%ORACLE_HOME%\bin;
- 3) Create the Tnsnames.ora file under D:\Oracle\instantclient_11_2 and fill in the configuration file
# tnsnames.ora Network Configuration File: /oracle/app/oracle/product/10.2.0/db_1/network/admin/tnsnames.ora# Generated by Oracle configuration tools.#下面 是链接样本,按你的实际情况添加DB10 =(DESCRIPTION =(ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.10)(PORT = 1521)))(CONNECT_DATA = (SERVICE_NAME = ecom)))
- 4) Unzip the plsql_developer8.0 file to D:\Oracle\, open the PL/SQL software to do the following configuration
Open Software--tools--preferences--connect--Check the connection check box to play √
Oracle 主目录名下配置D:\Oracle\instantclient_11_2OCI库 配置D:\Oracle\instantclient_11_2\oci.dll
- 5) Apply re-open the software.
The article ends here. Thank you for watching.
PL/SQL developer combined with Oracle thin client configuration instructions