When calling a stored procedure from vb.net, is there a default SQL timeout if no timeout is specified in the connection string? I am not sure if there is a CommandTimeout in the connection CommandTimeout , but I am looking through all the possibilities.
Example, if no results after 30 seconds (or more):
`System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.`
SQL Profiler says that the script starts and ends after 30 seconds when the program time ends.
The T script runs without errors after about 1 minute 45 seconds on the SQL server.
source share