首页 > 其他分享 >Passing result of query to a varibale in sh script

Passing result of query to a varibale in sh script

时间:2023-01-06 14:22:37浏览次数:33  
标签:users script sh result oracle query usr

  If you have an utility to access your db, and this utility returns a scalar result, then you can use that to script.

For example, this is with oracle.

Code:
# su - oracle
/usr/users/oracle>
/usr/users/oracle> a=`sqlplus -s '/ as sysdba' << EOF
> set feedback off pages 0
> select max(1) from dual;
> EOF`
/usr/users/oracle> echo $a
1
/usr/users/oracle>

 



标签:users,script,sh,result,oracle,query,usr
From: https://www.cnblogs.com/lbzwd/p/17030351.html

相关文章

  • .Net Core Mvc控制器返回JsonResult 序列化数据循环依赖问题
     开始找的解决方案发现并行不通services.AddControllers().AddNewtonsoftJson((options)=>{//忽略循环引用options.Ser......
  • 理解HashMap底层数据结构
    文章目录​​`hash`​​​​常用解决哈希冲突方法​​​​链地址法​​​​开放地址法​​​​`array`​​​​链表​​​​红黑树​​​​`HashMap`​​​​参考文章​​在......
  • intel I350千兆网卡datasheet说明+intel core i53570说明
    I350的网卡特点:主控芯片是 I350 Gigabit Network Connection (rev 01) 。根据 IntelEthernetServerAdapterI350:ProductBrief :(也就是说每一个物理port支......
  • shell条件语句
    返回值$?=0$!上一次后台运行程序的pid[root@localhost~]#evalpingwww.baidu.com-c3;cd/etc/Unsetxing单分支if判断条件;then条件为真的分支代码fi......
  • [JavaScript]分解url参数
    分解页面url传入参数转载:来自https://www.jianshu.com/p/6dd040f6800dfunctioninit_params(){varurl=location.search;//获取url中"?"符后的字串......
  • SheetJS读取服务器Excel文件
    Javascript使用SheetJS读取服务器上的Excel文件[英]JavascriptReadExcelfileonserverwithSheetJSvarfilename='Test.xlsx';varreq=newXMLHttpRequest();......
  • [源码]JS加密:调用JShaman接口,实现JS代码加密
    源码如下,保存为html即可直接使用。免费版:<html><head><scriptsrc="https://code.jquery.com/jquery-1.11.3.js"></script></head><bo......
  • Docker私有仓库以及Docker shell
    Docker搭建私有仓库公有云:比如百度云,dockerhub私有云:比如搭建到某个内网,docker搭建私有仓库:下载一个镜像docker默认使用的是dockerhubdocker仓库服务器就是docker注册服务......
  • Android画布(二)ShapeDrawable常用函数
    ShapeDrawable常用函数setBounds()用来指定当前ShapeDrawable在当前控件中的显示位置setBounds(intleft,inttop,intright,intbottom)setBounds(Rectbounds)getPaint......
  • Unity URP Shader之各向异性头发高光之KK高光模型
    首先声明以下素材和shader代码都来自Kerry佬,我只做整理和学习之用,写此随笔是为了做个笔记方便以后查阅。 关于各向异性头发高光,效果可参考:  首先弄清以下知识点:1.......