Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

whats the best way to 'clean' my data?

Status
Not open for further replies.

MattRichardsUK

Technical User
Dec 11, 2000
22
0
0
GB
I have a table that stores customer information, at present I do not store the customer title, initials and forenames as separate fields - they are stored as a single field, for example, “Mr”, “Mr & Mrs”, “Mr J” and “Mrs AD” are stored as a single field. I would like to split out this field into 3 separate fields, Title, Initial and Forename. What would be the best way to do something like this. I am using Oracle 9i and there are around 600,000 rows in my table.
thanks in advance
 
1. Add the new columns to the table
2. Write a script that processes each row in a cursor:
A. Extract the three fields
B. Value the new columns accordingly
C. Strip the values off the original field
D. Update the row

The tough part is the extract code. Are there always a Title and at least one Initial? There must be millions of possible combinations. Is this the code you are looking for?

[sup]Beware of false knowledge; it is more dangerous than ignorance.[/sup][sup] ~George Bernard Shaw[/sup]
Consultant Developer/Analyst Oracle, Forms, Reports & PL/SQL (Windows)
My website: www.EmuProductsPlus.com
 
yes there will always be a title and an initial. yes i think that is what i am looking for.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top