hi All,
I am running the following code:
2 tables, each 35 million rows. Both columns [regmark] are indexed, unique.
The query has been running for almost 3 hours, does this seem correct?
Also, what are the implications if I need to stop this query?
Thanks in advance.
micanguk
I am running the following code:
Code:
update dcd SET dcd.gvw = dcd1.gvw
FROM dcd
INNER JOIN dcd1 ON dcd.[regmark] = dcd1.[regmark]
2 tables, each 35 million rows. Both columns [regmark] are indexed, unique.
The query has been running for almost 3 hours, does this seem correct?
Also, what are the implications if I need to stop this query?
Thanks in advance.
micanguk