Hello,
I am a front-end developer writing a C# application to export data from an oracle stored procedure into a text file for later importing into a different oracle database. The data will be loaded with SQL Loader (sqlldr) and I am trying to understand that tool's abilities so that I can output the file in a format that will be easy to process with SQL Loader.
I am unsure of how to handle line breaks in the column data. Some of the columns are descriptions, and may contain line breaks. I cannot find an option in SQL Loader to handle the possibility of a non-constant number of line breaks in the data.
It does appear that I could use a sentential value to terminate or start a record in the text file, then use CONTINUEIF. Then that presents me with the issue of handling the sentential value within the data.
I am hesitant to just strip out the breaks because, while not critical for this specific application, I do not want to lessen the fidelity of the data.
Any ideas on how I can approach this?
Thanks!