The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi all,
We have a Mirrored Azure Databricks catalog running in Fabric. Today we noticed that there are several columns missing. When we look closer at the columns that are missing, the column type is timestamp_ntz in databricks. We don't know how to get those columns to Fabric. Does anyone have a solution for this?
We already tried to recreate the Mirrored Azure Databricks catalog, without success.
I also found this Microsoft article stating that you should "Select the Configure replication button", but we cannot find this button : https://learn.microsoft.com/en-us/fabric/database/mirrored-database/troubleshooting#columns-are-miss...
Solved! Go to Solution.
Hello @FabianSchut
Seems like `TIMESTAMP_NTZ` is not fully compatible with Fabric’s SQL analytics endpoints.This incompatibility can result in columns being excluded or not displayed properly during schema synchronization.
is this possible for you to convert TIMESTAMP_NTZ` column to a `TIMESTAMP` in Databricks.
When you do this conversion in Databricks
it will interpret the timestamp using the current session time zone, because `TIMESTAMP_NTZ` values do not include time zone information and must be mapped to a particular zone when converted.
Thanks
Hi @FabianSchut
I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.
Thank you.
I'm sorry for my late reply. I did not have time to work on it lately. I went for the option to cast the data types to string (which was good enough in this case).
Hi @FabianSchut
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 my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.
Hi @FabianSchut
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.
Hi @FabianSchut
Thanks for reaching out to Microsoft Fabric Community Forum.
Thank you for your response @nilendraFabric ! I appreciate your insights.
Additionally, if you do not prefer to convert the data type, consider the following steps:
Furthermore, we would like to provide some reference links that may be useful:
Microsoft Fabric Mirrored Databases From Azure Databricks (Preview) Tutorial - Microsoft Fabric | Mi...
Microsoft Fabric Mirrored Catalog From Azure Databricks (Preview) - Microsoft Fabric | Microsoft Lea...
If my response has resolved your query, please mark it as the Accepted Solution to help others. Additionally, I would appreciate a 'Kudos' if you found my response helpful.
Thank you!
Hello @FabianSchut
Seems like `TIMESTAMP_NTZ` is not fully compatible with Fabric’s SQL analytics endpoints.This incompatibility can result in columns being excluded or not displayed properly during schema synchronization.
is this possible for you to convert TIMESTAMP_NTZ` column to a `TIMESTAMP` in Databricks.
When you do this conversion in Databricks
it will interpret the timestamp using the current session time zone, because `TIMESTAMP_NTZ` values do not include time zone information and must be mapped to a particular zone when converted.
Thanks
Thank you for your answer! I was hoping that there would be a solution without converting the data type. I will try this next week and will let you know!