Parsing Comma Separated values to UNIX variable from PLSQL


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Parsing Comma Separated values to UNIX variable from PLSQL
# 1  
Old 06-19-2018
Parsing Comma Separated values to UNIX variable from PLSQL

Hi All,

I'm trying to pass the comma separated values (string) returned from Plsql Procedure to UNIX variable.

getting the below log message
Code:
cat: -: Bad file descriptor
awk: cmd. line:1: fatal: error reading input file `-': Bad file descriptor


The output coming from plsql procedure is abc@xyz.com,def@xyz.com,ghi@xyz.com and need this string to pass to the mail to address further in the code.

Below is the code.

Code:
LOG_FILE=$FCP_REQID.txt
echo 'Logfile is :'$LOGFILE
output_var=''
sqlplus -s /nolog  <<ENDSQL|grep -v 'Connected'>$LOG_FILE
connect $FCP_LOGIN
set feedback off
set heading off
set serveroutput on
declare
mavar1 varchar2(400);
begin
pack_list_print_pkg.get_cust_mail_address($param1,$param2,mavar1);
dbms_output.put_line('CUSTMAIL-ADDRESS'||mavar1);
end ;
/
ENDSQL
cat $LOG_FILE
customer_mail_address=`awk '/CUSTMAIL-ADDRESS/ {print $2}' $LOG_FILE`

echo 'customer mail address is :'||$customer_mail_address


Last edited by rbatte1; 06-19-2018 at 03:56 AM.. Reason: Added CODE & ICODE tags
# 2  
Old 06-19-2018
Hi Mahesh,

Can you post the output of below command:

Code:
sqlplus -s /nolog <<ENDSQL|grep -v 'Connected'>$LOG_FILE
connect $FCP_LOGIN
set feedback off
set heading off
set serveroutput on
declare
mavar1 varchar2(400);
begin
pack_list_print_pkg.get_cust_mail_address($param1,$param2,mavar1);
dbms_output.put_line('CUSTMAIL-ADDRESS'||mavar1);
end ;
/
ENDSQL

# 3  
Old 06-19-2018
Output of the command
Code:
cat: -: Bad file descriptor
 awk: cmd. line:1: fatal: error reading input file `-': Bad file descriptor

Moderator's Comments:
Mod Comment Please use CODE tags as required by forum rules!

Last edited by RudiC; 06-19-2018 at 06:06 AM.. Reason: Added CODE tags.
# 4  
Old 06-20-2018
Quote:
Originally Posted by Mahesh3089
Output of the command
Code:
cat: -: Bad file descriptor
 awk: cmd. line:1: fatal: error reading input file `-': Bad file descriptor

You were asked to show the output of the SQL command without the cat and awk commands that follow it in your original post. I would also be interested in the value of the variable $FCP_REQID.txt

And as the mods ask, please use the code tags to separate out your listings and output from the rest of the text.

Andrew
These 2 Users Gave Thanks to apmcd47 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Assign comma separated values to a variable

Hi All, I wrote a database command that queries our application and outputs a whole bunch of values to a text file. I need to assign the output to two values. Here is a sample of the output: valueOne, checkOne valueTwo, checkTwo valueThree, checkThree I would like... (9 Replies)
Discussion started by: jeffs42885
9 Replies

2. Shell Programming and Scripting

Comma separated values to individual lines

My OS : RHEL 6.7 I have a text file with comma separated values like below $ cat testString.txt 'JOHN' , 'KEITH' , 'NEWMAN' , 'URSULA' , 'ARIANNA' , 'CHENG', . . . . I want these values to appear like below 'JOHN' , 'KEITH' , 'NEWMAN' , 'URSULA' , 'ARIANNA' , 'CHENG', .... (4 Replies)
Discussion started by: kraljic
4 Replies

3. Shell Programming and Scripting

Needs help in parsing comma separated values

hello experts, i am retrieving values in variables jobKey and jobName within my shell script. these values are returned to me within braces and i am using following command to remove those braces: jobKeys=`echo $jobKeys | sed 's:^.\(.*\).$:\1:'` jobNames=`echo $jobNames | sed... (1 Reply)
Discussion started by: avikaljain
1 Replies

4. UNIX for Dummies Questions & Answers

[solved] Comma separated values to space separated

Hi, I have a large number of files which are written as csv (comma-separated values). Does anyone know of simple sed/awk command do achieve this? Thanks! ---------- Post updated at 10:59 AM ---------- Previous update was at 10:54 AM ---------- Guess I asked this too soon. Found the... (0 Replies)
Discussion started by: lost.identity
0 Replies

5. Shell Programming and Scripting

To agregate Comma separated values

Hi pls help me to get the code: i have a file in which content is : 2.01304E+11 2.01304E+11 ori 2 01:00 2.01304E+11 2.01304E+11 ori 2 01:02 2.01304E+11 2.01304E+11 ori 3 01:02 2.01304E+11 2.01304E+11 ori 3 ... (7 Replies)
Discussion started by: Aditya.Gurgaon
7 Replies

6. Shell Programming and Scripting

Parsing and filtering multiline text into comma separated line

I have a log file that contains several reports with following format. <Start of delimiter> Report1 header Report1 header continue Report1 header continue Record1 header Record1 header continue Record1 header continue field1 field2 field3 field4 ------... (1 Reply)
Discussion started by: yoda9691
1 Replies

7. Shell Programming and Scripting

parsing comma separated file

Hi, I have a file with th elist of patches separated by comma, like below: patch1, patch 2, patch 3................ t\The number of patches is not known as it changes every time. I need assistance in writing a routine such as it will take patch1 as first variable and performs the... (4 Replies)
Discussion started by: avikaljain
4 Replies

8. Shell Programming and Scripting

Parsing Comma separated Arguments

Hi unix guru's I want to execute a shell script like ksh printdetails.ksh Andy,Bob,Daisy,Johnson like passing all the four names in the as the arguments and these arguments are varies between 1 to 10. How to pass these names to the shell script variable. and also i want to know the count... (4 Replies)
Discussion started by: Reddy482
4 Replies

9. Shell Programming and Scripting

Extracting the values separated by comma

Hi, I have a variable which has a list of string separated by comma. for ex , Variable=/usr/bin,/usr/smrshbin,/tmp How can i get the values between the commas separately using shell scripts.Please help me. Thanks, Padmini. (6 Replies)
Discussion started by: padmisri
6 Replies

10. Shell Programming and Scripting

Splitting comma separated values into an array

I'm attempting to create a KSH array out of a string like this: ",,,value1,value2,," I have created the array but I only get two elements, one for value1 and one for value2. I have ended up with something like this but I don't like it: set -A JUNK xx=0 for i in $(print ",,,value1,value2,,"... (3 Replies)
Discussion started by: tmarikle
3 Replies
Login or Register to Ask a Question