Hi,
What is the update statement I would use to clear out spaces out of fields? I have a database with over 2M records, and all of the fields of data have extra spaces. I have tried:
Update pages
set index1 = RTrim(index1)
and I just keep getting a TimeOut error. Is the above the correct syntax? And if so how do i get aroung the timeout error.
Each record is entirely unique, and all the fields of a record have different values. So I cant do a subset of records. Can anyone help.
What is the update statement I would use to clear out spaces out of fields? I have a database with over 2M records, and all of the fields of data have extra spaces. I have tried:
Update pages
set index1 = RTrim(index1)
and I just keep getting a TimeOut error. Is the above the correct syntax? And if so how do i get aroung the timeout error.
Each record is entirely unique, and all the fields of a record have different values. So I cant do a subset of records. Can anyone help.