[쉘스크립트] 오라클에서 data 가져오기 (select문)
2017. 4. 2. 17:25ㆍ쉘스크립트
[root@oracle get_billing]# cat db_data3.pl #!/bin/bash su - oracle <<EOF sqlplus -s test/test set heading off col feature_id format a35 col application_id format a35 set pages 8000 set lines 8000 set termout off set echo off set feed off SET SQLBLANKLINES ON select * from info where rownum<=10; EOF |
'쉘스크립트' 카테고리의 다른 글
쉘스크립트 for문 (0) | 2017.11.19 |
---|---|
[쉘스크립트] 숫자 연산하기 (더하기, 빼기, 곱하기, 나누기) (0) | 2016.03.27 |
[쉘스크립트] if 문 (0) | 2016.03.26 |
[쉘스크립트] 시간출력 (0) | 2016.03.26 |