SQL*Plus Commands

Here is a list of some essential SQLPlus Commands:

Command Syntax Description
CONNECT CONNECT username/password@hostname:port/service_name; Connects to a database using the specified credentials and connection details.
SELECT SELECT * FROM tablename; Executes an SQL query to retrieve data from a table.
DESCRIBE DESCRIBE tablename; Displays the structure of a table (columns, data types, etc.).
SET LINESIZE SET LINESIZE n; Sets the maximum line width for query output.
SET PAGESIZE SET PAGESIZE n; Sets the number of lines per page for query output.
SPOOL SPOOL filename; Redirects query output to a file.
START START script.sql; Executes a script file.
EDIT EDIT; Opens the default text editor to edit the current command buffer.
HOST HOST command; Executes an operating system command.
QUIT or EXIT QUIT; or EXIT; Disconnects from the database and exits SQL*Plus.
VARIABLE VARIABLE my_var NUMBER; Defines and uses variables in SQL*Plus.
COLUMN COLUMN column_name FORMAT A20; Formats query output for a specific column.
SET ECHO SET ECHO OFF; Suppresses command echoing.
SET TIMING SET TIMING ON; Displays execution time for SQL statements.

SQL*Plus Command Reference

SQL*Plus is a command-line tool for Oracle Database that allows users to interact with the database using SQL and PL/SQL commands.

Here, we will discuss the SQL*Plus commands, and understand how to use the SQL*Plus command-line argument.

Similar Reads

SQL*Plus Commands

Here is a list of some essential SQLPlus Commands:...

Command Line Arguments in SQL*Plus

Command line arguments in SQLPlus are the parameters that control the behavior of the tool. These arguments can include script names, connection details, and other options. Command-line arguments are used to streamline workflows and automate tasks....

Maximum Length of Command Line Argument

The maximum length of a command line argument is determined by the operating system. In Linux, the maximum length is typically 131,072 bytes (or 128 KB). This includes the length of the SQL*Plus command, SQL query, and any additional parameters....

SQL*Plus Example

Exceeding Maximum Length Limit...

Conclusion

SQL*Plus is a command-line tool provided by Oracle for interacting with Oracle Database. It allows you to perform various tasks related to querying, data manipulation, and database administration. SQL*Plus commands are case-insensitive, and can be abbreviated (e.g., DESCRIBE as DESC)....

Contact Us