Forum Discussion
How to update field names using XMLA for all visuals without power query?
Ok any tools for doing this without destroying visuals ?
Hi jaryszek ,
You can use the Fabric notebooks by using the PySpark code to change the column names of a table in Lakehouse. Please refer below PySpark code. to rename the column names.
spark.read.table("tableName")\
.withColumnRenamed("oldColumnName", "newColumnName")\
.write\
.mode("overwrite")\
.option("overwriteSchema", "true")\
.saveAsTable("tableName")
Please refer below example.
1. I have created sample data in Lakehouse.
2. Created a Notebook, and run the below sample PySpark code to rename the column names.
It will change the column names and save the Notebook. And then refresh the table in Lakehouse, it will reflect the changes.
I hope this information helps. Please do let us know if you have any further queries.
Regards,
Dinesh