Hi:
I'm converting data from Btrieve, and, being already in SQL Server 2000 through ODBC, I try to trim char field:
Update Source
set [Last_Name] = rtrim([Last_Name])
SQL reports success, but doesn't do the thing. This statement, though, is working:
Select rtrim([Last_Name]) into #temp from Source
I have huge tables that hard to select into their replicas only to solve the trimming problem.
Any suggestions?
Thanks.
Andrei
I'm converting data from Btrieve, and, being already in SQL Server 2000 through ODBC, I try to trim char field:
Update Source
set [Last_Name] = rtrim([Last_Name])
SQL reports success, but doesn't do the thing. This statement, though, is working:
Select rtrim([Last_Name]) into #temp from Source
I have huge tables that hard to select into their replicas only to solve the trimming problem.
Any suggestions?
Thanks.
Andrei