Skip to main content

How SQL Profiler can save your day by Identifying Lengthy Processes in Microsoft Dynamics NAV / Business Central

Problem Statement:

While building customization for Microsoft Dynamics NAV / Business Central ERP, at times the customization is so heavy that we as developers do not realize how much load we put on the SQL Database which the backbone of the system.

One example of this situation is, I had built a system that can create a Cash Receipt during accepting Payment in terms of Cash from the Customer by temporary passing an entry through the Cash Receipt Journal. There was also a Payment Application code that applied(reconciled) the Payments and the Invoices of the Customer that ran posting of any financial entry concerning that specific Customer.

During this attempt of creating Cash Receipt, the posting would block the Customer, Customer Ledger Entries and G/L Entries Tables which was as per design. And it wouldn't allow anyone to make an entry during this period and it would take approximately 20-30 seconds.

To get out of the Deadlock, I was forced to restart the NAV Server Instance through Power Shell.

Introduction:

In this blog, I will mention how SQL Profiler helped me realize that the Cash Receipt Posting was taking way more resources than expected. There was no metric to even judge what was going on and which query tool precisely how much amount of time to execute.
This also helped me change the process to follow to post Customer Cash Receipts.

Pre-requisites:

  • Microsoft Dynamics NAV / Business Central On-Premise
  • Microsoft SQL Server Management Studio
  • Microsoft SQL Server
  • Understanding of SQL Profiler

Books & References:

https://docs.microsoft.com/en-us/sql/tools/sql-server-profiler/sql-server-profiler?view=sql-server-ver15

Demonstration:

1. Open NAV on one side of the screen:
Goto Sessions in NAV search, select the session you want to use SQL Profiler and Start Full SQL Tracing.
NAV Sessions - Enable Full SQL Tracing

2. Open SQL Profiler on the other side of the screen:
Goto SQL Server Management Studio > Tools > SQL Profiler
SQL Server Profiler
SQL Server Profiler - Login 

Trace Properties - General
Check “ShowPlan XML” under Performance Counter.
Trace Properties - Event Selection - Showplan XML

Check “SP:StmtCompleted” Completed under Store Procedures.
Trace Properties - Event Selection - SP:StmtCompleted 

Check all the options under “Locks”
Trace Properties - Event Selection - Locks

3. Run the processes in NAV so the effective background SQL Query Execution can be tracked in  SQL Server Profiler:


Trace SQL - SQL Profiler
4. Tracking which function or line of code is taking the maximum time.:
In this case, check the transaction with a maximum duration
Trace SQL - SQL Profiler - Showplan XML - Exec














After finding the Query taking a long time to run, you can check the corresponding CallStack in C/AL or AL.
Trace SQL - SQL Profiler - NAV Code - Exec

Thus, using this method, you should be able to trace your NAV execution issues.

Conclusion:

Thus, to conclude, I had no idea about how SQL Profiler worked. With the help of a friend
from Microsoft Support (Mr. Aananth Rajadevan). I learned what all components are present in  SQL Profiler and how to monitor what is going on and find the correct C/AL Code and rectify it.

Comments

  1. Hi Olister
    Very helpful post. I had one question. After finding the entry that has the highest duration from the SQL Profiler, how do you read the NAV code?
    I see 3 lines in your (last) blog image: If GenJnlLine.findfirst; gen. journal line (table 81). SetUpNewLine line 5; General Journal (page 39).OnNewRecord (trigger) line 2. Does that mean the problem originate on Page 39 or Table 81? OR page 39 calls Table 81 when findfirst is executed?

    ReplyDelete
  2. You will need to do a bit of trial and error opening the same table/page and you will find similar SQL scripts. Based upon this you will get an idea of the trigger points..Sadly, there is no direct way of doing direct code comparison

    ReplyDelete

Post a Comment

Let me know your comments below. I'll try my best to answer your comment

Popular posts from this blog

Something went wrong. An Error occurred - Error Resolution

Introduction: With the installation of NAV 2018 or BC On-premise, I have observed that when creating New Server Instance and New WebServer Instance, you will get the error 'Something went wrong. An Error occurred '. I referred to the community questions below but didn't find my resolution. Hence, I decided to write this blog. Pre-requisites: Microsoft Dynamics Business Central - On-Premise / NAV 2018 Understanding of Business Central Authentication  Books & References: https://community.dynamics.com/nav/f/microsoft-dynamics-nav-forum/261301/nav-2018-web-client-an-error-has-occurred https://community.dynamics.com/business/f/dynamics-365-business-central-forum/421987/error-something-went-wrong-an-error-has-occurred-azure-ad-tenant Demonstration: 1. Creation of NAVServerInstance: In order to create NAVServerInstance, you can either add the Server Instance through Business Central Administration or Powershell command. Add Instance - Business Central Administration Add Insta

Universal Code Error and Resolution

Introduction: On Friday, May 12th, 2023, the Business Central On-Premise Production Environments started throwing universal code errors as follows. This occurred to every customer on a lower version of BC 19,20 and 21 irrespective of their localization, customization, and license. Pre-requisites:  Understanding of Technical Upgrade in Business Central On-Prem References: BC20 On prem. Universal Code requirement error after installing customer's license. - Dynamics 365 Business Central Forum Community Forum (40) Yammer : Dynamics 365 Business Central Development : View Conversation Root Cause: The certificate that signs Microsoft Base Application was expired. Errors started occurring if you Uninstalled, Installed Extensions, Restart Server Instances or for some even out of random started popping out. We first thought could be a license issue as we had fixed that before but this did not solve the issue. Resolution: Microsoft identified the issue and posted the following update The mi

How to resolve 'Edit in Excel' issues

  Introduction: As you know that D365 BC offers Edit in Excel functionality. But manipulating or customizing such a  standard functionality is difficult as there is not much control available. Hence, solving issues is also a difficult task. I will be resolving the issue for this specific issue, however, the debugging steps are similar. Pre- requisites : ODATA V4 Connectivity tool for Webservices Microsoft Dynamics 365 Business Central Books & References: https://community.dynamics.com/business/f/dynamics-365-business-central-forum/448226/issue-with-excel-add-in/ Demonstration: The way Edit in Excel works is that for a given page a Webservice is created adding PageID and Page Name. Hence, there are some Webservice connectivity checks in place to validate. 1. Edit in Excel Custom Action on the page: If you are adding Edit in Excel Action on the page, please ensure that you are providing appropriate PageName and Filter criteria as Webservice is using these parameters Refer Editworkshe