Year: 2025
FileSplitter Tool – Splitting data file
update the following lines: set “inputFile=C:\path\to\your\input.txt”set “outputFolder=C:\path\to\output”set “linesPerFile=1000” and here is the bat file: @echo offsetlocal :: Set variablesset “inputFile=C:\path\to\your\input.txt”set “outputFolder=C:\path\to\output”set “linesPerFile=1000” :: Create output directory if it doesn’t existif not exist “%outputFolder%” (mkdir “%outputFolder%”) :: Run PowerShell to split the filepowershell -Command ^“$inputFile = ‘%inputFile%’;” ^“$outputFolder = ‘%outputFolder%\’;” ^“$linesPerFile = %linesPerFile%;” ^“$i = 0;”…
Supported data type in Database
The supported data types are the following: float, double, integer, int, tinyint, smallint, char, character, string. date, time Unfortunately bit data type is not supported. Even if it is registered as INT or SMALLINT, the DQL to retrieve data from the registered table will fail with the reported error. If you cannot modify the source…
ImageTrust: When trying to use the opener the error message The application did not pass the security self-test and will stop now stop! shows up and the application will not start.
Root Cause The Windows Authenticode Signature Verification is enabled in the system. The opener.exe cannot pass this verification because it contains the URL of the Server, and every time it is downloaded from a different URL the the .exe file is updated with the new URL. This URL is used to download and open the…