Property | S/T | Description |
---|---|---|
AlternateFieldSeparator | S | Most data files have only one field separator between all the fields. However, it is possible to have more than one field separator. If your source file has one field separator between some fields and a different separator between others, you can specify the second field separator here. Otherwise, leave this set to None (the default). To select an option other than the default, click AlternateFieldSeparator. Then click the arrow to the right of the box to choose from the list of available separators. To specify a field separator that isn't on the list, type it here. |
AutomaticStyling | S | Changes the way the integration platform reads or writes ASCII data. By default, AutomaticStyling is set to false, causing all data to be read or written as Text. When you change the setting to true, the integration platform formats particular data types, such as numeric and date fields, automatically. During transformation of ASCII source files, autostyling ensures that a date field in the source file is formatted as a date field in the target file, and not as character or text data. If your source file contains zip code data, you may want to leave AutomaticStyling set to false so that leading zeros in some zip codes in the eastern US are not deleted. For an ASCII target file, if you set FieldDelimitStyle to Text, you must also set AutomaticStyling to true so that delimiters are placed around only the nonnumeric fields. |
CodePage | ST | Translation table that specifies which encoding to use for reading and writing data. The default is ANSI, the standard in the US. |
EmptyFieldsNull | S | Treats all empty fields as null. |
Field1IsRecTypeId | S | If the first field of each record in your source file contains the Record Type ID, you can select true for this property and each record is treated as a separate record type. Within each record, field names derived from the Record Type ID are automatically generated for each field. For details, see Field1IsRecTypeId. |
FieldDelimitStyle | T | For delimited ASCII target connectors, this option determines whether the specified FieldStartDelimiter and FieldEndDelimiter are used for all fields, only for fields containing a separator, or only for text fields: • All – Places the delimiters specified in FieldStartDelimiter and FieldEndDelimiter before and after every field. Default setting is All. For example: "Smith","12345","Houston" • Partial – Places the specified delimiters before and after fields only where necessary. A field that contains a character that is the same as the field separator will have the field delimiters placed around it. A common example is a memo field that contains quotes within the data: "Customer responded with "No thank you" to my offer". • Text – Places delimiters before and after text and name fields (non-numeric fields). Numeric and date fields have no FieldStartDelimiter or FieldEndDelimiter. For example: "Smith", 12345,"Houston", 11/13/04 • Non-numeric – Places delimiters before and after all nonnumeric types, such as date fields. Non-numeric delimits date fields, while text does not. |
FieldEndDelimiter | ST | Most delimited ASCII files have beginning-of-field and end-of-field delimiters. The default delimiter is a quotation mark. This option is available for source files and target files that do not have delimiters. To read from or write to a file with no delimiters, set FieldEndDelimiter to none. |
FieldSeparator | ST | A delimited ASCII file is assumed to have a comma between each field. To specify another field separator, click FieldSeparator to select one from the list. To specify a field separator that is not on the list and is a printable character, highlight the CR-LF and then type the character. If the field separator is not a printable character, replace CR-LF with a backslash, an X, and the hexadecimal value for the separator. |
FieldStartDelimiter | ST | Delimited ASCII files often have beginning-of-field and end-of-field delimiters. The default delimiter is a quotation mark. To read from or write to a file with no delimiters, set FieldStartDelimiter to none. |
Header | ST | In some files, the first record is a header record. For source data, you can remove it from the input data and cause the header titles to be used automatically as field names. For target data, you can cause field names in your source data to automatically create a header record in your target file. To identify a header record, set Header to true. The default is false. Note: If your target connector is ASCII (Delimited) and you are appending data to an existing file, leave Header set to false. |
MaxDataLen | T | Specifies the maximum number of characters to write to a field. When set to zero (the default), the number of characters written to a field is determined by the length of the field. If you set this value to a number other than zero, data may be truncated. |
NullIndicator | ST | Special string used to represent null values. Select a predefined value or type any other string. • Target – When writing a null value, the contents of the null indicator string are written. • Source – A check is made to see if the null indicator is set. If it is set, the data is compared to the null indicator. If the data and the null indicator match, the field is set to null. |
NumericFormatNormalization | S | When set to true, this property handles thousands-separators according to usage for locale when numeric strings are converted to numeric type. This property overrides any individual field settings. Supported in 9.2.2 and later. Default is false. |
RecordFieldCount | S | If your source file has field separators but no record separator or uses the same separator for both fields and records, follow these steps: 1. Set the RecordSeparator (most likely a blank line). 2. Leave the AlternateFieldSeparator option blank. 3. Enter the number of fields per record for RecordFieldCount. 4. The default value is zero. |
RecordSeparator | ST | Most delimited ASCII files have a carriage return-line feed (CR-LF) between records. To use a different character, click the RecordSeparator cell, then click the arrow and select one from the list. The SystemDefault setting enables the same transformation to run with CR-LF on Windows and with LF on Linux systems without having to change this property. To use a record separator that is not listed and is a printable character, highlight CR-LF and enter the character. For example, to use a pipe (|) character, enter a pipe from the keyboard. If the record separator is not a printable character, enter escape CR-LF with a backslash, an X, and the hexadecimal value for the separator. |
StartOffset | S | If your source data file starts with characters that need to be excluded from the transformation, set the StartOffset option to specify at which byte of the file to begin. The default value is zero. The correct value may be determined by using the Hex Browser. Note: This property is set in number of bytes, not characters. |
StripLeadingBlanks | ST | Leading blanks occur in ASCII source files by default. To delete them, set StripLeadingBlanks to true. Leading blanks are removed from ASCII target files by default. To retain them, set StripLeadingBlanks to false. |
StripTrailingBlanks | ST | Trailing blanks occur in ASCII source files by default. To delete them, set StripTrailingBlanks to true. Trailing blanks are removed from ASCII target files by default. To retain them, set StripTrailingBlanks to false. |
StyleSampleSize | S | Allows you to set the number of records (starting with record 1) that are analyzed to set a default width for each source field. The default value for this option is 5000. You can change the value to any number between one and the total number of records in your source file. As the number gets larger, more time is required to analyze the file, and it may be necessary to analyze every record to ensure that no data is truncated.To change the value, click StyleSampleSize, highlight the default value, and type a new one. |
TransliterateIn | T | Specifies a character or set of characters to be filtered out of the source data. For any character in TransliterateIn, the corresponding character from TransliterateOut is substituted. If there is no corresponding character, the source character is filtered out completely. TransliterateIn supports C-style escape sequences such as \n (new line), \r (carriage return), and \t (tab). |
TransliterateOut | T | Specifies a character to be substituted for another character from the source data. For any character in TransliterateIn, the corresponding character from TransliterateOut is substituted. If you wish the source character to be filtered out completely, leave this field blank. If there are no characters to be transliterated, leave this field blank. TransliterateOut supports C-style escape sequences such as \n (new line), \r (carriage return), and \t (tab). |
Names_01 | Names_02 | Names_03 | Names_04 | Names_05 | Names_06 | Names_07 |
Names | Arnold | Benton | Cassidy | Denton | Exley | Fenton |