I'm working in a modified version of Sybase 10 that doesn't have the stuff, replace or str_replace functions. I need to replace part of string in a number of records.
Are there any creative ways to program around this, so I don't have to do them all manually?
Example:
UPDATE status
SET description = replace(description,'abc','def')
WHERE name = 'test'
EDIT: I've found that we have NO string-manipulation functions and I'll have to do exports and imports to do bulk string changes. I'll leave this question up so others who aren't quite restricted as I am will be able to find the answers.