cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Extremely Slow SQL inserts

Hi everyone,

 

I have a flow that takes rows from an Excel table and inserts it into a SQL database in Azure. The inserts into the SQL database are happening but at an extremely slow rate. For 256 rows to be inserted it took 14 minutes to complete. I have a column that sets the time when the record is created and there you can see well that the inserts are very slow. Is there anything that can be done to speed this up? 

 

 

 

Id        CreatedTime
22947 2020-04-14 12:30:33.503
22946 2020-04-14 12:30:32.587
22945 2020-04-14 12:30:31.527
22944 2020-04-14 12:30:30.120
22943 2020-04-14 12:30:29.167
22942 2020-04-14 12:30:27.917
22941 2020-04-14 12:30:26.790
22940 2020-04-14 12:30:25.723
22939 2020-04-14 12:30:24.440
22938 2020-04-14 12:30:23.493

 

 

 

 
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

For anybody who is having a similar issue here is my solution to the problem. 

 

  1. Use a select data operation to select from the excel output
  2. Use compose to capture the output from the select
  3. Use the output from compose to insert into SQL.

It took 6 seconds to insert 256 records seconds 

 

SQL.png

 

View solution in original post

19 REPLIES 19
ChristianAbata
Most Valuable Professional
Most Valuable Professional

hi @Anonymous  please try to do the same insert but in your Azure SQL query console, if the insert takes the same time, is becouse your server probably has beed created in a location that is away from your real location in that case your latency is slow and you need to create again your sql data base. In the case that you have the data base into a VM is the same please see if the vm in a correct location for you.

 

Use this page to see what is the reagion with low latency for you. https://www.azurespeed.com/Azure/Latency



Did I answer your question? Please consider to Mark
my post as a solution! to guide others :winking_face:

Proud to be a Flownaut!


If you want you can follow me:
Youtube: Christian Abata
Facebook: Power Automate LA
Website Tutorials: Christian Abata
v-bacao-msft
Community Support
Community Support

 

Hi @Anonymous ,

 

Follow up @ChristianAbata 's suggestions, you could try to set Apply to each to speed this up.

Image reference:

56.PNG

Hope this helps.

 

Best Regards,

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

@v-bacao-msft Thank you for the help. I did change the setting and it was a bit faster it took 09:39 to run 256 rows. Still not breaking any speed records. Especially at the end it became very slow...

 

ID         CreatedTime

23203 2020-04-15 09:06:42.103
23202 2020-04-15 09:06:41.010
23201 2020-04-15 09:06:39.590
23200 2020-04-15 09:05:26.903
23199 2020-04-15 09:05:25.483
23198 2020-04-15 09:05:08.123
23197 2020-04-15 09:04:09.747
23196 2020-04-15 09:04:08.437
23195 2020-04-15 09:04:07.323
23194 2020-04-15 09:04:06.130
 
I will move the DB to another region this afternoon hopefully that helps. 
Eventually, I need to insert 25k records os this won't do it. Any other tips to improve the performance?
ChristianAbata
Most Valuable Professional
Most Valuable Professional

@Anonymous  sometimes the performance changes, if you create a Elastic DB vs Static db, and stactic db has low performance as elastic.



Did I answer your question? Please consider to Mark
my post as a solution! to guide others :winking_face:

Proud to be a Flownaut!


If you want you can follow me:
Youtube: Christian Abata
Facebook: Power Automate LA
Website Tutorials: Christian Abata
Anonymous
Not applicable

@ChristianAbata Thank you for your help. I think the real problem here is that it creates a connection per insert, that is why it is getting really slow. That is my only reasonable explanation for it, I don't have any hard proof, but it would make the most sense. 

 

On my search to do bulk inserts I found this article: https://garrytrinder.github.io/2019/03/bulk-insert-array-of-json-objects-into-azure-sql-database-usi...

 

He uses a json object to insert with a stored proc.

 

The search continues....

Anonymous
Not applicable

