Hi,
Basically I have around 200 UPDATES that need to run, so from collum 'products' I need to change:
PC to DELL PC
Ipod to Apple Ipod
x another 200 updates.
Obviously that will take ages to run each one on there own. So I have tried to make another table to hold the original value, and the updated value:
UPDATE TABLE, tblFindReplaceWords SET TABLE.Products = Replace(
.[Products],[tblFindReplaceWords].[FINDWORD],[tblFindReplaceWords].[REPLACEWORD]);
But that keeps maxing out on me, running out of memory.
Is there another way to do it? Just like if product is "PC" change to "DELL PC" but for all require updates on 1 query?
Thanks
Basically I have around 200 UPDATES that need to run, so from collum 'products' I need to change:
PC to DELL PC
Ipod to Apple Ipod
x another 200 updates.
Obviously that will take ages to run each one on there own. So I have tried to make another table to hold the original value, and the updated value:
UPDATE TABLE, tblFindReplaceWords SET TABLE.Products = Replace(
But that keeps maxing out on me, running out of memory.
Is there another way to do it? Just like if product is "PC" change to "DELL PC" but for all require updates on 1 query?
Thanks