You can update 6 different fields in an update statement, but you have to repeat the TRANSLATE or REPLACE Function for each of these fields.
With TRANSLATE you can convert a character into a different character --> Translate(Field1, ' ', '-')
With REPLACE you can remove a character --> Replace(CustName2, '-', '')
Update YourTable
Set Field1 = Translate(Field1, ' ', '-'),
Field2 = Translate(Field2, ' ', '-'),
....
Where ...
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
"Shoot for the moon, even if you miss, you'll land among the stars." (Les Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them and keeping them!"
„Train people well enough so they can leave, treat them well enough so they don't want to.“ (Richard Branson)
-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Alan Shore via MIDRANGE-L
Sent: Mittwoch, 27. Januar 2021 18:19
To: midrange-l@xxxxxxxxxxxxxxxxxx
Cc: Alan Shore <ashore@xxxxxxxx>
Subject: Using SQL TRANSLATE to update multiple character fields in a file
Hi everyone
We are on V7r3
To cut a LOOOOOONG story short - I need to update a number of fields in one file to remove the pipe (|) character from each of the character fields in the file Can I replace it with null, in other words - actually, deleting the character, or must I in fact replace it with space?
I believe TRANSLATE is the way to go, because I suspect there may be other characters that will need to be replaced, as time goes on Here is the scenario Lets say the record has 6 character fields in the file (FILE01)
FIELD1
FIELD2
FIELD3
FIELD4
FIELD5
FIELD6
My question is:-
Can I update the file - using ONE sql command, for ALL 6 fields?
As always - all replies gratefully accepted
Alan Shore
E-mail : ASHORE@xxxxxxxx<mailto:ASHORE@xxxxxxxx>
Phone [O] : (631) 200-5019
Phone [C] : (631) 880-8640
'If you're going through hell, keep going.'
Winston Churchill
The Nature’s Bounty Co. is now The Bountiful Company! Our email address will be changing from @nbty.com to @bountifulcompany.com. Please update your email address book so that important communications are not interrupted.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com
As an Amazon Associate we earn from qualifying purchases.