Hi, I am trying to process a Fixed length flat file using schema. I have build the schema and it is parsing all the values correctly. But in the flat file schema editor, I do not see the “record seperator”. So the string output comes as a single string rather then carriage returned string.
I think I can better explain it with an example.
Say my output record length required is 10
So my output string looks like this.
AAAAAAAAAABBBBBBBBBBCCCCCCCCCCDDDDDDDDDD
Where as the output that I want is
AAAAAAAAAA
BBBBBBBBBB
CCCCCCCCCC
DDDDDDDDDD
I know this can be done by a simple string operation as well. But is there a way to define this in schema and directly get the output string as required.
I have defined the record length in my schema as 10.
Thanks for your help.
Akshay