I searched and haven't found anything that shows how to do this.
I had a previous import process that brought int he double quotes from the txt file. I am now trying to clean up the table to get rid of all the doulbe quotes surrounding the "image type" in the imageType field.
ImageType "CT ABD AND PELVIS, 3 PHASE_" "CT ABD AND PELVIS, 3 PHASE_" "CT ABD AND PELVIS, 3 PHASE_" "CT ABD AND PELVIS, 3 PHASE_" "CT ABD AND PELVIS, 3 PHASE_" "CT ABD AND PELVIS, 3 PHASE_" "CT ABD AND PELVIS, 3 PHASE_" "CT ABD AND PELVIS, 3 PHASE_" "CT ABD AND PELVIS, 3 PHASE_"
I've tried these two queries but they dont get rid of the double quotes.
1) UPDATE DI_Image SET DI_Image.ImageType = ""
WHERE (((DI_Image.ImageType) Like "*" & Chr(34) & "*"));
2) Replace("Chr(34)", "", "")
Any help is apprecaited, thanks.