Submitted Questions

  • Find out the Number of Columns in Flat File

    In ETL testing if the src is flat file, then how will you verify the data count validation?

    Divya Jain

    • May 16th, 2017

    Say file Name: abc.txt and delimited with a comma(,)

    answer:
    hear -1 abc.txt | awk -F "," {print $NF}

    Shivnath Rojatkar

    • May 12th, 2017

    Using wc command in UNIX, you can check the count of records.