This issue was found in a troubleshooting session in one batch job with one company. The company runs its SSIS using a third party enterprise software by calling dtexec command prompt utility (dtexec.exe) and passes the arguments from its … [Continue reading]
How to Create Kofax TotalAgility (KTA) SDK API in ASP.NET
Overview Kofax TotalAgility (KTA) is a Smart Process Application (SPA) platform that transforms and simplifies business interactions. Many people thinks Kofax TotalAgility as merely a document capture software but it actually does more than just … [Continue reading]
How to Resolve ReferenceManagerPackage Error in Visual Studio 2019
If you encounter this error (see below) when you try to Add Reference in Visual Studio: You can take a look at the ActivityLog.xml file, but most of the time it's not necessary. Just for the sake of this example, let's open it … [Continue reading]
F#: Seq, List, Array, Map, Set. Which One to Use?
As part of continuing to learn F# for C# developers, there are several F# Collection Types a programmer must know with their functions. F# Collection Types Seq List Array Map Set After learning the F# collection types, the big … [Continue reading]
How to Get Table Definition in SQL Server
Whenever you need to pull a quick definition of a table in SQL Server. Here's the SQL command (T-SQL) to get the table definition in a database: The result would be something similar to this: COLUMN_NAME DATA_TYPE … [Continue reading]