Dunno about DTS specifically, but you can basically just insert into a Table direct from some XML. Here's an example for Books Online (you could obviously replace the in-line XML with some external source)DECLARE @idoc intEXEC sp_xml_preparedocument @idoc OUTPUT, '<root> <Customer> <CustomerID>VINET</CustomerID> <ContactName>Paul Henriot</ContactName> </Customer></root>'INSERT INTO MyCustomerTableSELECT *FROM OPENXML (@idoc, '/root/Customer', 1) WITH MyCustomerTableEXEC sp_xml_removedocument @idoc
Kristen