70-463 · Question #153
You are developing a SQL Server Integration Services (SSIS) package. The package sources data from an HTML web page that lists product stock levels. You need to implement a data flow task that reads t
The correct answer is C. Custom source component. HTML is not a format natively supported by any built-in SSIS data flow source. The Raw File source reads SSIS's proprietary binary format. The XML source reads well-formed XML documents - HTML, especially real-world HTML, is not valid XML. The Flat File source handles delimited o
Question
You are developing a SQL Server Integration Services (SSIS) package. The package sources data from an HTML web page that lists product stock levels. You need to implement a data flow task that reads the product stock levels from the HTML web page. Which data flow source should you use?
Options
- ARaw File source
- BXML source
- CCustom source component
- DFlat File source
How the community answered
(35 responses)- A3% (1)
- B6% (2)
- C86% (30)
- D6% (2)
Explanation
HTML is not a format natively supported by any built-in SSIS data flow source. The Raw File source reads SSIS's proprietary binary format. The XML source reads well-formed XML documents - HTML, especially real-world HTML, is not valid XML. The Flat File source handles delimited or fixed-width text files, not markup. Because none of the built-in sources can parse HTML, a Custom source component must be developed (using the SSIS object model or .NET) to connect to the web page, retrieve the HTML, parse the relevant content, and expose it as rows in the data flow pipeline.
Topics
Community Discussion
No community discussion yet for this question.