Unable to read the XML files using SSIS XML Source

  • Hi
    Can someone help me with why I am not able to load the attached XML file using SSIS?
    When I tried to read using XML Source, I am not seeing any columns.

  • I cannot see any attached files.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Not sure why the file did not get copied.
    Below is the path for the file:
    https://drive.google.com/file/d/1jyw9Q-K6RHs4wrqIl73aGG2bDBQaKTny/view?usp=sharing

    I want to load many files like above that I am getting from the below link and I am having the same issue for all the files.
    I am getting the files from the below-shared link.
    ftp://164.64.106.6/Public/OCD/OCD%20Interface%20v1.1/core/

  • kashyap4007 - Thursday, January 24, 2019 2:02 PM

    Not sure why the file did not get copied.
    Below is the path for the file:
    https://drive.google.com/file/d/1jyw9Q-K6RHs4wrqIl73aGG2bDBQaKTny/view?usp=sharing

    I want to load many files like above that I am getting from the below link and I am having the same issue for all the files.
    I am getting the files from the below-shared link.
    ftp://164.64.106.6/Public/OCD/OCD%20Interface%20v1.1/core/

    I tried and failed also. It seems the standard XML source component cannot handle that file format and therefore that you might have to "roll your own".
    This would probably best be done using a script component source.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Thank you, Phil, for your time.
    I got the solution in 2 ways.
    1) By using XML Task Editor( Control flow task) .... Yitzhak Khabinsky helped me to get this solution.
             The solution is very simple. It will be a two steps process:

    1.  The first step should be XML Task XSLT Transformation operation in the Control Flow.
      The goal here is to re-shape the input XML file into a proper format without namespaces and inline XML Schema.
    2. The second step is to use XML Source Adapter for the re-shaped XML file, etc. in the Data Flow.
      Basically, a standard process to intake XML file and load it into a DB table.

    2) By using the Script task... Did this as you suggested.

    But the real issue here is one of the files I am planning to load is around 34 GB and I am getting the below error when I run."
    Below pic shows the error.

    Below is the Script task code I used.

    Can someone guide me on this, please ?

  • Again Yitzhak Khabinsky helped me on this and below is the way I was able to resolve this.

    Here is a streaming solution for using without XSLT 3.0
    This is by using.Net Framework LINQ to XML built-in streaming functionality.
    It should be able to process XML files of any size, no RAM memory involved.

    Attached is the solution.

    Kash

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply