I am trying to remove the attribute xmlns="http://webdev2003.test.com" from the following xml using xsl/xslt, a requirement of the XML Task in SSIS. What is a proper methodology considering a large file size. ~40mb
<?xml version="1.0" encoding="utf-16"?>
<ArrayOfAccount xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Account>
<FirstName xmlns="http://webdev2003.test.com/">John</FirstName>
<LastName xmlns="http://webdev2003.test.com/">Smith</LastName>
</Account>
</ArrayOfAccount>