In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
CREATE INDEX example_table2_idx_id ON dbo.Example_Table2 (id);
SELECT
LOWER(CONVERT(VARCHAR(32),
CONVERT(VARBINARY(32),
r.id),
2)) AS id,
r.id AS respondentid,
'new' AS qtype,
r.email,
r.language,
'Y' AS is_online,
r.createdDate AS time,
r.createdDate AS date_sent,
r.state AS state,
r.sourceID AS sourceid,
req.id
FROM
[Example_Server1].[Example_Database1].[dbo].Example_Table1 AS r
LEFT JOIN
[Example_Server2].[Example_Database2].[dbo].Example_Table2 req
ON LOWER(CONVERT(VARCHAR(32),
CONVERT(VARBINARY(32),
r.id),
2)) = req.id
WHERE
req.id IS NULL