您好,登錄后才能下訂單哦!
首發:http://www.arppinging.com/wordpress/?p=93
連接用戶和查看當前用戶
SQL> show user;
USER is "SCOTT"
SQL> conn /as sysdba
Connected.
SQL> show user
USER is "SYS"
SQL>
清除屏幕輸出
記錄輸出內容到文本
開啟記錄
SQL> spool /tmp/sql.txt
SQL> select * from student;
SNO SNAME BIRTHDAY
---------- ------------------------------ -------------------
1 A 0011-01-01 00:00:00
2 B 2011-01-01 00:00:00
3 1981-02-23 00:00:00
4 D
SQL> spool off
#關閉記錄
# 查看文本是否有記錄內容
[root@localhost tmp]# cat /tmp/sql.txt
SQL> select * from student;
SNO SNAME BIRTHDAY
---------- ------------------------------ -------------------
1 A 0011-01-01 00:00:00
2 B 2011-01-01 00:00:00
3 1981-02-23 00:00:00
4 D
SQL> spool off
[root@localhost tmp]#
將時間信息打印在提示符的左邊
#開啟時間顯示
SQL> set time on
16:02:39 SQL>
16:02:41 SQL> set time off
# 關閉時間顯示
SQL>
host可以執行linux或者windows的命令
SQL> host ls -l
total 40
-rw-r--r--. 1 oracle oinstall 20 Oct 3 12:59 afiedt.buf
drwxr-xr-x. 2 oracle oinstall 4096 Oct 2 10:54 Desktop
drwxr-xr-x. 2 oracle oinstall 4096 Oct 2 10:54 Documents
drwxr-xr-x. 2 oracle oinstall 4096 Oct 2 10:54 Downloads
drwxr-xr-x. 2 oracle oinstall 4096 Oct 2 10:54 Music
drwxr-x---. 3 oracle oinstall 4096 Oct 2 11:28 oradiag_oracle
drwxr-xr-x. 2 oracle oinstall 4096 Oct 2 10:54 Pictures
drwxr-xr-x. 2 oracle oinstall 4096 Oct 2 10:54 Public
drwxr-xr-x. 2 oracle oinstall 4096 Oct 2 10:54 Templates
drwxr-xr-x. 2 oracle oinstall 4096 Oct 2 10:54 Videos
SQL>
@在oracle中可以用來執行腳本中的內容
# 查看腳本信息
[root@localhost tmp]# cat test.sql
select * from student;
show user;
[root@localhost tmp]#
# 執行腳本
SQL> @/tmp/test.sql
SNO SNAME BIRTHDAY
---------- ------------------------------ -------------------
1 A 0011-01-01 00:00:00
2 B 2011-01-01 00:00:00
3 1981-02-23 00:00:00
4 D
USER is "SCOTT"
SQL>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。