Hi - I am trying to export to a fixed-length file, and I am almost there. I get the file in fixed-length format, however I have double quotes on the far left and far right of the file now. The output looks like this:
"312 My Store 12112"
"991 Your Store 11200"
My statement is as follows:
export to C:\data.txt of DEL MODIFIED BY CHARDEL"" select cast(storenum as char(6)) || cast(desc as char(55)) || cast(zipcode as char(55)) from TableA;
I tried with a single double quote, but I receive an error message when attempting this.
"312 My Store 12112"
"991 Your Store 11200"
My statement is as follows:
export to C:\data.txt of DEL MODIFIED BY CHARDEL"" select cast(storenum as char(6)) || cast(desc as char(55)) || cast(zipcode as char(55)) from TableA;
I tried with a single double quote, but I receive an error message when attempting this.