Thank you Mr.Kay. I am a bit new at this so please bear with me. That did only a partial replace though. I am left with
<CommonRecord xmlns="http://www.ed.gov/FSA/COD/2011/v3.0e">
http://www.ed.gov/FSA/COD/2010/v3.0d CommonRecord3.0d.xsd
My changes are as folows:
<xsl:stylesheet version="2.0"
xmlns:v="http://vocado.vsm-systems.com/xsd/vocado-tx"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:default="http://www.ed.gov/FSA/COD/2011/v3.0d">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<!--Define the latest usde name space-->
<xsl:variable name="latestUsdeNameSpace" select='"http://www.ed.gov/FSA/COD/2011/v3.0e"'/>
<!-- This template will plug the latest name space in -->
<xsl:template match="*">
<xsl:element name="{local-name()}" namespace="{$latestUsdeNameSpace}">
<xsl:apply-templates select="@* | node()"/>
</xsl:element>
</xsl:template>
<!-- Template to copy all the nodes from the existing xml -->
<!--<xsl:template match="@* | node()">
<xsl:copy copy-namespaces="no">
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>-->
</xsl:stylesheet>