Oracle Database(1) 名词

2018-12-25  本文已影响0人  xbigfat

本文摘抄自Oracle官方手册,Oracle数据库的一些概念。

About Schema


Oracle Database groups related information into logical structures called schemas. The logical structures are called schema objects.

About Schema Objects


Every Objects in an Oracle Database belongs to only one schema, and has a unique name with that schema.
Some of the objects that schemas can contain are:



Typically, the objects that an application uses belong to the same schema.

SQL Plus


SQL Plus is an interactive and batch query tool that is installed with every Oracle Database installation. It has a command-line user interface that acts as the client when connecting to the database.
In the SQL Plus environment, you can enter and run SQL Plus commands, SQL statements, PL/SQL statements, and operations system commands to perform tasks such as:


About Procedural Language/SQL(PL/SQL)


Procedural Language SQL is a native Oracle Database extension to SQL. It bridges the gap between declarative and imperative program control by adding procedural elements, such as conditional control and loops.
In PL/SQL, you can declare constants and variables, procedures and functions, types and variables of those types, and triggers. You can handle exceptions.You can create PL/SQL units--Procedures, functions, packages, types, and triggers--that are stored in the database for reuse by applications that use any of the Oracle Database programmatic interfaces.
The basic unit of a PL/SQL source program is the block, which groups related declarations and statements. A block has an optional declarative part, a required executable part, and an optional exception-handling part.

上一篇 下一篇

猜你喜欢

热点阅读