Here is my replace query and I need to run this on every column in my
table. Right now I manually enter the column name (_LANGUAGES_SPO KEN)
but this is time consuming and would like to automate this process as
much as possible.
Update PROFILE
SET LANGUAGES_SPOKE N = replace(cast(_L ANGUAGES_SPOKEN as
nvarchar(255)), char(13)+char(1 0),':')
Thanks,
JP
table. Right now I manually enter the column name (_LANGUAGES_SPO KEN)
but this is time consuming and would like to automate this process as
much as possible.
Update PROFILE
SET LANGUAGES_SPOKE N = replace(cast(_L ANGUAGES_SPOKEN as
nvarchar(255)), char(13)+char(1 0),':')
Thanks,
JP
Comment