You plan to install a Microsoft SQL Server instance.
The instance will support a database that has the following requirements:
Store Excel workbooks on the file system.

Access the workbooks through Transact-SQL.

Include the workbooks in database backups.

During installation, you need to ensure that the requirements will be met.
Which feature should you use?
Correct Answer: D
Explanation/Reference:
Explanation:
Excel workbooks can be stored in the XML format.
OPENXML, a Transact-SQL keyword, provides a rowset over in-memory XML documents that is similar to a table or a view. OPENXML allows access to XML data as though it is a relational rowset. It does this by providing a rowset view of the internal representation of an XML document. The records in the rowset can be stored in database tables.
Incorrect:
Not B: FILESTREAM enables SQL Server-based applications to store unstructured data, such as documents and images, on the file system. FILESTREAM is not used for Excel workbooks.
References: https://docs.microsoft.com/en-us/sql/relational-databases/xml/openxml-sql-server