What is "Connect Timeout" in sql server connection string? - sql

I have the following connection string(get from a property of sql server):
Data Source=(LocalDB)\v11.0;AttachDbFilename=C:\Users\myUser\Desktop\adoBanche\Banche\bin\Debug\banche.mdf;Integrated Security=True;Connect Timeout=30
I don't understand what mean Timeout=30. Someone could explain what means?

That is the timeout to create the connection, NOT a timeout for commands executed over that connection.
See for instance http://www.connectionstrings.com/all-sql-server-connection-string-keywords/
(note that the property is "Connect Timeout" (or "Connection Timeout"), not just "Timeout")
From the comments:
It is not possible to set the command timeout through the connection string. However, the SqlCommand has a CommandTimeout property (derived from DbCommand) where you can set a timeout (in seconds) per command.
Do note that when you loop over query results with Read(), the timeout is reset on every read. The timeout is for each network request, not for the total connection.

Connection Timeout=30 means that the database server has 30 seconds to establish a connection.
Connection Timeout specifies the time limit (in seconds), within which the connection to the specified server must be made, otherwise an exception is thrown i.e. It specifies how long you will allow your program to be held up while it establishes a database connection.
DataSource=server;
InitialCatalog=database;
UserId=username;
Password=password;
Connection Timeout=30
SqlConnection.ConnectionTimeout. specifies how many seconds the SQL Server service has to respond to a connection attempt. This is always set as part of the connection string.
Notes:
The value is expressed in seconds, not milliseconds.
The default value is 30 seconds.
A value of 0 means to wait indefinitely and never time out.
In addition, SqlCommand.CommandTimeout specifies the timeout value of a specific query running on SQL Server, however this is set via the SqlConnection object/setting (depending on your programming language), and not in the connection string i.e. It specifies how long you will allow your program to be held up while the command is run.

Connect Timeout=30 means, within 30second sql server should establish the connection.other wise current connection request will be cancelled.It is used to avoid connection attempt to waits indefinitely.

How a connection works in a nutshell
A connection between a program and a database server relies on a handshake.
What this means is that when a connection is opened then the thread establishing the connection will send network packets to the database server. This thread will then pause until either network packets about this connection are received from the database server or when the connection timeout expires.
The connection timeout
The connection timeout is measured in seconds from the point the connection is opened.
When the timeout expires then the thread will continue, but it will do so having reported a connection failure.
If there is no value specified for connection timeout in the connection string then the default value is 30.
A value greater than zero means how many seconds before it gives up e.g. a value of 10 means to wait 10 seconds.
A value of 0 means to never give up waiting for the connection
Note: A value of 0 is not advised since it is possible for either the connection request packets or the server response packets to get lost. Will you seriously be prepared to wait even a day for a response that may never come?
What should I set my Connection Timeout value to?
This setting should depend on the speed of your network and how long you are prepared to allow a thread to wait for a response.
As an example, on a task that repeats hourly during the day, I know my network has always responded within one second so I set the connection timeout to a value of 2 just to be safe. I will then try again three times before giving up and either raising a support ticket or escalating a similar existing support ticket.
Test your own network speed and consider what to do when a connection fails as a one off, and also when it fails repeatedly and sporadically.

Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error.
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.connectiontimeout%28v=vs.110%29.aspx

Maximum time between connection request and a timeout error. When the client tries to make a connection, if the timeout wait limit is reached, it will stop trying and raise an error.

Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error.
(MSDN, SqlConnection.ConnectionTimeout Property, 2013)

By default connection timeout is 240 but if you are faceing the problem of connection time out then you can increase upto "300"
"Connection Timeout=300"

Related

Odd SQL connection error received when under high load

