PL / SQL Installation and Configuration

plsql13 Installation and Configuration

  • Installation Preparation :

  

 

 

 

Links: HTTPS: // pan.baidu.com/s/1NjKWO97TT1pFGF5bStanyw 
extraction code: hib2
  • plsql13 License

  product code: 4vkjwhfeh3ufnqnmpr9brvcuyujrx3n3le
  serial Number:226959
  password: xs374ca

 

 

  • Installation plsqldev.msi . The installation process step by step to come.
  • Decompression instantclient-basic-windows.x64-12.2.0.1.0.zip and instantclient-sqlplus-windows.x64-12.2.0.1.0.zip to instantclient_12_2 folder.
    (Instantclient-sqlplus-windows.x64-12.2.0.1.0.zip sqlplus command file is required. When the database is not installed oracle sqlplus command may also be used, to be extracted using the obtained path to the folder is added. Does not require can not unzip)

  • Configuration environment variable

    Create a folder in instantclient_12_2 NETWORK folder, create a folder in the NETWORK ADMIN, create a tnsnames.ora file in the ADMIN.

    Editing environment variable

    New -> TNS_ADMIN value -> D: \ Develop \ instantclient_12_2 \ NETWORK \ ADMIN (the folder where the file tnsnames.ora)

    Solve the Chinese garbled configuration environment variable -> NLS_LANG value -> SIMPLIFIED CHINESE_CHINA.ZHS16GBK

    If you are using sqlplus, add in the path D: \ Develop \ instantclient_12_2 (sqlplus.exe the folder where the file unpack)

  • Configuration plsql

    Start plsql. Plsql without logging into the interface. Registration interface will pop up, enter the above registration information.

    Menu bar, select Configure -> Preferances set ocl.dll path, select instantclient_12_2 path, and oci.dll path. as follows

  

 

 

  • Monitor configuration file tnsnames.ora

  

ORCL@localhost =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = orcl)
    )
  )

 

 

   Remote access configuration requires the IP address and port information, databases, etc., you can login in plsql landing page.

 

  • Modify the language, support Chinese display. The following settings can restart;

 

  

 

 

 

  Reference URL: https: //www.cnblogs.com/d191/p/11480497.html

 

Guess you like

Origin www.cnblogs.com/wps54213/p/12507097.html