strangelad
Programmer
Well, I'll try this again after my first submission crashed Firefox.
I'm currently trying to use SQL Server Integration Services to import a daily 1Gb file, it's provided by a client who use an off the shelf package to dump it out. The XSD's for the package seem to cause MS products no end of grief as they re-use the "key" repeatedly in the same namespace:
<?xml version="1.0" encoding="UTF-8"?>
<rea xmlns="urn:listing" xmlns:rea="urn:rea" xmlns:xsi=" xsi:schemaLocation="urn:listing created="20090108T080043">
<application version="1.0">REAExporter</application>
<source rea:key="Client">
<office key="786461" rea:key="JSDFIJSDJI">
<listing key="757353" status="active" rea:key="786757635" updated="20090102T112905">
<description></description>
<listing key="676678" status="active" rea:key="674567675" updated="20090102T112905">
<description></description>
The schema can be found via the link above, it has a sub schema which is and if you want more sample data it's here ( Basically, I want to know if this is badly formed XML and if I strip this piece of XML (and it's corresponding close tags):
<application version="1.0">REAExporter</application>
<source rea:key="Client">
<office key="786461" rea:key="JSDFIJSDJI">
And change the XSD's accordingly, will it work? As far as I can tell (and it's a 1Gig file which crashes every parser I've tried so far) there is only ever 1 occurrence of the above so it serves no useful purpose.
Cheers.
I'm currently trying to use SQL Server Integration Services to import a daily 1Gb file, it's provided by a client who use an off the shelf package to dump it out. The XSD's for the package seem to cause MS products no end of grief as they re-use the "key" repeatedly in the same namespace:
<?xml version="1.0" encoding="UTF-8"?>
<rea xmlns="urn:listing" xmlns:rea="urn:rea" xmlns:xsi=" xsi:schemaLocation="urn:listing created="20090108T080043">
<application version="1.0">REAExporter</application>
<source rea:key="Client">
<office key="786461" rea:key="JSDFIJSDJI">
<listing key="757353" status="active" rea:key="786757635" updated="20090102T112905">
<description></description>
<listing key="676678" status="active" rea:key="674567675" updated="20090102T112905">
<description></description>
The schema can be found via the link above, it has a sub schema which is and if you want more sample data it's here ( Basically, I want to know if this is badly formed XML and if I strip this piece of XML (and it's corresponding close tags):
<application version="1.0">REAExporter</application>
<source rea:key="Client">
<office key="786461" rea:key="JSDFIJSDJI">
And change the XSD's accordingly, will it work? As far as I can tell (and it's a 1Gig file which crashes every parser I've tried so far) there is only ever 1 occurrence of the above so it serves no useful purpose.
Cheers.