由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - sqlquery里的值,如何赋值给外面的linux变量?
相关主题
Bash 里一个简单诡异的问题 (转载)sqlplus formatting ugly?
问个自动安装软件的问题怎样创造一个 segv (转载)
grep 的问题printf 到底怎么打double? %lf or %f?
你们又胡说了,牛人明明都是用cat做编辑器的这个算是Ubuntu 9.04里GCC 4.3.3的bug么?
越用越觉得c好用基于Windows 7内核的Chrome OS (转载)
菜鸟问:getline找不到,该如何安装?看看这个 C 代码
TCSH里怎么用setenv把一个带有空格的路径加给$PATH? (转载)问一个简单的shell编程问题
how to get command history in sqlpus within Screen shell?thinkpad w510到了,很爽呀
相关话题的讨论汇总
话题: eof话题: awk话题: oracel话题: sqlplus话题: printf
进入Linux版参与讨论
1 (共1页)
w*m
发帖数: 1806
1
for example,
#/!bin/csh
sqlplus -silent id/password@oracel_instance < "%s",$1;}' | echo(I want to set xx=..)
select id from table;
EOF
awk处理后的结果,如何赋值给一个变量呢?
S*A
发帖数: 7142
2
不会用 csh.
bash 里面大概是
varname=`sqlplus -silent id/password@oracel_instance < printf("%s",$1;}'
"%s",$1;}' `

printf(

【在 w*m 的大作中提到】
: for example,
: #/!bin/csh
: sqlplus -silent id/password@oracel_instance <: "%s",$1;}' | echo(I want to set xx=..)
: select id from table;
: EOF
: awk处理后的结果,如何赋值给一个变量呢?

l*******G
发帖数: 1191
3
use ` ` or $()
such as
varname=$(sqlplus -silent id/password@oracel_instance < echo $varname
v*****r
发帖数: 1119
4
1. 简单的 query, 直接在 query 里dynamic赋值
sqlplus -silent id/password@oracel_instance < select 'foo='id from table;
...
EOF
2.复杂的 Query ,re-direct here document output to a temporary file and awk
the temporary file
sqlplus -silent id/password@oracel_instance < tempfile
select column1,column2...,columnN from table;
...
EOF
awk .... tempfile

printf(

【在 w*m 的大作中提到】
: for example,
: #/!bin/csh
: sqlplus -silent id/password@oracel_instance <: "%s",$1;}' | echo(I want to set xx=..)
: select id from table;
: EOF
: awk处理后的结果,如何赋值给一个变量呢?

1 (共1页)
进入Linux版参与讨论
相关主题
thinkpad w510到了,很爽呀越用越觉得c好用
数据出力怎么version control?菜鸟问:getline找不到,该如何安装?
谁会c啊,能不能看看这个代码有啥问题?TCSH里怎么用setenv把一个带有空格的路径加给$PATH? (转载)
再问个fork的题how to get command history in sqlpus within Screen shell?
Bash 里一个简单诡异的问题 (转载)sqlplus formatting ugly?
问个自动安装软件的问题怎样创造一个 segv (转载)
grep 的问题printf 到底怎么打double? %lf or %f?
你们又胡说了,牛人明明都是用cat做编辑器的这个算是Ubuntu 9.04里GCC 4.3.3的bug么?
相关话题的讨论汇总
话题: eof话题: awk话题: oracel话题: sqlplus话题: printf