`
joyocaowei
  • 浏览: 31323 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

Running sqlplus From Shell

 
阅读更多

sqlplus的基本用法:

sqlplus {username[/password][@connect_identifier] | /}
     [AS {SYSOPER|SYSDBA|SYSASM}] [edition=value]

例如文件叫test.sh
内容如下:

sqlplus aaa/abcde@ABC <<EOF
select price from book where price < 3;
commit;
exit;
EOF

用户名:aaa
密码:abcde
connect_identifier:ABC

 

有些时候会在sqlplus后面加上 -s 选项,代表:

"-s" stands for silent mode - it means you don't get any terminal output. It is useful for running SQL*Plus as part of a script where you don't want the user to see lots of stuff appearing on the screen.

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics