This is the problem i am facing right now.
I am new to uipath and can’t insert data from excel to a table in my database.
i have used insert and configured everything correctly in it by linking it with my database.
but after running the process it is giving me the error like;
You were almost done
The reason is the column name in both DATATABLE and TABLE in DATABASE should be same
—and make sure that there is no space in between the column names in our DATATABLE
if these corrections were made there would no issues
Column name in the datatble is the issue
Kindly check that whether they are same as per in database table and make sure that there is no space between column name in both database and n datatable
Well now it is working perfectly. It was my mistake regarding the column name.
Well now if i do data scrapping from a website, then can i insert the extracted datatable from the site to the database table using the connect and insert activity because then i will only have concerns with my database table column names and not any excel or CSV file column names, or do i have to do anything in between that?
I would suggest rather changing the column name of database column we can change the column name of datatable that we extract using this expression Yourdatatablename.Columns(“yourcolumnname”).ColumnName = “Newcolumnname”
Fine
i would suggest use only _ (underscore) to be used in columnname as it would lead to any mismatch, kindly avoid the other special characters unless needed for
Cheers @diptojyotidutta