![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Losing new lines when capturing output to variable | blasto333 | Shell Programming and Scripting | 1 | 02-22-2009 01:03 AM |
| capturing the o/p to a variable | villain41 | Shell Programming and Scripting | 2 | 01-15-2009 03:20 AM |
| Capturing a number at the end of line and store it as variable | amuthiga | Shell Programming and Scripting | 6 | 11-26-2008 07:40 AM |
| Capturing some data from a file into a variable | shiroh_1982 | UNIX for Dummies Questions & Answers | 11 | 06-16-2006 09:16 AM |
| Capturing value into variable | prasad01 | Shell Programming and Scripting | 2 | 08-19-2003 04:38 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Capturing a value in to variable.
Hi,
I currently have a shell script where it captures in the value in to 'TOTAL' and outputs to a file, i want to capture another value of a query in to another variable and output it. Current script: sqlplus -s $user <<EOD | read TOTAL set heading off set pages 0 set feedback off set verify off set trimout on set colsep "" set tab off select count(*) from staging; quit; EOD echo "Total recs came in the file - ($TOTAL) \n" >> $count I am trying the following: sqlplus -s $user <<EOD | read TOTAL TOTAL__AMT set heading off set pages 0 set feedback off set verify off set trimout on set colsep "" set tab off select count(*) from staging; select sum(amt) from staging; quit; EOD echo "Total recs came in the file - ($TOTAL) - ($TOTAL_AMT)\n" >> $count ----------------- My idea is to read the figure in to the new variable as we are already invoking sql plus, Unable to achieve the above, can someone tell me if its even possible, if its not, then the alternative is to write all the chunk again for capturing it in to new variable(TOTAL__AMT)....any suggestion would be appreciated. thanks, R |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|