File Format Validation

Description

This validation step verifies the file's structure and indentation. If the average of characters per line of all the entry code is greater than the maximum allowed, a window with a warning is displayed like the next one:

CREATE TABLE LongLines(

    COL1                                                                                                                                                                                                                                                                                                                                                                                                                                                    VARCHAR(22331) -- this line has more than 500 characters
);

Please scroll to the right to watch all the sample code

Last updated