Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have an oracle table with 66531 rows of addresses with no postal codes and I have a csv file of 66531 rows of postal codes, I want to update the oracle table rows to have the postal codes from the csv file. I originally transferred the addresses from a SQL Server table or Oracle table is there a way i can also include the postal codes so they are added with the SQL Server table transfer?
This is what I have tried:
I am pretty sure it is trying to make new rows in the oracle table with just postal codes, how can I do it so it adds the postal codes to pre existing rows?
Hi,
It will be a risky proposition to update the postcode just based on row number of earlier data. You will need some other data like full address to match with incoming postcode data. If you do not have any other option to match with old data and new data, its better to standardize the data using a third party call (like using Google or Experian components in Talend) or you will have to refresh the full address again from source with postcode.
Warm Regards,
Nikhil Thampi
Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved
I have an oracle table of 66531 rows of addresses that have null postal codes, I need to add postal codes to those rows from the csv file that I have that has 66531 postal codes - the data is just random postal codes, I am just supposed to add random postal code data to the oracle table addresses.
If I added a corresponding address_id column in the csv file to match the primary keys of the oracle table would I be able to connect the data by that way?
I will try that out as soon as I can add address_id to the csv file thanks. Is there a way I can add a column to the csv file that auto increments to make the address_id?