Collections:
Help at the SQL Prompt in Oracle
How To Get Help at the SQL Prompt in Oracle?
✍: FYIcenter.com
Once SQL*Plus is started, you will get a SQL prompt like this: SQL>. This where you can enter commands for SQL*Plus to run.
To get help information at the SQL prompt, you can use the HELP command as shown in the following tutorial example:
SQL> HELP INDEX
Enter Help [topic] for help.
 @             COPY         PAUSE       SHUTDOWN
 @@            DEFINE       PRINT       SPOOL
 /             DEL          PROMPT      SQLPLUS
 ACCEPT        DESCRIBE     QUIT        START
 APPEND        DISCONNECT   RECOVER     STARTUP
 ARCHIVE LOG   EDIT         REMARK      STORE
 ATTRIBUTE     EXECUTE      REPFOOTER   TIMING
 BREAK         EXIT         REPHEADER   TTITLE
...
 COMPUTE       LIST         SET         XQUERY
 CONNECT       PASSWORD     SHOW
 
SQL> HELP CONNECT
 CONNECT
 -------
 Connects a given username to the Oracle Database. When you 
 run a CONNECT command, the site profile, glogin.sql, and 
 the user profile, login.sql, are processed in that order. 
 CONNECT does not prompt for username or password if the 
 initial connection does not succeed.
 CONN[ECT] [{logon|/|proxy} [AS {SYSOPER|SYSDBA}]]
 where logon has the following syntax:
     username[/password][@connect_identifier] 
⇒ Requirements for SQL*Plus Connection in Oracle
⇐ Start the Command-Line SQL*Plus in Oracle
2020-08-25, 2664🔥, 0💬
Popular Posts:
What Happens to Your Transactions When ERROR 1205 Occurred in MySQL? If your transaction receives th...
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...