6/21/2026 3:30:10 AM
|
| |
| slxdeveloper.com Community Forums |
|
| |
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss SQL Server or Oracle database administration related to SalesLogix databases. View the code of conduct for posting guidelines.
|
|
|
|
SQL Statement Help
Posted: 29 Nov 07 10:06 AM
|
Can anyone suggest a SQL statement that will remove the word 'Aficio' from the Product.Name field in the Product table globally?
Orig: Ricoh Aficio CL4000DN New: Ricoh CL4000DN
I have several products in the product table with the old name Ricoh Aficio CL4000DN and need to change them to the new name Ricoh CL4000DN, how can I do this? |
|
|
|
Re: SQL Statement Help
Posted: 30 Nov 07 4:35 AM
|
Use a Replace Statement similar to the following:
Update Product Set Name = Replace(Name, 'Aficio', '')
Should do the trick
Ray |
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|