qualcosa del tipo

SELECT DISTINCT Settore FROM
(
SELECT DISTINCT Settore FROM db1..tabella
UNION
SELECT DISTINCT Settore FROM db2..tabella
UNION
SELECT DISTINCT Settore FROM db3..tabella
)
T1