I can connect to my MSSQL 2017 database via JDBC just fine, however when the database server is under heavy load, I get this connection error when running a query.
Have I simply maxed out what the server can do?
Maybe this is a NIC related issue?
Any performance settings adjustments to make?
com.microsoft.sqlserver.jdbc.SQLServerException:
The TCP/IP connection to the host 192.168.1.150, port 1433 has failed.
Error: "Connection timed out: no further information.
Verify the connection properties. Make sure that an instance of
SQL Server is running on the host and accepting TCP/IP connections
at the port. Make sure that TCP connections to the port are not blocked by a firewall.".
MS SQL Server have problems when are too many connections and worker threads from clients.
You can check current count of connections.
Select Count(*) FROM MASTER.DBO.SYSPROCESSES
There are dependencies between CPU cores and worker threads.
https://learn.microsoft.com/en-us/sql/database-engine/configure-windows/configure-the-max-worker-threads-server-configuration-option?view=sql-server-2017
Max worker threads on your host.
Select max_workers_count from sys.dm_os_sys_info
Also you can see wait types THREADPOOL in TOP.
SELECT TOP 100
[Wait type] = wait_type,
[Wait time (s)] = wait_time_ms / 1000,
[% waiting] = CONVERT(DECIMAL(12,2), wait_time_ms * 100.0
/ SUM(wait_time_ms) OVER())
FROM sys.dm_os_wait_stats
WHERE wait_type NOT LIKE '%SLEEP%'
ORDER BY wait_time_ms DESC;
About waits threadpool:
https://www.sqlskills.com/help/waits/threadpool/
Check this version.
Or I don't understand situation and you have problem after X seconds after connection and work query.
Check query timeout in your application via the connection string something like "queryTimeout=..."

Why does NHibernate session.Query<T>().Delete() timeout?

I discovered that since NHibernate 5.0 I can call the following code to delete all records of a table:
session.Query<T>().Delete();
It executes the code on the database without copying it across the network, which should improve performance a lot.
But this query times out.
I get the following error:
Execution Timeout Expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
I've tried setting the Connection Timeout setting in my connectionstring to 0 and to 3600, but it makes no difference.
My table only has about 200 records. But one column is a base64 encoded pdf, so it is quite big and the query would take a few seconds.
What else can I try?
It sounds like you need to increase the command timeout.
Note that there is a difference between connection timeout and command timeout.
You can set the default command timeout (in seconds) for ADO.NET commands created by NHibernate using the command_timeout NHibernate session configuration property. There are multiple ways to do that depending on what method you use to configure NHibernate. Here are the basics: http://nhibernate.info/doc/nhibernate-reference/session-configuration.html

Restart SQL Server if I change max pool size?

If I change "Max Pool Size" in my connection string, do I need to restart SQL Server for the change to take effect?
When a connection is first opened, a connection pool is created based on an exact matching algorithm that associates the pool with the connection string in the connection. Each connection pool is associated with a distinct connection string. When a new connection is opened, if the connection string is not an exact match to an existing pool, a new pool is created.
http://msdn.microsoft.com/en-us/library/8xx3tyca(v=vs.110).aspx

ADO.net connection timedout before the connection timeout value

We have a WCF Data Service connecting to a SQL Server 2008 R2 database. When the service is trying to access data from the database the connection is getting timed out before the Connection Timeout value and the timeout exception is thrown.
This is the connection string:
Data Source=XXXX;Initial Catalog=XXXX;MultipleActiveResultSets=False;
Connection Timeout=80;Integrated Security=false;User ID=XXX;Password=XXX
In this connection string, even though we gave 80sec as the Connection Timeout, the connection gets timed out at around 700ms and throws below exception
System.Data.SqlClient.SqlException (0x80131904): Timeout
expired.
The timeout period elapsed prior to completion of the
operation or the server is not responding.
This is happening on some queries only.
Any help is appreciated.
It's not the ConnectionTimeout that causes the error; it's the CommandTimeout. See also this question.
Therefore, the solution is to set a higher value for CommandTimeout in case of more expensive queries.
This type of timeout can have three causes;
There's a deadlock somewhere
The database's statistics and/or query plan cache are incorrect
The query is too complex and needs to be tuned
Taken from the following links
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. The statement has been terminated
try to optimise the query as mentioned here
I had the same problem and google brought me here.
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
In my case, the mssql firewall port (default = 1433 TCP) was not yet open on the db server.

connection timeout error while checking mediastream available or not

In My Console application. i am checking media links which is available in my database through openstream.but one error is raising again and again in diffrent diffrent point.that is "Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. The statement has been terminated"
These 2 similar problems/solutions might give you some ideas.
One was fragmented table and the other was a lock by another db operation.
http://forums.asp.net/t/1513085.aspx/1/10
SQL Server simple Insert statement times out