S
Sorting in a Graph
What is the best way to improve performance on an update script? I have tried
indexing columns but the script is still too slow. How to structure script to
use an index to speed up update? Current script is:
UPDATE Conversion INNER JOIN ANLZ_t ON Conversion.Concate = ANLZ_t.concate
SET Conversion.Cost_Center = [anlz_t].[cost_ctr];
indexing columns but the script is still too slow. How to structure script to
use an index to speed up update? Current script is:
UPDATE Conversion INNER JOIN ANLZ_t ON Conversion.Concate = ANLZ_t.concate
SET Conversion.Cost_Center = [anlz_t].[cost_ctr];