For anybody who is having a similar issue here is my solution to the problem. 

 

  1. Use a select data operation to select from the excel output
  2. Use compose to capture the output from the select
  3. Use the output from compose to insert into SQL.

It took 6 seconds to insert 256 records seconds 

 

SQL.png

 

Anonymous
Not applicable

Hi JoostPielage,

Can you advise on how to later build input for Compose and SQL Query, please? I tried several different approached, and your looks promising :).

Anonymous
Not applicable

Hi @Anonymous 

 

The output of the compose is a pure JSON object. SQL can actually work with JSON. Here you can find any example. 

 

https://stackoverflow.com/questions/46323946/how-to-insert-json-object-to-sql-server-2016-as-nvarchar

 

If you have any questions let me know. 

Anonymous
Not applicable

HI @Anonymous,

Many thanks! I figured it out and actually, it is my first experience with mixed SQL and JSON, so it was good learning. The only problem now is to go beyond 5000 rows limitation :).

 Thanks again.

Anonymous
Not applicable

Hi @Anonymous if you go to the settings of you excel step. You can enable pagination and go past the initial 5000 row limit. The ultimate limit is 100k. I have never tested that. I have gone up to 52k without a big issue. Good luck on your flow!

Hi @Anonymous ,

 

I am glad I found your topic as I am also struggling to insert 50k+ rows from Excel to SQL Server using flow...Could I ask how do you use Compose output in your SQL query to insert? Do you mind providing a quick example or some documentation as reference? BTW our SQL Server is on-premise so I will probably wrap the query in stored procedure. Thanks for your help in advance!

 

Richard

Anonymous
Not applicable

Hi @RichardW ,

 

I basically store the JSON output from the compose into a SQL temp table. 

 

INSERT INTO @TheTable SELECT '@{outputs('Compose_5')}'
SET @JSON = (SELECT TheJSON FROM @TheTable)

 

After that, you can use the JSON to insert the values into a table. You need to make sure that your column names match up. You can see an example here:

 

https://stackoverflow.com/questions/46323946/how-to-insert-json-object-to-sql-server-2016-as-nvarcha...

 

If you have any question let me know, I;ll try and help where I can

Hi @Anonymous ,

 

Thanks for the examples - really appreciated! I will have a try and see if I can make it work for my flow...thanks again!

 

Richard

Thanks a lot for this approach. I was able to use this to get desired output. Previously It took me 1 hour to insert 5k rows. Now, I am able to insert 5300 rows within 2 minutes... I am taking the JSON output from Compose and used it as an input to stored procedure which inserts records in the destination table using OPENJSON. I used Variables and do Until loop to process more than 5k rows which is a limitation in MS Flow. I will definitely write a blog about it.

 

Anonymous
Not applicable

Hi @Pranshu27,

Please let me know once you will post your blog article. I have exactly the same approach as you described - 5k rows portions that take 2 minutes each to load to SQL. Would be great to compare and see if there is still something to improve in my pipeline.

Hey @Anonymous 

How many rows are you processing?

I had 5k+ rows so I used a do until loop and a couple of variables, condition logic to process all records.

I am using execute SQL procedure operation just after compose JSON output. So, it inserts 5k rows per batch. I am incrementing the values using variable SkipCount and using that in advanced properties of Excel Get list by rows. 

Let me know if you have any questions

