Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
244 views
in Technique[技术] by (71.8m points)

mysql - How to simulate link server down?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...