Hi @TinaN, To handle XMLNAMESPACES
in Databricks, use the from_xml
function for parsing XML data, where you can define namespaces within your parsing logic. Start by reading the XML data using spark.read.format("xml")
, then apply the from_xml
function, specifying the necessary namespaces. This allows you to effectively translate SQL queries involving XML namespaces into Databricks code. If you have any specific details or additional requirements, feel free to share them!