Hi, Give an example how is the query in sql to insert the OUTPUT.
I thought something like :
INSERT INTO Employee
SELECT *
FROM OPENJSON({OUTPUT}

Hi JoostPielage,

 

Could you please let me know how you added Account Name, First Name and Surname? No individual column is available in the output of 'List rows present in a table'.

takolota
Multi Super User
Multi Super User

Helpful resources

Announcements

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

Tuesday Tip: Subscriptions & Notifications

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week: All About Subscriptions & Notifications We don't want you to a miss a thing in the Community! The best way to make sure you know what's going on in the News & Announcements, to blogs you follow, or forums and galleries you're interested in is to subscribe! These subscriptions ensure you receive automated messages about the most recent posts and replies. Even better, there are multiple ways you can subscribe to content and boards in the community! (Please note: if you have created an AAD (Azure Active Directory) account you won't be able to receive e-mail notifications.)   Subscribing to a Category  When you're looking at the entire category, select from the Options drop down and choose Subscribe.     You can then choose to Subscribe to all of the boards or select only the boards you want to receive notifications. When you're satisfied with your choices, click Save.     Subscribing to a Topic You can also subscribe to a single topic by clicking Subscribe from the Options drop down menu, while you are viewing the topic or in the General board overview, respectively.     Subscribing to a Label Find the labels at the bottom left of a post.From a particular post with a label, click on the label to filter by that label. This opens a window containing a list of posts with the label you have selected. Click Subscribe.     Note: You can only subscribe to a label at the board level. If you subscribe to a label named 'Copilot' at board #1, it will not automatically subscribe you to an identically named label at board #2. You will have to subscribe twice, once at each board.   Bookmarks Just like you can subscribe to topics and categories, you can also bookmark topics and boards from the same menus! Simply go to the Topic Options drop down menu to bookmark a topic or the Options drop down to bookmark a board. The difference between subscribing and bookmarking is that subscriptions provide you with notifications, whereas bookmarks provide you a static way of easily accessing your favorite boards from the My subscriptions area.   Managing & Viewing Your Subscriptions & Bookmarks To manage your subscriptions, click on your avatar and select My subscriptions from the drop-down menu.     From the Subscriptions & Notifications tab, you can manage your subscriptions, including your e-mail subscription options, your bookmarks, your notification settings, and your email notification format.     You can see a list of all your subscriptions and bookmarks and choose which ones to delete, either individually or in bulk, by checking multiple boxes.     A Note on Following Friends on Mobile Adding someone as a friend or selecting Follow in the mobile view does not allow you to subscribe to their activity feed. You will merely be able to see your friends’ biography, other personal information, or online status, and send messages more quickly by choosing who to send the message to from a list, as opposed to having to search by username.

Monthly Community User Group Update | April 2024

