PB2019R3, b2703
Windows 10 64 bit platform
We have a utility that performs an IMPORTFILE. If the file is too large, THEN it opens the source file and does a FileReadEx of the data line by line into the DW.
These source files are LARGE, and this process takes forever - and sometimes crashes the utility.
I want to speed this up and thought about STREAMING the data into the DW.
Is that possible? Anyone know how to do this?
FIleOpen (streammode)
FileReadEx(file#) into a blob
FileWriteEx () <--- ???
The source file is 210 bytes of text data with no embedded NULLs.
The end result should be the text data from the source file in the DW.
Thank You.