I want to know how can we add more data through new csv file to the existing database. I have written an example of the issue I am facing. Please help:
I have a stardog database that I have created by importing csv file. Let's say the csv file is:
Car_id,Car_name,Car_owner
23 , Ford , James
31 , BMW , Dane
14 , Fiat , Mary
The above csv file create three instances of class car with IRI as Car_id
Now, I want to add more details about those cars with a new csv file in the same database. New csv is:
I want to add this new data such that the previous 3 nodes with Car_id IRI has now additional details of Car_Capacity and Car_age, without creating again 3 new nodes.
So, finally I want these 3 Car_id IRI to have 4 attributes : Car_Name, Car_owner , Car_Capacity and Car_age.
Hi Serge,
Thanks, this solved my doubt. Previously, I am adding the csv file through Stardog studio. There is no option of attaching properties file in studio. After using command line, it works fine. Thanks once again.