The monthly Community User Group Update is your resource for discovering User Group meetings and events happening around the world (and virtually), welcoming new User Groups to our Community, and more! Our amazing Community User Groups are an important part of the Power Platform Community, with more than 700 Community User Groups worldwide, we know they're a great way to engage personally, while giving our members a place to learn and grow together.   This month, we welcome 3 new User Groups in India, Wales, and Germany, and feature 8 User Group Events across Power Platform and Dynamics 365. Find out more below. New Power Platform User Groups   Power Platform Innovators (India) About: Our aim is to foster a collaborative environment where we can share upcoming Power Platform events, best practices, and valuable content related to Power Platform. Whether you’re a seasoned expert or a newcomer looking to learn, this group is for you. Let’s empower each other to achieve more with Power Platform. Join us in shaping the future of digital transformation!   Power Platform User Group (Wales) About: A Power Platform User Group in Wales (predominantly based in Cardiff but will look to hold sessions around Wales) to establish a community to share learnings and experience in all parts of the platform.   Power Platform User Group (Hannover) About: This group is for anyone who works with the services of Microsoft Power Platform or wants to learn more about it and no-code/low-code. And, of course, Microsoft Copilot application in the Power Platform.   New Dynamics365 User Groups   Ellucian CRM Recruit UK (United Kingdom) About: A group for United Kingdom universities using Ellucian CRM Recruit to manage their admissions process, to share good practice and resolve issues.    Business Central Mexico (Mexico City) About:  A place to find documentation, learning resources, and events focused on user needs in Mexico. We meet to discuss and answer questions about the current features in the standard localization that Microsoft provides, and what you only find in third-party locations. In addition, we focus on what's planned for new standard versions, recent legislation requirements, and more. Let's work together to drive request votes for Microsoft for features that aren't currently found—but are indispensable.   Dynamics 365 F&O User Group (Dublin) About: The Dynamics 365 F&O User Group - Ireland Chapter meets up in person at least twice yearly in One Microsoft Place Dublin for users to have the opportunity to have conversations on mutual topics, find out what’s new and on the Dynamics 365 FinOps Product Roadmap, get insights from customer and partner experiences, and access to Microsoft subject matter expertise.  Upcoming Power Platform Events    PAK Time (Power Apps Kwentuhan) 2024 #6 (Phillipines, Online) This is a continuation session of Custom API. Sir Jun Miano will be sharing firsthand experience on setting up custom API and best practices. (April 6, 2024)       Power Apps: Creating business applications rapidly (Sydney) At this event, learn how to choose the right app on Power Platform, creating a business application in an hour, and tips for using Copilot AI. While we recommend attending all 6 events in the series, each session is independent of one another, and you can join the topics of your interest. Think of it as a “Hop On, Hop Off” bus! Participation is free, but you need a personal computer (laptop) and we provide the rest. We look forward to seeing you there! (April 11, 2024)     April 2024 Cleveland Power Platform User Group (Independence, Ohio) Kickoff the meeting with networking, and then our speaker will share how to create responsive and intuitive Canvas Apps using features like Variables, Search and Filtering. And how PowerFx rich functions and expressions makes configuring those functionalities easier. Bring ideas to discuss and engage with other community members! (April 16, 2024)     Dynamics 365 and Power Platform 2024 Wave 1 Release (NYC, Online) This session features Aric Levin, Microsoft Business Applications MVP and Technical Architect at Avanade and Mihir Shah, Global CoC Leader of Microsoft Managed Services at IBM. We will cover some of the new features and enhancements related to the Power Platform, Dataverse, Maker Portal, Unified Interface and the Microsoft First Party Apps (Microsoft Dynamics 365) that were announced in the Microsoft Dynamics 365 and Power Platform 2024 Release Wave 1 Plan. (April 17, 2024)     Let’s Explore Copilot Studio Series: Bot Skills to Extend Your Copilots (Makati National Capital Reg... Join us for the second installment of our Let's Explore Copilot Studio Series, focusing on Bot Skills. Learn how to enhance your copilot's abilities to automate tasks within specific topics, from booking appointments to sending emails and managing tasks. Discover the power of Skills in expanding conversational capabilities. (April 30, 2024)   Upcoming Dynamics365 Events    Leveraging Customer Managed Keys (CMK) in Dynamics 365 (Noida, Uttar Pradesh, Online) This month's featured topic: Leveraging Customer Managed Keys (CMK) in Dynamics 365, with special guest Nitin Jain from Microsoft. We are excited and thankful to him for doing this session. Join us for this online session, which should be helpful to all Dynamics 365 developers, Technical Architects and Enterprise architects who are implementing Dynamics 365 and want to have more control on the security of their data over Microsoft Managed Keys. (April 11, 2024)       Stockholm D365 User Group April Meeting (Stockholm) This is a Swedish user group for D365 Finance and Operations, AX2012, CRM, CE, Project Operations, and Power BI.  (April 17, 2024)         Transportation Management in D365 F&SCM Q&A Session (Toronto, Online) Calling all Toronto UG members and beyond! Join us for an engaging and informative one-hour Q&A session, exclusively focused on Transportation Management System (TMS) within Dynamics 365 F&SCM. Whether you’re a seasoned professional or just curious about TMS, this event is for you. Bring your questions! (April 26, 2024)   Leaders, Create Your Events!    Leaders of existing User Groups, don’t forget to create your events within the Community platform. By doing so, you’ll enable us to share them in future posts and newsletters. Let’s spread the word and make these gatherings even more impactful! Stay tuned for more updates, inspiring stories, and collaborative opportunities from and for our Community User Groups.   P.S. Have an event or success story to share? Reach out to us – we’d love to feature you. Just leave a comment or send a PM here in the Community!

Users online (3,799)