I have the following delete query running and it's killing the memory :
delete from dbo.programselected where [email protected]
This is the execution plan
How can I fix this problem?
The following recommendations will help you in your SQL tuning process.
You'll find 3 sections below:
ALTER TABLE `programselected` ADD INDEX `programselected_idx_id` (`id`);
SELECT
1
FROM
dbo.programselected
WHERE
dbo.programselected.id = @p0