I want to remove the particular column from the csv file and load it into database using mlcp.
My csv file contains:
URI,EmpId,Name,age,gender,salary
1/Niranjan,1,Niranjan,35,M,1000
2/Deepan,2,Deepan,25,M,2000
3/Mehul,3,Mehul,28,M,3000
I want to use that URI column as the uri for the document and also that uri column should be skipped/removed in the inserted document.
How to do it??