Ví dụ đơn giản nhưng bạn có thể làm như thế này (giả sử bạn có thể đọc tệp từ SQL Server):
declare @table table (Value XML)
insert @table
select a.* from openrowset (bulk 'C:\config', single_clob) a
select * from @table
select Value.value('filelocation[1]', 'varchar(100)')
from @table
Mở rộng dựa trên cấu trúc tệp của bạn.