This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Using the UI renaming a LakeHouse table doesn't update the table name. No change is made.
HOW CAN WE CHANGE THE COLUMN HERE??
Hi @Potpot
As far as I am aware, you would likely need to use a Python notebook to rename the table.
Here is the same code below where I am renaming my table from "fact_daily_f2" to "fact_daily"
# Welcome to your new notebook
# Type here in the cell editor to add code!
from pyspark.sql import SparkSession
# Create a Spark session
spark = SparkSession.builder \
.appName("RenameDeltaTable") \
.config("spark.databricks.delta.retentionDurationCheck.enabled", "false") \
.getOrCreate()
# Rename Delta table
spark.sql("ALTER TABLE fact_daily_f2 RENAME TO fact_daily")
# Stop the Spark session
spark.stop()
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 14 | |
| 10 | |
| 9 | |
| 7 | |
| 7 |
| User | Count |
|---|---|
| 35 | |
| 28 | |
| 26 | |
| 22 | |
| 16 |