Viewing 15 posts - 16 through 30 (of 34 total)
These are the four outputs produced
<ClaimControls />
<ClaimHeader />
<ClaimInfo />
<ClaimDetail />
I need to merge ClaimHeader and ClaimDetail to load into single flat file.
April 5, 2012 at 5:21 am
My data in Single record would look like
<Claim>
<ClaimControls>
<Batch_ID />
<Process_Date />
</ClaimControls>
<ClaimHeader>
<Claim_ID />
<Name...
April 5, 2012 at 4:03 am
I have a huge nodes in XML. So my SELECT statement goes little long..
My approach : -> XML column to recordset, For Each Recordset-->Dataflow(XML Source from Variable to Flat...
April 4, 2012 at 2:36 am
Source : I have one XML column which has data(eg:<BI><Detail><Name /> <DOB /> <Detail/><Control> <Date/></Control></BI>) and 7 other columns holding information like ID, Date, Sytem etc..
Target : Flat File...
April 2, 2012 at 10:59 pm
Koen..Thanks. The issue is with the length of the connection string
I have altered the config table design to accomodate lengthy strings. Its working
March 30, 2012 at 7:12 am
I did this in Script, which resolved the issue!
Dts.Variables["xmlout"].Value = Dts.Variables["XML"].Value.ToString().Replace("<ROOT>","").Replace("</ROOT>","");
March 28, 2012 at 2:44 am
Yes.. Even with the XML generated using FOR XML RAW , "<ROOT></ROOT> " is getting appended when using the query in EXECUTE SQL task with XML resultset
March 27, 2012 at 10:26 pm
I have already created XML string from table.
I just want to remove the <ROOT></ROOT> tag from my XML string
March 22, 2012 at 4:42 am
Its appending ROOT node for that too !!!
I did
Select '<test>testing</test>'
Result set : XML
Result set variable : Test - String datatype
It gave me <ROOT> <test>testing</test></ROOT>
March 22, 2012 at 4:26 am
Also I am getting Access Denied when trying to view the above config files even after reverting the changes
March 21, 2012 at 2:58 am
Yes 🙂 As you say, i have requested for temp table !
March 19, 2012 at 4:48 am
The Fields from which I need to construct the XML is coming from flat file..
So i need to use them in SCRIPT COMPONENT as destination inside a dataflow and construct...
March 15, 2012 at 7:28 am
Koen,
Is it not possible without storing flat file data in Staging table?
Thanks.
March 15, 2012 at 6:54 am
Viewing 15 posts - 16 through 30 (of 34 total)