I have a flow Getfile -> PutDatabaseRecord and I have a CSV with fields as follows :
Module No, Pos, Machine Name, Machine Type
I want to ingest the value for these fields in my database table 'Test' that has fields describes as:
Module_No,Pos,Machine_Name,Machine_Type
So here is a change in fields name. What setting to set in the Putdatabaserecord to successfully ingest the data into mysql table.
Right now I am getting error as Module No cannot be null. How can I fix this change of header names in the original CSV and MySQL table. Thank you!