can you please help with Groovy or Java code to check the server reachability in microsoft sql for 3 attempts in the interval of 30 minutes.I have developed a code to execute query in msql.
But i need to check the failure condition If server is not reachable try for 3 attempts in the interval of 30 minutes.
I have shared the sample groovy code that i used to connect with Sql server and run the query .
def username="abcc"
def password="sdsadsdsad"
def result=""
def driver = Class.forName('com.microsoft.sqlserver.jdbc.SQLServerDriver').newInstance()
def props = new Properties()
props.setProperty("user", username)
props.setProperty("password", password)
def conn=driver.connect("jdbc:sqlserver://dbservername:port;databaseName=datatablename;integratedSecurity=true;authenticationScheme=NTLM", props)
def sql = new groovy.sql.Sql(conn)
def query="select top(10) taskid from aspn.task_history"
sql.query(query)
{ resultSet ->
while (resultSet.next())
{
println resultSet.getString("taskid")
}
}
conn.close()