Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I'm trying to understand the below scenario in terms on optimization, time complexity or costing wise -
Creating shortcut TABLE for Delta table
Creating shortcut TABLEfor Partitioned Delta table
Note: I'm planning to convert parquert table to delta table and another use case is for partitioned parqet table to paritioned delta table
Solved! Go to Solution.
Hello @akkibuddy7
Creating a shortcut to a Delta table allows you to reference the table without duplicating data. This approach is efficient for non-partitioned Delta tables but comes with certain considerations:
Partitioning a Delta table involves organizing data into subsets based on one or more columns (e.g., date or region). Creating a shortcut for a partitioned Delta table has distinct advantages and trade-offs:
Aspect | Non-Partitioned Delta Table | Partitioned Delta Table |
Query Performance | General-purpose; slower for large datasets | Optimized for filtered queries on partition keys |
Write Performance | Simpler; no partition overhead | Slower due to partition management |
Maintenance | Requires compaction for small files | Requires both compaction and partition management |
Cost Efficiency | Lower maintenance cost; higher query cost for large datasets | Higher storage cost; lower query cost when optimized |
Best Use Case | Small/medium datasets or no filtering needs | Large datasets with frequent filtering on partition keys |
Please accept the answer if this is helpful
Helloi @akkibuddy7,
Thanks for reaching out to the Microsoft Fabric Community forum.
Thank you, Nilendra, for your prompt response to the query.
I wanted to check if you had the opportunity to review the information provided by @nilendraFabric. Please feel free to reachout to us if you have any further questions.
If the response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Regards,
Sahasra.
Hello @akkibuddy7
Creating a shortcut to a Delta table allows you to reference the table without duplicating data. This approach is efficient for non-partitioned Delta tables but comes with certain considerations:
Partitioning a Delta table involves organizing data into subsets based on one or more columns (e.g., date or region). Creating a shortcut for a partitioned Delta table has distinct advantages and trade-offs:
Aspect | Non-Partitioned Delta Table | Partitioned Delta Table |
Query Performance | General-purpose; slower for large datasets | Optimized for filtered queries on partition keys |
Write Performance | Simpler; no partition overhead | Slower due to partition management |
Maintenance | Requires compaction for small files | Requires both compaction and partition management |
Cost Efficiency | Lower maintenance cost; higher query cost for large datasets | Higher storage cost; lower query cost when optimized |
Best Use Case | Small/medium datasets or no filtering needs | Large datasets with frequent filtering on partition keys |
Please accept the answer if this is helpful
Can we create Shortcut table based on Paritioned Delta tables from s3?
Yes, you can create a shortcut table in Microsoft Fabric from partitioned Delta tables stored in an Amazon S3 bucket..the data in your S3 bucket must be in Delta format.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Fabric update to learn about new features.
User | Count |
---|---|
16 | |
4 | |
4 | |
3 | |
2 |