Ahmet Karakaya
Ahmet Karakaya

Reputation: 10139

Oracle Client for Console screen

I want to install an Oracle Client like SQLDeveloper differing in that it works on Linux shell console, there will not be GUI.

Do you to recommend most usefull one?

Upvotes: 0

Views: 290

Answers (2)

ibre5041
ibre5041

Reputation: 5288

You can use

  • pure SqlPlus
  • something called yasql (written in Perl), this one uses libreadline so you can use TAB comletiton, and also it can redirect sql output into CSV and other formats
  • SqlPlus executed from Emacs (sql-oracle mode). This also adds some additional features.

Oracle does not have any nice tool like Informix'es dbaccess.

Upvotes: 0

Armunin
Armunin

Reputation: 996

SQL*Plus is basically the SQLDeveloper without the GUI.

SQL*Plus is the most basic Oracle Database utility, with a basic command-line interface, commonly used by users, administrators, and programmers.

Source
Check also here and here for more information.

Upvotes: 1

Related Questions