Date: April 2019
This is a list of Frequently Asked Questions on SQLcl. Additional questions can be submitted through the SQLcl Forum.
SQLcl is a command-line interface for Oracle Database that combines the power of SQL*Plus and SQL Developer.
Download the .ZIP from OTN. Extract it. Start a terminal/cmd session and run the ‘SQL’ program in the \bin directory. If you have at least a Java Runtime Engine (JRE) 8 on your machine, you’ll be ready to go.
Yes. It will search for your TNS files just as SQL Developer does. Use the SHOW TNS command to get see the current TNS status for your SQLcl session.
Yes. You can of course also use the new in-line editor.
Yes.
Again, yes. In fact, everything you have loved about SQL*Plus for the past 30 years is still available in SQLcl.
Each statement or script you execute is saved as an item in the history. These remain there until it ages out. The history is limited to 100 items. The history persists between SQLcl sessions.
ANSICONSOLE is one of the SQLFORMAT options. It auto-sizes columns to ‘best fit’ the data based on the max-size of a value for a given page of query results. This can make reading the results of your queries much easier without resorting to using the COL[UMN] command to pre-size columns for your queries.
SQLcl supports all of the SQLPlus commands, and has added new ones. You can see the new ones highlighted when you run the ‘HELP’ command.
SQLcl is included with SQL Developer, and SQL Developer ships with all Oracle Database installs. So, yes.
No. SQLcl is a java applications and by default uses Oracle’s JDBC driver to connect to Oracle Database. However, you can force a ‘thick’ connection via your Oracle Client by using the –oci flag on your connect string.
Use your UP or DOWN Arrow keys. Or, use the HISTORY command to get a list of availalble commmands. Use HISTORY <#> to place a history item into your SQLcl buffer.
Yes.
Yes, check these code samples out on our GitHub project.
Yes, remember that SQLcl IS SQL Developer, just with a CLI vs a GUI. You can for example use the DDL and INFO commands in SQL Developer's worksheet, running as a script (F5).