IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

can we split the XML records using DFSORT?


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
useit

Active User


Joined: 05 Oct 2006
Posts: 152

PostPosted: Fri Sep 19, 2014 4:29 pm
Reply with quote

hi,
can we split the XML records using DFSORT??.

say for example .

i have input file (FB,LRECL=32760).

a single line can contain multiple XMLS.

ex:

<?xml version="1.0" encoding="utf-8"?><xmldata1><?xml version="1.0" encoding="utf-8"?><xmldata2><?xml version="1.0" encoding="utf-8"?><xmldat3>

in the above example we have 3 xmls records in the same line. can we split this record into 3 single records??

my output should be:

<?xml version="1.0" encoding="utf-8"?><xmldata1>
<?xml version="1.0" encoding="utf-8"?><xmldata2>
<?xml version="1.0" encoding="utf-8"?><xmldata3>

Regds,
useit
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Fri Sep 19, 2014 4:52 pm
Reply with quote

What level of DFSORT do you have? How many is the maximum number of xml elements you can have on one record?

I suspect you'd be better off with something which can parse xml directly.
Back to top
View user's profile Send private message
useit

Active User


Joined: 05 Oct 2006
Posts: 152

PostPosted: Fri Sep 19, 2014 5:02 pm
Reply with quote

bill.
DFSORT version leve is VERSION 1.12.

The record length of the input XML dataset can be any value up to 32760.


Regds,
useit
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Fri Sep 19, 2014 5:12 pm
Reply with quote

You have said how many bytes are in a record already. I was wondering how many xml elements there may be on a record.

With your level of DFSORT, you only have 100 parsed fields available (2.1 has 1,000).

With 32760 bytes, you will easily have more than 100 elements potentially present. Possible that you have more than 1000.

Using 1000 parsed fields, or even 100, would be a lot of code.

Why do you want to split it up anyway?
Back to top
View user's profile Send private message
useit

Active User


Joined: 05 Oct 2006
Posts: 152

PostPosted: Fri Sep 19, 2014 5:37 pm
Reply with quote

i have built a COBOL test driver for DB2 stored procedures which use XML to pass data(common for all stored proc).in order to process as many input XML I wanted to split the record and read one by one until end of i put.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts Pulling a fixed number of records fro... DB2 2
Search our Forums:

Back to Top