PLSQL Developer tool introduction and basic use

PLSQL Developer background?

PLSQL Developer is a database development tool launched by Oracle, with good portability and adaptability

What is the difference with the current Sqldeveloper?

1. Sqldeveloper is a substitute for plsql tool, and it is becoming more and more perfect. It contains a variety of plug-ins
. 2. The second point of Sqldeveloper is completely open source.
3. Sqldeveloper cannot support multiple database connections.
4. PLSQL is cross-platform. It supports window, Linux and Mac OS X.

PLSQL interface introduction

Show my objects query by default

Tools menu --> Object Brower Filters, will open the Brower Folders order window, move "My Objects" to the top and set it as the default
Insert picture description here

Set coding background color and coding habits

Oracle is accustomed to using all uppercase coding. After the setting is completed, the keywords will be automatically converted to uppercase display. The
Insert picture description here
code beautifier is equivalent to the code formatting, which makes the code more intuitive and easy to read.
Insert picture description here
Insert picture description here
Set the editor’s custom shortcut keys, overall tool appearance, and tools In the date and time format of the
Insert picture description here
sql prompt setting
Insert picture description here
instantclient-basic,
instantclient-sqlplus,
PLSQLDeveloper
instantclient-basic, instantclient-sqlplus these two files need to be decompressed into the instantclient_1 file, placed in the directory where plsql is installed, and when the plsql tool is opened, in the first The path of the instantclient_1 file is introduced in the options
Insert picture description here
D:\OracleStu\instantclient_11_2_2014\instantclient_11_1
D:\OracleStu\instantclient_11_2_2014\instantclient_11_1\oci.dll After the
configuration is completed, it will record the relevant general information when you open it again, and you can connect directly by entering the password
Insert picture description here

PLSQL shortcut key file production

df=DELETE FROM
sf=SELECT * FROM
sc=SELECT COUNT() FROM
sfu=SELECT * FROM FOR UPDATE
cor=CREATE OR REPLACE
st = select t.
,t.rowid from t
s = select a.* from a
d = delete from where
u = update a set a. where a.
Insert picture description here

Oracle related e-books and tools

Link: https://pan.baidu.com/s/1Wj_0h7oNaAl8UVWGvZi9yA
Extraction code: q4op

Guess you like

Origin blog.csdn.net/YHM_MM/article/details/105917100