I have the code below in a access query to update the JOb_ID fields that are blank,
This is approx 600,000 rows, and takes forever to run - i have to keep stopping the query.
What do i need to do to convert this, so i can run in SQL Server and not through access ?
Thanks in advance.
This is approx 600,000 rows, and takes forever to run - i have to keep stopping the query.
What do i need to do to convert this, so i can run in SQL Server and not through access ?
Thanks in advance.
Code:
UPDATE tblQCIntake INNER JOIN tblQCIntakeDetail ON (tblQCIntake.Entered_By = tblQCIntakeDetail.Enterd_By) AND (tblQCIntake.Input_Date = tblQCIntakeDetail.Input_Date) SET tblQCIntakeDetail.Job_ID = [tblQCIntake].[Job_ID]
WHERE (((tblQCIntakeDetail.Job_ID) Is Null));