Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
We are working on a migration project to Fabric and need to combine data from inside a SQL Database with data in a Lakehouse then write it to another table in the database. Due to T-SQL compatibility issue with Data Warehouse, we want to use a Fabric SQL database for the Gold layer. For example:
SELECT *
FROM SilverLakehouseDeltaTable x
JOIN GoldDatabaseSQLTable y ON y.id = x.id
This should be part of a INSERT / UPDATE or MERGE such as:
INSERT INTO AnotherGoldDatabaseSQLTable
(Columns)
SELECT *
FROM SilverLakehouseDeltaTable x
JOIN GoldDatabaseSQLTable y ON y.id = x.id
The ability to read data from OneLake in a Fabric SQL database would solve this problem.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.