sqlplus 環境下部分set 命令
由於業務需要匯出單個欄位的少量資料,設定了指令碼來執行,但是結果總是回顯在螢幕上,而導致不合適。現將正確的格式的指令碼介紹一下。
剛開始自己的在linux執行的指令碼中沒有set trimspool on 這一設定,導致在linux下有結果回顯,而在windows下則符合要求
===============windows=============
--test.sql 檔案內容
set echo off 不顯示指令碼中的每個sql命令
set feedback off 禁止回顯sql命令處理的記錄條數(預設為 on)
set term off 禁止顯示指令碼中命令的執行結果(預設為on)
set heading off 禁止輸出標題(預設為on)
set pagesize 0 禁止輸出分頁
set linesize 1000 設定每行的字元輸出個數為1000,放置換行。
set trimout on 去除標準輸出每行的行尾空格 預設為off
set trimspool on 去除spool 輸出結果中每行的結尾空格 預設為off
spool d:\im_user.txt
select * from t where rownum <50;
--select /*+ use_hash(tu iu)*/ iu.login_id from tmp_user tu ,im_user iu where iu.login_id=tu.tuid and iu.user_status=1;
spool off
set term on
set heading on
set feedback on
set echo on
exit;
C:\Users\aaaa>sqlplus yang/yang
SQL*Plus: Release 11.1.0.6.0 - Production on 星期三 3月 9 16:35:17 2011
Copyright (c) 1982, 2007, Oracle. All rights reserved.
連線到:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
yang@ORACL> @d:\test.sql
yang@ORACL> exit;
================linux=================
#!/bin/sh
#created by yangql @2011-03-09
#parameters
ora_user=aliim
ora_passwd=aliim
sqlplus -s ${ora_user}/${ora_passwd} <set echo off
set feedback off
set term off
set heading off
spool /tmp/im_user.txt
select /*+ use_hash(tu iu)*/ iu.login_id from tmp_user tu ,im_user iu where iu.login_id=tu.tuid and iu.user_status=1;
spool off
set term on
set heading on
set echo on
set feedback on
exit;
EOF
"get_im_user.sh" 20 lines, 407 characters written
oracle@dba-host1:/tmp>./get_im_user.sh
34607
74158
02561
82517
40445
85825
04801
65546
45715
b40384
73865
b52708
剛開始自己的在linux執行的指令碼中沒有set trimspool on 這一設定,導致在linux下有結果回顯,而在windows下則符合要求
===============windows=============
--test.sql 檔案內容
set echo off 不顯示指令碼中的每個sql命令
set feedback off 禁止回顯sql命令處理的記錄條數(預設為 on)
set term off 禁止顯示指令碼中命令的執行結果(預設為on)
set heading off 禁止輸出標題(預設為on)
set pagesize 0 禁止輸出分頁
set linesize 1000 設定每行的字元輸出個數為1000,放置換行。
set trimout on 去除標準輸出每行的行尾空格 預設為off
set trimspool on 去除spool 輸出結果中每行的結尾空格 預設為off
spool d:\im_user.txt
select * from t where rownum <50;
--select /*+ use_hash(tu iu)*/ iu.login_id from tmp_user tu ,im_user iu where iu.login_id=tu.tuid and iu.user_status=1;
spool off
set term on
set heading on
set feedback on
set echo on
exit;
C:\Users\aaaa>sqlplus yang/yang
SQL*Plus: Release 11.1.0.6.0 - Production on 星期三 3月 9 16:35:17 2011
Copyright (c) 1982, 2007, Oracle. All rights reserved.
連線到:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
yang@ORACL> @d:\test.sql
yang@ORACL> exit;
================linux=================
#!/bin/sh
#created by yangql @2011-03-09
#parameters
ora_user=aliim
ora_passwd=aliim
sqlplus -s ${ora_user}/${ora_passwd} <
set feedback off
set term off
set heading off
spool /tmp/im_user.txt
select /*+ use_hash(tu iu)*/ iu.login_id from tmp_user tu ,im_user iu where iu.login_id=tu.tuid and iu.user_status=1;
spool off
set term on
set heading on
set echo on
set feedback on
exit;
EOF
"get_im_user.sh" 20 lines, 407 characters written
oracle@dba-host1:/tmp>./get_im_user.sh
34607
74158
02561
82517
40445
85825
04801
65546
45715
b40384
73865
b52708
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22664653/viewspace-688864/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Sqlplus下的set命令詳解SQL
- sqlplus set命令SQL
- sqlplus set命令使用SQL
- oracle配置會話環境(set命令) -- 轉自網路Oracle會話
- sqlplus環境設定SQL
- 設定sqlplus環境SQL
- GTID環境下mysqldump set-gtid-purged取值MySql
- 初始化sqlplus環境SQL
- vi 命令使用--AIX環境下總結AI
- sqlplus下的命令SQL
- 在sqlplus互動環境下測試儲存過程SQL儲存過程
- windows環境下sqlplus中date資料顯示格式_to_dateWindowsSQL
- windows環境下Django環境搭建WindowsDjango
- 在Linux環境下執行DOS命令(轉)Linux
- 修改sqlplus預設環境設定SQL
- sqlplus環境配置(login.sql)SQL
- 常用環境Docker命令Docker
- Windows環境下的Nginx環境搭建WindowsNginx
- Mac環境下adb命令安裝apk到手機MacAPK
- Linux/Unix環境下的make命令詳解(轉)Linux
- linux下export命令新增刪除環境變數LinuxExport變數
- window環境下testlink環境搭建(xammp)
- 以太坊-Win環境下remix環境搭建REM
- Windows 環境下 Python 環境安裝WindowsPython
- sqlplus常用set指令(轉)SQL
- MongoDB副本集replica set (二)--副本集環境搭建MongoDB
- rlwrap實現sqlplus環境 方向鍵等使用SQL
- cmd_sqlplus:set head off and set head onSQL
- ubuntu環境下搭建以太坊開發環境Ubuntu開發環境
- Linux下Oracle sqlplus命令中執行ed命令LinuxOracleSQL
- linux執行環境&命令Linux
- Oracle - SQLPlus下的常用命令OracleSQL
- SQLPLUS之set常用設定SQL
- Mac環境下MySQL的安裝和基本命令的使用MacMySql
- linux下export命令新增、刪除環境變數(轉載)LinuxExport變數
- shell 指令碼常用 oracle 環境變數set 設定指令碼Oracle變數
- 【學習】SQL基礎-009-sqlplus環境SQL
- sqlplus登陸環境設定(glogin.sql)SQL