Parse xml script using script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Parse xml script using script
# 1  
Old 03-18-2011
Parse xml script using script

hi ,

I my xml I have a particular field like below I want to get the select query and use it in my script again.Sometime the query is very long and have new line also. This is embedded into an xml I have only copied the part I want to extract .

Code:
text="select * from dual">
text="select * from xml_config">
text="select * from
         WHERE SOC_STATUS='A') sa,
                        SUBSCRR sub,
                        UH_TEMP_CUSTO leading
                    where   (NVL(SA.EXRATION_DATE,SYSDATE) >= SYSDATE - ${HISTORY_DAYS})
                        AND sub.CUSTOMER_ID=LEADING.CUSTOMER_ID
                        AND sa.AGREEMENT_NO = sub.SUBSCRIBER_NO
                        AND SUB.EFFECTIVE_DATE!=NVL(SUB.EXRATION_DATE,SUB.EFFECTIVE_DATE+1) 
                        ORDER BY sa.AGREEMENT_NO">



output:

value[0] =select * from dual
value[1]=select * from xml_config
value[2]=select * from 
    WHERE SOC_STATUS='A') sa,
             SUBSCRR sub,
             UH_TEMP_CUSTO leading
                 where   (NVL(SA.EXRATION_DATE,SYSDATE) >= SYSDATE - ${HISTORY_DAYS})
                 AND .CUSTOMER_ID=LEADING.CUSTOMER_ID
                 AND sa.AGREEMENT_NO = sub.SUBSCRIBER_NO 
                 AND SUB.EFFECTIVE_DATE!=NVL(SUB.EXRATION_DATE,SUB.EFFECTIVE_DATE+1) 
                 ORDER BY sa.AGREEMENT_NO

---thanks

Last edited by vbe; 03-18-2011 at 11:03 AM.. Reason: use code tags please
# 2  
Old 03-18-2011
try this,
Code:
#!/usr/bin/perl

use strict;
my($str,$i,@a);

open(FH,"select.xml") or die "Fail-$!\n";
while(<FH>) {
chomp;
if (m/text="/ .. /">/) {
if (/^text/) {
        s/^text\="//g;
        s/\"\>$//g;
        push(@a,$_);
} else {
        s/\"\>$//g;
        $str=pop @a;
        push(@a,$str." ".$_." ");
}
}
}
for($i=0;$i<=$#a;$i++) { print "val[$i]=$a[$i]\n";}
close(FH);

# 3  
Old 03-18-2011
Code:
awk '!/>$/{s=s" "$0;next}{print s $0}' inputfile | awk '{sub(/text/, "Value["i++"]")sub(/>|^ /,"");print}' > outfile


Last edited by michaelrozar17; 03-18-2011 at 08:24 AM.. Reason: removed extra space
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Parse xml in shell script and extract records with specific condition

Hi I have xml file with multiple records and would like to extract records from xml with specific condition if specific tag is present extract entire row otherwise skip . <logentry revision="21510"> <author>mantest</author> <date>2015-02-27</date> <QC_ID>334566</QC_ID>... (12 Replies)
Discussion started by: madankumar.t@hp
12 Replies

2. Shell Programming and Scripting

BASH script to parse XML and generate CSV

Hi All, Hope all you are doing good! Need your help. I have an XML file which needs to be converted CSV file. I am not an expert of awk/sed so your help is highly appreciated!! XML file looks like this: <l:event dateTime="2013-03-13 07:15:54.713" layerName="OSB" processName="ABC"... (2 Replies)
Discussion started by: bhaskar_m
2 Replies

3. Shell Programming and Scripting

How to Parse the XML data along with the URL in Shell Script?

Hi, Can anybody help to solve this. I want to parse some xmldata along with the URL in the Shell. I'm calling the URL via the curl command Given below is my shell script file export... (7 Replies)
Discussion started by: Megala
7 Replies

4. Shell Programming and Scripting

awk Script to parse a XML tag

I have an XML tag like this: <property name="agent" value="/var/tmp/root/eclipse" /> Is there way using awk that i can get the value from the above tag. So the output should be: /var/tmp/root/eclipse Help will be appreciated. Regards, Adi (6 Replies)
Discussion started by: asirohi
6 Replies

5. Shell Programming and Scripting

Shell script (not Perl) to parse xml with awk

Hi, I have to make an script according to these: - I have couples of files like: xxxxxxxxxxxxx.csv xxxxxxxxxxxxx_desc.xml - every xml file has diferent fields, but keeps this format: ........ <defaultName>2011-02-25T16:43:43.582Z</defaultName> ........... (2 Replies)
Discussion started by: Pluff
2 Replies

6. Shell Programming and Scripting

Parse XML file in shell script

Hi Everybody, I have an XML file containing some data and i want to extract it, but the specific issue in my file is that the data is repeated some times like the following example : <section1> <subsection1> X=... Y=... Z=... <\subsection1> <subsection2> X=... Y=... Z=...... (2 Replies)
Discussion started by: yassine
2 Replies

7. Shell Programming and Scripting

Need to Parse XML from bash script

I am completely new to bash scripting and now need to write a bash script that would parse a XML file and take out values from specific tags. I tried using xsltproc, xml_grep commands. But the issue is that the XML i am trying to parse is not UTF 8. so those commands are unable to parse my XML's... (4 Replies)
Discussion started by: shivashankar.g
4 Replies

8. Shell Programming and Scripting

regex/shell script to Parse through XML Records

Hi All, I have been working on something that doesn't seem to have a clear regex solution and I just wanted to run it by everyone to see if I could get some insight into the method of solving this problem. I have a flat text file that contains billing records for users, however the records... (5 Replies)
Discussion started by: Jerrad
5 Replies

9. Shell Programming and Scripting

Need help in creating a Unix Script to parse xml file

Hi All, My requirement is create an unix script to parse the xml file and display the values of the Elements/value between the tags on console. Like say, I would like to fetch the value of errorCode from the below xml which is 'U007' and display it. Can we use SED command for this? I have tried... (10 Replies)
Discussion started by: Anil.Wmg
10 Replies

10. Shell Programming and Scripting

Parse a string in XML file using shell script

Hi! I'm just new here and don't know much about shell scripting. I just want to ask for help in creating a shell script that will parse a string or value of the status in the xml file. Please sample xml file below. Can you please help me create a simple script to get the value of status? Also it... (46 Replies)
Discussion started by: ayhanne
46 Replies
Login or Register to Ask a Question