postgres和MSSQL数据库连接中写入超时的默认值是多少?

时间:2016-06-13 04:01:43

标签: sql-server database postgresql

我使用不同的数据库来运行我的应用程序。最近我增加了mysql数据库中的net_write_timeout值,因为我遇到了一些超时错误。 Postgres或Mssql数据库中不会发生这些错误。

我的问题是Postgres和Mssql数据库的net_write_timeout(Mysql)的等效标志是什么。

1 个答案:

答案 0 :(得分:1)

对于SQL Server,有几个超时但没有任何直接对应于net_write_timeout - afaik ......

默认连接超时(允许连接到实例的时间)为15秒。默认执行超时(允许执行查询的时间等)为600.连接超时设置为连接字符串,代码连接执行超时或服务器级别sp_configure

参考:https://msdn.microsoft.com/en-AU/library/ms189040.aspxhttp://www.connectionstrings.com/all-sql-server-connection-string-keywords/