Home » Oracle » Oracle Sql » How to use Oracle SQL*Plus

How to use Oracle SQL*Plus

Here in this post,I would be giving introduction to Oracle SQLPlus  which is Oracle tools to connect to oracle database  and how to download Oracle SQLPlus

Oracle SQL*Plus

What is Oracle Sql*plus:

1) SQLPlus, widely used by Oracle DBAs and developers, is a powerful and straightforward tool from Oracle to interact with the database.
2) SQL
Plus has its own formatting commands to make your queries look better, as well as commands to set up the environment.
3) SQL*Plus is available on all platforms like AIX , Solaris,Unix ,Linux windows,HP etc on which Oracle runs. It is provided with the Oracle Client installation software for the client machine. It is also provided at the server level with installation software for the Oracle Server.

How to begin with Oracle Sql*plus

1) When you start SQLPlus, it prompts you for the username, password, and connect string. The connect string is the database alias name. If you omit the connect string, SQLPlus tries to connect you to the local database defined in the ORACLE_SID variable.So  you need username ,password and connect-string to connect to the database

2) You can login to other user or database,once you are in SQL*Plus using the command CONNECT USERNAME/PASSWORD@CONNECTSTRING. The slash separates username and password, the connect string following @ is the database alias name. If you omit the password, you will be prompted to enter it. You may omit the connect string to connect to a local database.

See also  How to upgrade EBS database to 19c: Step by Step

3) EXIT command is used to exit from Sql*plus

.You may also use the QUIT command to complete the session. EXIT and QUIT are synonymous.

How the commands are Entered and Executed in Oracle Sql*plus

1) Once you are connected to SQL*Plus, you get the SQL> prompt. This is the default prompt, which can be changed using the SET SQL PROMPT command. Type the command you wish to enter at this prompt.
2) A command can be spread across multiple lines, and the commands are case-insensitive. The previously executed command will always available in the SQL buffer. The buffer can be edited or saved to a file. You can terminate a command in any of the following ways:
a)End with a semicolon (;). The command is completed and executed.

select * from emp;
b)Enter a slash (/) on a new line by itself. The command in the buffer is executed. This method is also used to execute a PL/ SQL block.

select * from emp

/
c) Enter a blank line. The command is saved in the buffer.

The RUN command can be used instead of a slash to execute a command in the buffer. The SQL prompt is returned when the command has completed execution. You can enter your next command in the prompt.

Simple Oracle SQL*Plus COMMANDS

• DESCRIBE
• SAVE “file command”   : It saves the file to File-system on Unix
• GET “file command” : It open the file on the sqlplus prompt
• EDIT “file command” : You can edit the file
• SPOOL “file command” : You can spool the log of any command to the file on filesystem,
• INPUT “editing command”
• LIST “editing command” : It shows the last run command
• RUN “editing command” : It executes the command in SQL buffer
• APPEND “editing command” : You can add  any text to the command in SQL buffer using this
• CHANGE “editing command”
• CLEAR BUFFER “editing command” : It clears the SQL buffer
• DEL “editing command”

See also  How to export/import Putty Sessions

Note Only SQL commands and PL/SQL blocks are stored in the SQL buffer, SQLPlus commands are not stored in the buffer.
A hyphen (-) is used to indicate command continuation. Although SQL commands can be continued to the next line without a continuation operator, SQL
Plus commands cannot be continued

Oracle Sql*plus download

1) Download the zip files containing the SQL*Plus Instant Client package, and the OCI package from the OTN Instant Client page at http://www.oracle.com/technetwork/apps-tech/winx64soft-089540.html

Both packages must be from the same version such as 11.2.0.4.

Oracle sql*plus download
Oracle Sql*plus download

2) Create a new directory, for example, /home/instantclient10_2 on UNIX or c:\instantclient10_2 on Windows.

3) Unzip the two packages into the new directory.

4) Add the directory containing the Instant Client files to the PATH system environment variable. Remove any other Oracle directories from PATH.

5) Set the user environment variable SQLPATH to the directory containing the Instant Client files so glogin.sql is found

6) setup tnsnames.ora and set the variable TNS_ADMIN to that path

Now Oracle Sql*plus is ready to connect

Related Links

Pre-Built Oracle database for learning and testing using Oracle Developer VM

Things you need to know about Oracle SQL developer

How to use Putty for SSH

PuTTY CONNECTION MANAGER (PuttyCM)

Awesome Free Remote Desktop Manager

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top