SQLplus is one of the most used Oracle tools. Usually we use sqlplus to execute SQL command or another database administration task. SQLplus is available in various platform. In this article, I would like to introduce some useful shortcuts which will help us in our daily activities in this tools.
1. Define a default text editor to do editing on sqlplus
define _editor=vi
or if you are using Windows, you can use
define _editor=notepad
2. Show the last SQL command which is stored in the buffer
SQL> LIST
or use a shortcut l
SQL> l
3. Execute the last SQL command which is stored in the buffer
SQL> RUN
Or use a shortcut /
SQL> /
4. Edit the last SQL command which is stored in the buffer using the default text editor.
SQL> edit
Or use a shortcut ed
SQL> ed
5. Run a SQL script
SQL> START
Or use a shortcut @
SQL> @
6. Store the screen output of sqlplus to a file
SQL> spool namafile
7. Show the environment variable of sqlplus
SQL> SHOW ALL
8. Update the environment variabel of sqlplus
SQL> set namavariabel nilaivariabel
Example:
SQL> set linesize 200
9. Save the command which stored in a buffer to a file
SQL> save namafile
Contoh:
SQL> save cek_datafile.sql
This command will create a file which name is cek_datafile.sql in the directory where we run sqlplus
10. Execute a operating system command
SQL> host
Or use a shortcut !
SQL> !pwd
SQLplus merupakan salah satu tools oracle yang paling sering digunakan. Biasanya sqlplus digunakan untuk menjalankan command atau perintah SQL maupun untuk administrasi database sehari-hari. SQLplus tersedia dalam berbagai platform. Pada artikel kali ini kita akan membahas beberapa shortcut yang berguna untuk aktivitas kita di dalam tools oracle ini 🙂
1. Menentukan text editor default untuk melakukan editing pada sqlplus
define _editor=vi
atau pada windows dapat menggunakan
define _editor=notepad
2. Menampilkan command sql terakhir yang tersimpan dalam buffer
SQL> LIST
Atau dengan shortcut l
SQL> l
3. Menjalankan command sql terakhir yang tersimpan dalam buffer
SQL> RUN
Atau dengan shortcut /
SQL> /
4. Mengedit command sql terakhir yang tersimpan dalam buffer dengan menggunakan text editor default
SQL> edit
Atau dengan shortcut ed
SQL> ed
5. Menjalankan script SQL
SQL> START
Atau dengan shortcut @
SQL> @
6. Mencatat hasil output dari sqlplus ke dalam sebuah file
SQL> spool namafile
7. Menampilkan environment variabel sqlplus
SQL> SHOW ALL
8. Mengubah environment variabel sqlplus
SQL> set namavariabel nilaivariabel
Contoh:
SQL> set linesize 200
9. Save command yang ada pada buffer ke dalam sebuah file
SQL> save namafile
Contoh:
SQL> save cek_datafile.sql
Maka akan terbentuk file cek_datafile.sql pada direktori tempat kita menjalankan sqlplus
10. Menjalankan command pada operating System
SQL> host
Atau dengan shortcut !
SQL> !pwd