Change CommandTimeout in SQL Management Studio

How can I change CommandTimeout in SQL Management Studio?

+41
sql ssms timeoutexception
Jul 16 '09 at 12:23
source share
3 answers

Change command execution timeout in Management Studio :

Click "Tools" β†’ "Options"

Select Run Queries from the tree on the left and enter the timeout for the command in the Run Timeout control.

Changing the timeout for a command to the Server :

In the object browser tree, right-click on the server, which will give you a timeout and select "Properties" from the context menu.

Now in the "Server Properties -....." dialog box, click " Connections " in the "Select Page" list (on the left). On the right side you will get a property

Remote query timeout (in seconds, 0 = no timeout): [up/down control] 

You can set the value in the control up / down.

+47
Jul 16 '09 at 12:43
source share

If you get a timeout in the table designer, change the "Transaction time after" value in the "Tools" β†’ "Options" β†’ "Designers" β†’ "Table and Database Designers"

This will save you from this message: "Timed out." The timeout period before the operation is completed, or the server is not responding. "

enter image description here

+90
Nov 21 '12 at 17:34
source share

Right-click in the query area, select Query Options... and in the "Execution-> General" section (by default, the first time it is opened), the Execution time-out parameter exists.

+2
Jul 16 '09 at 12:41
source share



All Articles