4
votes
Is there a good alternative to SQL*PLUS for Oracle?
It depends what you are looking for.
If it is a GUI query tool, then Oracle have their free SQL Developer product (though it has a hefty footprint). There's a few free cross-database ones too. I li …
1
vote
SQL select statement in UNIX inside/within IF..THEN statement.
Have you considered using perl or other scripting language that includes database connection functionality. That way you avoid the clunky shell script/SQL*Plus linkage
…
1
vote
How to Prevent SQL Injection in Oracle SQLPlus?
Passing parameters through SQL*Plus through the command line will be open to more than just SQL injection, as the command line will be interpreted through the OS first. So you also need to consider …
3
votes
Why doesn’t ORACLE allow consecutive newline characters in commands?
By default, SQLPlus does terminate (but not execute) a statement when a blank line is entered. It has always done this. It probably seemed like a good idea in the days before screen editors and que …
7
votes
Differences between SQL Plus and “regular” SQL?
Yes. SQL*Plus is a client tool. SQL is what actually gets run on the server.
Documentation for SQL*Plus is …
8
votes
Why does SQL*Plus commit on exit?
Funnily enough, with the 11gR2 release this week (2009-09-03), SQL*Plus now has an option to COMMIT or ROLLBACK on EXIT. Doc …
0
votes
How to create a menu in SQLPlus or PL/SQL
I'd got with a real language for this (as per Pablo's comment).
You could have some stuff in a login.sql that displayed a list suggestions when you connect (PRINT or PROMPT SQL*Plus stateme …
