Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
DebbieE
Community Champion
Community Champion

Fabric Notebook with a default lakhouse (Silver) and another lakehouse mounted (Gold)

I am creating a dataframe with data from silver lakehouse so this is the default one. dev_silver_lk

But I want to create a dimension Delta Parquet file in the gold lakehouse dev_gold_lk

I have also mounted this Data lake to the notebook (They both are in public preview as I have Schemas ticked)

 

And I just cant seem to do it? 

Surely this should be possible? 

 

I suspect it might be because my Lakehouse has Preview schemas? I tried this and it didnt work in Pyspark Notebook

 

gold_lh = "dev_timesheet_gold_lh"
target_path = gold_lh + "/Tables/dimCustomer"
 
from delta.tables import DeltaTable

dfBlockersKey_reordered.write.format("delta").mode("overwrite").save(target_path)

But I just get Py4JJavaError: An error occurred while calling o17332.save. : Operation failed: "Bad Request", 400, HEAD,
1 ACCEPTED SOLUTION
v-nmadadi-msft
Community Support
Community Support

Hi @DebbieE  ,
Thanks for reaching out to the Microsoft fabric community forum.

Currently Lakehouse with schema enabled have some limitations as they are still in public preview,

vnmadadimsft_0-1750738117772.png

 


source: Lakehouse schemas (Preview) - Microsoft Fabric | Microsoft Learn

Please try performing the operation with schemas disabled to see if the issue still occurs.


If this post helps, then please consider Accepting as solution to help the other members find it more quickly and consider giving a KUDOS. Feel free to reach out if you need further assistance.
Thank you

View solution in original post

7 REPLIES 7
DebbieE
Community Champion
Community Champion

I have given up on Lakehouse with Schema enabled. Another fail for me right now

v-nmadadi-msft
Community Support
Community Support

Hi @DebbieE 

As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided by the community members for the issue worked. If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.

 

Thanks and regards

v-nmadadi-msft
Community Support
Community Support

Hi @DebbieE 

I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If our responses has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.


Thank you.

v-nmadadi-msft
Community Support
Community Support

Hi @DebbieE 

May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.

Thank you.

 

PanuO
Helper I
Helper I

Try providing full ABFSS path:

DELTA_TABLE_PATH = "abfss://(workspace id)@onelake.dfs.fabric.microsoft.com/(lakehouse id)/Tables/(tablename)"

delta_table = DeltaTable.forPath(spark, DELTA_TABLE_PATH)
...


v-nmadadi-msft
Community Support
Community Support

Hi @DebbieE  ,
Thanks for reaching out to the Microsoft fabric community forum.

Currently Lakehouse with schema enabled have some limitations as they are still in public preview,

vnmadadimsft_0-1750738117772.png

 


source: Lakehouse schemas (Preview) - Microsoft Fabric | Microsoft Learn

Please try performing the operation with schemas disabled to see if the issue still occurs.


If this post helps, then please consider Accepting as solution to help the other members find it more quickly and consider giving a KUDOS. Feel free to reach out if you need further assistance.
Thank you

Liam_McCauley
Frequent Visitor

You could try saveAsTable:

 

dfBlockersKey_reordered.write \
    .format("delta") \
    .mode("overwrite") \
    .saveAsTable("dev_timesheet_gold_lh.dimCustomer")

 

Helpful resources

Announcements
Fabric July 2025 Monthly Update Carousel

Fabric Monthly Update - July 2025

Check out the July 2025 Fabric update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.