If I run the below query, I'm getting ORA-02019 connection description for remote database not found as the DBlink BLAH is not there.
SELECT * FROM DUAL@BLAH;
But if I put it in an anonymous block, its giving ORA-00942 table or view does not exist error.
BEGIN
SELECT * FROM DUAL@BLAH;
EXCEPTION
WHEN OTHERS THEN
NULL;
END;