I am trying to parse this XML in PL/SQL
You can use regular expression to replace xmlns to empty string... then you can read the xml column
xml:= regexp_replace(xml,'(xmlns:[a-z]|xmlns).*?(\"|\'').*?(\"|\'')',' ');