Viewing 15 posts - 16 through 30 (of 56 total)
No one got any ideas?
April 3, 2014 at 12:59 pm
Sample SQL script below
Before checks -
Columns from Source
Address1 = 67 office
Address2 = NULL
Address3 = Reading road
Address4 = NULL
Address5 = NULL
Columns from destination
Address_1 =...
April 3, 2014 at 5:48 am
turning out there was a problem with our webservice.
October 15, 2013 at 10:18 am
Thanks for replying back, the xml data from the webservice is not being passed into the xml source file. The package execute without producing any errors but does not bring...
October 15, 2013 at 3:06 am
since the order does not matter your code is enough to get me started.
Thank you.
September 22, 2013 at 1:36 pm
I'm guessing there no way around this problem?
September 12, 2013 at 11:39 am
Well the problem is our data supplier wants to be able to send us record-update information in XML, and wants to able to distinguish an empty XML element from a...
September 12, 2013 at 4:00 am
Would that also help with integer values?
September 11, 2013 at 2:43 pm
Below is the sample XML code which produces empty strings but to ssis they are null values -
<from></from>
And I try adding default values but they still showed up...
September 11, 2013 at 1:19 pm
thank you!
September 9, 2013 at 2:43 pm
The sql script did not work for me, I don't have dbo.DelimitedSplit8K on my server.
SELECT id,
Result = STUFF(( SELECT '/' + CASE WHEN CHARINDEX('*', Item) = 0 THEN Item
WHEN...
September 4, 2013 at 7:25 pm
Thanks for the pointers guys, I guess i missed out the most important part which is that the value in Segment column will be changing but the formatting will be...
September 4, 2013 at 1:16 pm
Thanks the attempt but it still showing the zero instead of -1 then 1.
idname
-1d
0e
1f
2g
It should be –
idname
-1d
1e
2f
3g
August 29, 2013 at 2:13 am
It possible i over complicated the sample sql code, here a simper version-
Create procedure [dbo].[HealthCreateTestEntities]
(@CustomersTocreate int)
as
begin
declare @CustomerCounter int, @ChildElements int, @Bookings int, @Ancillary int
declare @XMLFileCustomers table
(
?RecordNumber int identity...
August 19, 2013 at 12:24 am
Thank you, it just what I need.
August 18, 2013 at 11:51 pm
Viewing 15 posts - 16 through 30 (of 56 total)