In SQL Server, I have created a link server to MySql database.
When the link server is queried from SQL Server and if the MySql server is down, we want to receive an alert. I have no control over the MySql database(link server points to) and without actually stopping the MySql server, how to simuate the database server down(MySql).
I tried to simulate the server down by providing invalid name for link server("IncorrectLinkServerName") but do not think this is a true test for server down. Is this correct way to validate server down? If there is a better way to test this, please share.
BEGIN TRY
EXEC sp_executesql N'EXEC sp_testlinkedserver [IncorrectLinkServerName];';
END TRY
BEGIN CATCH
SELECT 'Database down alert' AS Result
END CATCH
question from:
https://stackoverflow.com/questions/65650372/how-to-simulate-link-server-down 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…