Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

interface output file : tab limited vs flat file with fixed length

Former Member
0 Kudos

hey guys,

any idea on difference b/w to file type : flat file with fixed length or tab limited file

thanks

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Tab Delimited:

Two Field are seperated by a TAB

eg. SANJAY SINGH

First field is First Name and Second is Sir Name.

Nth field will be after N -1 tab

Fixed Length:

Every field has a fixed starting position and length

eg. SANJAY SINGH

Here First field start from Position 1 and has lenght 10 and 2nd field start from 11th postion and has lenght 10.

Fixed Length -> The lenght of each field is fixed, while in tab delimited the lenght of field is not fixed but we know it ends when the Seperatot (Tab) is encountered.

1 REPLY 1

Former Member
0 Kudos

Tab Delimited:

Two Field are seperated by a TAB

eg. SANJAY SINGH

First field is First Name and Second is Sir Name.

Nth field will be after N -1 tab

Fixed Length:

Every field has a fixed starting position and length

eg. SANJAY SINGH

Here First field start from Position 1 and has lenght 10 and 2nd field start from 11th postion and has lenght 10.

Fixed Length -> The lenght of each field is fixed, while in tab delimited the lenght of field is not fixed but we know it ends when the Seperatot (Tab) is encountered.