TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About EXEC
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Vijayaragavan S (6)
Yadagiri Reddy (5)
Chetan Sanghani (5)
Jitendra Mesavaniya (4)
Nandan Hegde (3)
Praveen Sreeram (2)
Naveen Kumar (2)
Ajay Yadav (2)
Monica Rathbun (2)
Allam Purushotham (2)
Sanjay Kumar (2)
Tural Suleymani (2)
Alpesh Maniya (2)
Naimish Makwana (2)
Sarthak Varshney (2)
Sardar Mudassar Ali Khan (2)
Kajul Nisha (2)
Sean Franklin (1)
Jalpa Dhola (1)
Shikha Tiwari (1)
Monish Bansal (1)
Hamid Khan (1)
Manpreet Singh (1)
Vijay Yadav (1)
Lokendra Singh (1)
Siddhesh Chavan (1)
Davood Riazi (1)
Dhruvin Shah (1)
Rikam Palkar (1)
Mahesh Alle (1)
Surapureddy Sriram (1)
Sreenath Kappoor (1)
David Mccarter (1)
Nimit Joshi (1)
Vijai Anand Ramalingam (1)
Lakshmanan Sethu Sankaranarayan (1)
Divyansh Gupta (1)
Nanddeep Nachan (1)
Rohini Parade (1)
Raj Kumar (1)
Abhishek Yadav (1)
Ishika Tiwari (1)
Harshal Limaye (1)
Sai Sherlekar (1)
Sourav Kayal (1)
Sumit Gupta (1)
Amit Mohanty (1)
Ajay Kumar (1)
Muzaffar Ur Rahman (1)
Abhishek Yadav (1)
C# Curator (1)
Raj Bhatt (1)
Konstantin Knizhnik (1)
Neelesh Vishwakarma (1)
Jignesh Trivedi (1)
Anand Thakur (1)
Ashish Shukla (1)
Muthuramalingam Duraipandi (1)
Rohatash Kumar (1)
Sudhakar Jalli (1)
Vipin Yadav (1)
Rama Mohan (1)
Mukesh Kumar (1)
Mohammad Hussain (1)
Rupesh Kahane (1)
Manoj Mittal (1)
Amit Kumar Singh (1)
Shriram Pophali (1)
Tamilarasu Arunachalam (1)
Jay Krishnareddy (1)
Related resources for EXEC
No resource found
Limit Concurrent Execution in Asynchronous Methods
11/24/2024 7:43:01 AM.
In this article, we will learn how to finely control how many concurrent executions we will allow of our async methods, without blocking, using a semaphore.
Understanding Write-Debug, Write-Verbose, and Write-Host
11/10/2024 7:23:16 AM.
In PowerShell, Write-Debug, Write-Verbose, and Write-Host serve different purposes for output. Write-Debug is used for debugging, displaying messages when the $DebugPreference is set. Write-Verbose p
Debugging Azure DevOps Pipelines with System.Debug
10/26/2024 6:13:32 AM.
This article explores essential techniques for Azure DevOps pipeline error diagnosis. It discusses how to enable diagnostic logs for individual and all pipeline executions using the "Enable Syste
Compiling Multiple Files to Build an Application
10/22/2024 10:46:04 AM.
This article explains how to compile multiple C files into a single executable using the C compiler. It covers two approaches: compiling multiple files with the cc command or using the #include direct
iPhone Memory Leaks Tracking and Use of Instruments
10/3/2024 11:41:57 AM.
This article explores iPhone memory leaks, detailing how to track them using Instruments and NSZombie. It explains what memory leaks are, their causes, and the consequences of losing track of allocate
Understanding Service, Factory, And Provider
10/3/2024 11:38:34 AM.
AngularJS provides three methods for creating reusable utilities: Service, Factory, and Provider. All serve the same purpose but differ in implementation. Services are singletons, Factories return new
How To Execute SQL In SharePoint 2013 And Office 365 Using Nintex WorkFlows
9/27/2024 10:13:52 AM.
This article guides you through executing SQL in SharePoint 2013 and Office 365 using Nintex Workflows. It covers creating a Dev Testing list, adding the "Execute SQL" action, and configurin
Automated Way for PBIX to PBIP File Conversion
9/4/2024 6:06:27 AM.
To automate PBIX to PBIP conversion, install the PowerShell module PBIXtoPBIP_PBITConversion using Install-Module -Name PBIXtoPBIP_PBITConversion. Use PBIXtoPBIP_PBITConversion -PBIXFilePath "<
How To Perform Click Operation Using JavaScript Executor In Selenium Webdriver
8/1/2024 8:46:23 AM.
This article explores performing click operations on buttons, radio buttons, checkboxes, and links using JavaScript in Selenium WebDriver. It covers two methods: using JavaScript exclusively for findi
How To Perform Scroll Operations Using JavaScript Executor In Selenium WebDriver
7/30/2024 6:11:34 AM.
Learn how to perform scroll operations using JavaScript Executor in Selenium WebDriver. This guide covers integrating JavaScript with Selenium to handle dynamic web elements and complex scrolling scen
How To Highlight Web Elements Using JavascriptExecutor In Selenium WebDriver
7/30/2024 6:03:17 AM.
Learn how to highlight web elements in Selenium WebDriver using JavascriptExecutor. This guide covers how to use JavaScript to draw attention to elements on a webpage during automated testing, making
What Is Javascript Executor In Selenium WebDriver
7/30/2024 3:44:53 AM.
JavaScriptExecutor in Selenium WebDriver allows executing JavaScript code within a web browser. It's useful when WebDriver’s native commands fail, such as manipulating web elements or triggering b
How To Enter Text Into A Textbox Using JavascriptExecutor In Selenium WebDriver
7/30/2024 3:44:26 AM.
This guide covers the step-by-step process for utilizing JavaScriptExecutor to interact with web elements, automate text entry, and enhance your Selenium automation scripts. Perfect for improving you
Executing Commands with ADO.NET
7/22/2024 10:02:34 AM.
Explore how to use ADO.NET’s SqlCommand class for executing SQL queries and stored procedures in .NET applications. This guide covers setting up SqlConnection, using methods like ExecuteNonQuery, Exec
Setting Up Your First ADO.NET Project
7/22/2024 7:29:17 AM.
ADO.NET is a set of classes that expose data access services for .NET Framework programmers. It provides a rich set of components for creating distributed, data-sharing applications. This guide will w
Understanding the SQL Query Execution Order
7/22/2024 4:41:19 AM.
SQL (Structured Query Language) is essential for interacting with relational databases, and mastering its intricacies can significantly enhance your data querying skills. One of the fundamental aspect
Task Scheduling with System.Threading.Timer in .NET
7/21/2024 4:05:41 AM.
Efficient task scheduling is essential for many applications, whether you're building background services, automated tasks, or periodic data processing. In .NET, the System.Threading.Timer class p
SQL: Writing Efficient Queries
7/10/2024 12:27:40 AM.
Learn how to optimize SQL queries for better performance with our guide on "SQL: Writing Efficient Queries." Discover techniques for improving query speed, such as indexing strategies, query
Data Skew Problem and Solution in PySpark
6/26/2024 4:53:53 AM.
Explore the nuances of handling data skew issues in PySpark with effective strategies and solutions. Discover how to optimize performance through smart partitioning, efficient shuffle operations, and
LINQ vs PLINQ Method Syntax for Efficient C# .NET Data Processing
6/17/2024 5:09:08 AM.
LINQ (Language Integrated Query) and PLINQ (Parallel LINQ) are .NET frameworks for querying data. LINQ offers a declarative syntax for querying various data sources with single-threaded execution, whi
SQL Query Execution Understanding Process and Performance
6/11/2024 11:37:51 AM.
Understanding the SQL query execution order—from FROM and JOIN to WHERE, GROUP BY, HAVING, SELECT, ORDER BY, and LIMIT/OFFSET—is crucial for optimizing queries. Key techniques include indexing, optimi
Create Python Flask Web Application And Display SQL Records In Browser
6/7/2024 10:41:42 AM.
This tutorial guides you through creating a Python Flask web application to display SQL Server table records in a web browser. Starting with setting up a Flask web project in Visual Studio, you'll
Executing Dynamic SQL in SQL Server
6/7/2024 4:33:22 AM.
Dynamic SQL in SQL Server allows constructing and executing SQL statements at runtime, offering flexibility for complex queries. Learn its execution methods (EXEC and sp_executesql), advantages, limit
Execute SQL Server Stored Procedure With User Parameter In Power BI
6/7/2024 4:17:56 AM.
Sometimes there is a situation in which we need to get data by consuming SQL Server stored procedure. SQL Server stored procedure has parameters which we need to pass dynamically.
IQueryable vs IEnumerable
6/6/2024 7:48:45 AM.
IQueryable vs IEnumerable" explores the differences between these two interfaces in C#. IQueryable is suitable for building dynamic queries against a database, allowing deferred execution and opt
The 3D Concept: Discovery, Development, Delivery
6/6/2024 4:41:19 AM.
3D Concept Discovery, Development, and Delivery encompasses a comprehensive framework for innovation and product lifecycle. Discovery involves research, ideation, and exploration. Development focuses
Code Execution Process
6/5/2024 5:37:38 AM.
The code execution process involves compilation or interpretation, generating machine code or bytecode, loading into memory, and executing instructions. It includes steps like lexical analysis, parsin
Data Access Layer to execute Stored Procedures
6/5/2024 5:31:47 AM.
This article explains about executing a single stored procedure or batch of stored procedures from the application layer. As Data access layer completely decoupled from Application layer we just need
Executing Assembly Code in C#
6/3/2024 10:10:02 AM.
Learn how to integrate hardcore assembly code into managed .NET code using a VC++ DLL as an intermediary, enabling faster execution and better control over hardware. This article illustrates invoking
Mastering Technical Project Management: Strategies for Success
6/3/2024 9:41:18 AM.
Mastering Technical Project Management: Strategies for Success" delves into effective planning, execution, and leadership in technical projects. It covers tools, best practices, and risk manageme
Create Impactful Project Timelines Milestones for Entrepreneurs
6/3/2024 6:26:51 AM.
Creating Impactful Project Timelines and Milestones as an Entrepreneur" focuses on strategic planning for entrepreneurs to achieve their goals. It emphasizes setting clear timelines and defining
Do While Loop in C#
5/30/2024 4:45:42 AM.
Do-while loop in C# guarantees execution of code block at least once. Syntax: do { /* Code */ } while (condition);. Steps involve code execution, condition evaluation, loop continuation, and terminati
LINQ Query Syntax vs Method Syntax in Entity Framework
5/29/2024 4:39:33 AM.
Choosing between LINQ Query Syntax and Method Syntax in Entity Framework depends on various factors. Query Syntax often resembles SQL, making it more intuitive for those with SQL background, while Met
Performance Tip - For Vs Foreach In Microsoft .NET
5/16/2024 8:32:19 AM.
Consider loop efficiency: 'for' is faster for arrays, 'for each' for collections. Optimize performance by choosing the right loop type in .NET programming.
Introduction To ActionResult Method in MVC
5/16/2024 8:30:49 AM.
ActionResult in MVC determines the type of response sent to the client. It facilitates rendering views, redirecting, returning JSON or content, and handling file downloads, enhancing the flexibility a
Execute Multiple SQL Files On Single Go in SQL Server
5/3/2024 4:52:45 AM.
Are you utilizing SQL Server? Are deployments still handled manually by certain teams or DBAs? Is there no intention to incorporate CI/CD tools due to project or budget limitations. Nonetheless, there
How to Get All the Site Permission Levels in SharePoint 2013 Online Using REST API
5/1/2024 11:00:29 AM.
Learn how to utilize SharePoint 2013's REST API to access site permission levels remotely. Explore creating apps with NAPA Tool, handling cross-domain requests, executing CRUD operations, retriev
Deleting List Items in SharePoint 2013 Using REST API
4/25/2024 8:51:44 AM.
Learn how to delete list items in SharePoint 2013 effortlessly using the REST API. Utilizing SP.RequestExecutor, this guide walks you through the process of making cross-domain requests, initializing
Understanding the Python Global Interpreter Lock (GIL)
4/23/2024 11:06:43 AM.
The Python Global Interpreter Lock (GIL) is like a traffic cop inside your computer that makes sure only one thing happens at a time in Python, even if your computer has multiple processors.
Applied Reverse Engineering With OllyDbg
4/23/2024 8:25:53 AM.
This paper explores executable cracking using OllyDbg, focusing on reverse engineering without source code. It emphasizes Assembly Programming and tools like OllyDbg and CFF Explorer. Methods include
Execute Power Automate Workflow from SPFx
4/12/2024 8:16:37 AM.
Learn how to trigger Power Automate workflows from SPFx web parts, enabling programmatic event-driven actions like sending emails. Follow step-by-step instructions to build and execute the workflow, i
Enhance SQL Server Queries with OPTION(RECOMPILE) Hint
4/11/2024 6:56:49 AM.
This article provides an in-depth exploration of the OPTION(RECOMPILE) hint in SQL Server, offering developers and database administrators a thorough understanding of its functionality, practical appl
How To Execute SSIS Package Using SQL Job
4/11/2024 6:24:56 AM.
Execute SSIS packages seamlessly with SQL Jobs, leveraging SQL Agent to schedule tasks and manage execution, ensuring automation and reliability in data integration workflows.
Grant Execute Or View Permission To Stored Procedures In SQL Server
4/4/2024 8:53:54 AM.
In this article we’ll learn how we can grant execute permission or view permission on stored procedures. We’ll also see why users require explicit permission on stored procedures.
Comparing Execution Plans In SQL Server
4/3/2024 9:52:56 AM.
SQL Server Management Studio (SSMS) allows easy comparison of execution plans, aiding in identifying performance discrepancies. Users can compare .sqlplan files, highlighting differences in query oper
Temporary Tables vs Common Table Expressions in SQL Server
3/29/2024 11:07:01 AM.
In this article, we will learn what is Differences Between Temporary Tables and Common Table Expressions in SQL Server. Temporary tables and Common Table Expressions (CTEs) are SQL Server tools for da
Activate & Deactivate Account Record in Dynamic 365 with PowerShell
3/28/2024 10:51:22 AM.
InteractiveMode prompts user for login in Dynamics CRM, storing connection in $conn. BypassPluginExecution set to true avoids plugin execution.Set-CrmRecordState modifies record state in CRM using spe
What Is Date Correlation Optimization?
3/28/2024 6:27:07 AM.
OK So, I am doing some digging and peaking around again in SQL Server and came across a database option called Date Correlation Optimization Enabled = False. Honestly, I had no clue what it did, so I
Azure DevOps: How to execute a Pipeline Task using Conditions
3/22/2024 5:58:20 AM.
Learn how to optimize your Azure DevOps pipelines with tips and tricks for executing tasks conditionally. Utilize conditions to control task execution based on variables, branch policies, and other cr
Effective Communication Between Executable Files Using Shared Memory
3/19/2024 5:55:09 AM.
In a WPF (Windows Presentation Foundation) application, inter-process connectivity typically involves communication between different components or modules within the same application or between separ
Establishing Communication Between Executable Files Using TCP/IP
3/19/2024 5:29:21 AM.
WPF apps use various IPC methods like Named Pipes, WCF, TCP/IP Sockets. TCP/IP sockets offer cross-platform communication with advantages like reliability but face complexity and firewall issues. Step
Creating Functions Dynamically In JavaScript
3/18/2024 12:04:08 PM.
Learn to dynamically create functions in JavaScript, enabling flexible code generation and execution at runtime. Explore techniques for defining functions programmatically to enhance your application&
Understanding the .NET Internal Compile Process
3/11/2024 11:16:32 AM.
In this article, we will learn about CLR, Jit Compiler, and how the .NET compilation process works. Understanding the .NET internal compile process involves dissecting how source code is translated in
Leveraging Compiled Queries for Enhanced Performance in LINQ
3/9/2024 9:17:22 AM.
Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution pl
Decoding Expression Trees in C#
3/8/2024 1:21:48 PM.
This article contains the details of how to Decoding Expression Trees in C#.
Backup Your Source Code Daily Using C# Programming
3/6/2024 10:26:00 AM.
Discover an automated solution for daily source code backup with ease. This content introduces an executable file designed to streamline the backup process, ensuring your data is safeguarded without m
Test Initialize and Test Setup
3/5/2024 10:34:22 AM.
In this article, we will explain the uses of two very important attributes called TestInitialize and TestCleanup. Both attributes are useful at the time of unit test setup.
Dynamics 365 - Execute Multiple Requests
2/9/2024 6:57:33 AM.
Sometimes, in projects, we have a requirement where we need to undertake the actions at once on numerous records in the system over an entity. In this article, we will see how to achieve that.
Display an Application Notification in Dynamics 365 Using JavaScript
2/7/2024 10:12:52 AM.
Unlock Dynamics 365's in-app notifications with JavaScript. Activate via the Power Apps portal, create a web resource with code, and trigger on contact name change. Stay informed effortlessly.
Exploring the Dynamic Language Runtime (DLR) in C#
2/6/2024 7:24:17 AM.
The Dynamic Language Runtime (DLR) in C# enhances flexibility by enabling dynamic typing and execution of code. It fosters interoperability with languages like Python and JavaScript, promoting versati
What is Hoisting in JavaScript ?
1/17/2024 7:51:24 AM.
Explore the concept of hoisting in JavaScript, where variable and function declarations are moved to the top of their scope during the creation phase. Learn through examples and enhance coding skills.
Understanding Collection Types in C#
1/9/2024 4:35:29 AM.
Delving into collection types like IEnumerable and IQueryable in C# unveils their impact on data querying efficiency. While IEnumerable offers simplicity for in-memory operations, it might load unnece
Static Constructors in .NET
12/20/2023 11:22:44 AM.
Static constructors in .NET, a special breed in object-oriented programming. Unlike instance counterparts, they initialize once per type, controlling execution order and serving key roles in resource
Automated Way to Get Latest Pipeline Execution Details of Synapse
12/20/2023 7:16:11 AM.
Automated Way to Get Latest Pipeline Execution Details of Synapse. Automate the retrieval of the latest Azure Synapse pipeline execution details with a custom PowerShell module. Set up the environment
Automated Way to Get Latest Pipeline Execution Details of an Azure Data Factory
12/18/2023 4:44:50 PM.
Automated Way to Get Latest Pipeline Execution Details of an Azure Data Factory
How to Create and Execute Test Plan, Test Suite in Azure DevOps
11/15/2023 7:00:30 AM.
This article is a detailed guide on implementing design patterns using generic delegates in C#. It provides comprehensive examples for the Strategy, Observer, Command, and Template Method patterns.
Execute XPath expression Action in Desktop flow using Microsoft Power Automate
11/4/2023 8:39:52 AM.
Reading this article, you can learn how to use Execute XPath expression in Desktop flow using Microsoft Power Automate
ASP.NET Core MVC Request Life Cycle
10/30/2023 5:25:03 AM.
In this article you will learn about description of various stages of ASP.NET Core MVC Request Life Cycle.
Execute DOS Command in Desktop flow using Microsoft Power Automate
10/29/2023 6:07:55 AM.
Reading this article, you can learn how to Execute the DOS Command using Run Dos command actions with Desktop flow in Microsoft Power Automate.
PermissionSet Class In C#
10/20/2023 4:58:58 AM.
The PermissionSet class in C# is a fundamental component of .NET security that allows developers to encapsulate a set of permissions for code execution. It enables the definition and management of fin
How to Resolve PowerShell Script Execution Policy Error for Angular CLI ?
10/19/2023 11:56:30 AM.
How to Resolve PowerShell Script Execution Policy Error for Angular CLI suggests a guide for overcoming issues related to PowerShell script execution policies when working with the Angular CLI, a popu
Execution-Time Code Generator For C#
10/17/2023 8:45:35 AM.
The Common Language Runtime provides a new way of doing things. The compile-time world still exist, but it is also possible to build dynamic systems where new code is added by loading assemblies or ev
Synchronous Threading
10/11/2023 8:21:33 AM.
Well this article is basically to explain how to make threads run synchronously.
How To Call Stored Procedure In Entity Framework
10/10/2023 8:44:08 AM.
In this article, I will demonstrate how to call a stored procedure in entity framework? There are many different way to call stored procedure from entity framework.
How To Execute An Application In A Remote Application Domain
10/2/2023 9:03:50 PM.
This article explains executing an application in a remote application domain.Executing an application in a remote application domain involves creating a separate isolated environment within the same
CLR Execution Process
9/25/2023 4:00:15 AM.
Here you will see CLR Execution Process. The CLR which is the runtime environment for .Net, provides services such as Memory Management, Security Management, Exception Handling, and Cross language Int
How To Run And Execute C# Program Using Notepad
9/22/2023 9:54:11 AM.
In this article, you will learn how to run and execute C# programs, using Notepad.
Passing Table to a Store Procedure in SQL Server
9/15/2023 9:32:59 AM.
In this article, I described how to pass a table to a Stored Procedure parameter in SQL Server.
Compilation And Runtime Execution Of A C-Sharp Program
9/14/2023 5:17:03 AM.
C-Sharp (C#) is a strongly typed object-oriented programming language designed to give optimum composition of simplicity, expressiveness and performance.
Calling Any Stored Procedure In ADO.NET
9/10/2023 9:36:17 PM.
This one generic function can call any Stored Prodedure which take input parameters and return output parameters with the help of two-dimensions array. This is very helpful specially when you designin
Securing Infrastructure with VMware SaltStack
9/6/2023 6:10:46 AM.
Securing Your Infrastructure with VMware SaltStack: Best Practices and Considerations
Oracle Data Provider for .NET : Part III
9/5/2023 5:57:57 AM.
Oracle Data Provider for .NET (ODP.NET) is an implementation of a data provider for the Oracle database. ODP.NET uses Oracle native APIs to offer fast and reliable access to Oracle data and features f
Optimizing API Performance in ASP.NET Core Web API with MiniProfiler and Glimpse
9/1/2023 8:25:56 AM.
ASP.NET Core Web API's performance using tools like MiniProfiler and Glimpse. These tools are excellent for profiling and gaining insights into your application's performance, which can help y
Background Task Creation with Hosted Services and Workers
8/31/2023 8:22:02 AM.
In a web application, there are tasks that need to be performed in the background, such as sending emails, processing data, or performing regular maintenance. These tasks are often non-HTTP-related a
Learn Iteration Statements In C#
8/28/2023 10:40:11 AM.
In this article, we will learn about some iteration statements in C#.Iteration statements, also known as loops, are essential programming constructs that allow you to execute a block of code repeatedl
Executing Dynamic SQL Queries
8/25/2023 4:29:06 AM.
Dynamic SQL: Defining and Executing Queries
PL/SQL Control Statements in Oracle
7/27/2023 11:37:40 AM.
PL/SQL control statements are used to manage the flow of execution in Oracle's PL/SQL programming language. They enable developers to make decisions, iterate through data, and perform specific act
Streamlined Orchestration with VMware SaltStack: Automating Workflows
7/21/2023 7:19:23 AM.
This article focuses on SaltStack's orchestration features within the VMware ecosystem, highlighting its ability to streamline workflows, automate tasks, and coordinate complex operations across m
Execute PnP Powershell using Azure DevOps Pipeline
7/14/2023 12:02:39 PM.
This article demonstrates how to automate and execute PnP PowerShell using Azure DevOps Pipeline. It covers steps such as creating a repository, configuring the YAML pipeline, creating and uploading
Execute VB Script in Desktop flow using Microsoft Power Automate
6/8/2023 6:07:57 AM.
Reading this article, you can learn how to Execute the VBScript scripts using Run VBScript actions with Desktop flow in Microsoft Power Automate.
Execute JavaScript in Desktop flow using Microsoft Power Automate
6/6/2023 6:16:24 AM.
Reading this article, you can learn how to Execute the JavaScript scripts using Run JavaScript actions with Desktop flow in Microsoft Power Automate.
Execute PowerShell Script in Desktop flow using Microsoft Power Automate
6/4/2023 7:22:37 AM.
Reading this article, you can learn how to Execute the PowerShell scripts using Run PowerShell script actions with Desktop flow in Microsoft Power Automate.
Execute Python Script in Desktop flow using Microsoft Power Automate
5/31/2023 5:07:57 AM.
Reading this article, you can learn how to Execute the Python scripts using Run Python script action with Desktop flow in Microsoft Power Automate
How to Share and Install C# Application on Another Computer as executable file
5/29/2023 11:03:34 AM.
This article provides a comprehensive guide on installing, modifying, and uninstalling a C# application project as an executable (.exe) file in Visual Studio 2022. By following the step-by-step instru
How to Generate a Standalone Executable File from C# Project in Visual Studio 2022
5/29/2023 10:58:23 AM.
In this article, we will explore the process of generating a standalone executable file from a C# project in Visual Studio 2022. A standalone executable file allows you to distribute your application
What is Synchronous and Asynchronous Programming in Javascript
5/24/2023 10:45:00 AM.
Power Pages - Dynamic execution of long FetchXML without $batch
5/17/2023 9:52:33 AM.
Dynamic execution of long FetchXML without $batch
Plugins and Event Execution Pipeline in Dataverse
4/24/2023 5:51:02 AM.
Plugin is a custom event handler that executes in response to a specific event raised during processing a Dataverse operation. It is a custom business logic implemented using custom class as a Class L
Order of SQL Execution
4/16/2023 3:12:13 PM.
In this article we are going to learn about the Order of the SQL execution
SQL Server Execution Plans
3/10/2023 8:46:43 AM.
In this article, you will learn about SQL Server execution plans.