Here, I would like to demonstrate how to find memory leaks in .NET application. To analyze memory leaks, first, you […]
Updated on Kisan Patel
How to resolve disk IO performance problems that are a very important point for SQL Server troubleshooting. Find Average read […]
Updated on Kisan Patel
Tempdb is a system database inside SQL Server, used primarily for internal and temporary operations. In the case of troubleshooting […]
Updated on Kisan Patel
Here are the scripts for find missing index in SQL Server database: SELECT s.last_user_seek, d.object_id, d.equality_columns, d.included_columns, d.statement, s.avg_user_impact FROM […]
Updated on Kisan Patel
To get the current location of device, you have to add reference to System.Device DLL. GeoCoordinateWatcher class supplies location data […]
Updated on Kisan Patel
Problem: Encrypting & Decrypting a String in C# Decrypting PKCS#7 encrypted data in C# Encrypt string with Bouncy Castle AES/CBC/PKCS7 […]
Updated on Kisan Patel
Frequently asked C# interview questions and answers for Experienced. 1. What is the difference between strong typing and weak typing […]
Updated on Kisan Patel
How to Export and Download Excel files with .NET Core? First, add the EPPlus into your project: dotnet add package […]
Updated on Kisan Patel
Here is the simple script to backup SQL Server database: DECLARE @name VARCHAR(50) — database name DECLARE @path VARCHAR(256) — […]
Updated on Kisan Patel
Let’s learn how to shrink database in SQL Server Step 1 : Right click on database => properties => options […]
Updated on Kisan Patel