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

Fabric Data Days Monthly is back. Join us on March 26th for two expert-led sessions on 1) Getting Started with Fabric IQ and 2) Mapping & Spacial Analytics in Fabric. Register now

Reply
AhmedMamdoh
Advocate III
Advocate III

facilitate the data migration to a Fabric SQL database

Hi,

 

I'd like to know if it exists some tools to facilitate the data migration to a Fabric SQL Database.

 

It seems that the Migration Assistant is specific for a data warehouse.

 

thanks 

1 ACCEPTED SOLUTION
v-dineshya
Community Support
Community Support

Hi @AhmedMamdoh ,

Thank you for reaching out to the Microsoft Community Forum.

 

Hi @neelball  and @lbendlin , Thank you for your prompt responses.

 

Hi @AhmedMamdoh ,

The Migration Assistant is scoped to Fabric Data Warehouse, not the operational Fabric SQL Database.

As mentioned by @neelball , Microsoft is working on migration  for moving SQL databases into Fabric. 

 

Please try below alternative workarounds to facilitate the data migration to a Fabric SQL Database.

1. By using copy activity in fabric Data Factory, you can create a pipeline that copies data from SQL server, Azure SQL or Oracle and load directly into Fabric SQL Database tables.

2. By using Fabric Dataflow Gen2, you can output the final tables directly into a Fabric SQL Database.

3. By using Notebooks (PySpark) to load data, you can read the source and insert into SQL Database.

 

Please refer below sample code.

 

jdbc_url = "jdbc:sqlserver://<fabric-sql-endpoint>"
df.write \
.format("jdbc") \
.option("url", jdbc_url) \
.option("dbtable", "dbo.TargetTable") \
.mode("append") \
.save()

 

Note:  The above code works only if your data is in Azure Storage / OneLake, Accessible via JDBC and in CSV/Parquet/Delta. Otherwise you will need to change the above code.

 

I hope this information helps. Please do let us know if you have any further queries.

 

Regards,

Dinesh

View solution in original post

3 REPLIES 3
v-dineshya
Community Support
Community Support

Hi @AhmedMamdoh ,

Thank you for reaching out to the Microsoft Community Forum.

 

Hi @neelball  and @lbendlin , Thank you for your prompt responses.

 

Hi @AhmedMamdoh ,

The Migration Assistant is scoped to Fabric Data Warehouse, not the operational Fabric SQL Database.

As mentioned by @neelball , Microsoft is working on migration  for moving SQL databases into Fabric. 

 

Please try below alternative workarounds to facilitate the data migration to a Fabric SQL Database.

1. By using copy activity in fabric Data Factory, you can create a pipeline that copies data from SQL server, Azure SQL or Oracle and load directly into Fabric SQL Database tables.

2. By using Fabric Dataflow Gen2, you can output the final tables directly into a Fabric SQL Database.

3. By using Notebooks (PySpark) to load data, you can read the source and insert into SQL Database.

 

Please refer below sample code.

 

jdbc_url = "jdbc:sqlserver://<fabric-sql-endpoint>"
df.write \
.format("jdbc") \
.option("url", jdbc_url) \
.option("dbtable", "dbo.TargetTable") \
.mode("append") \
.save()

 

Note:  The above code works only if your data is in Azure Storage / OneLake, Accessible via JDBC and in CSV/Parquet/Delta. Otherwise you will need to change the above code.

 

I hope this information helps. Please do let us know if you have any further queries.

 

Regards,

Dinesh

neelball
Microsoft Employee
Microsoft Employee

We are actively working on a guided migration experience for moving SQL databases into Fabric. 
lbendlin
Super User
Super User

You can use the standard Import/Export wizard that comes with SQL Server, or other types of SSIS packages.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Fabric Update Carousel

Fabric Monthly Update - February 2026

Check out the February 2026 Fabric update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors