Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
2k views

Timeout exception when timeout set to infinite time

In my C# .NET 3.5 application I am using CastleProject ActiveRecord over NHibernate. This is desktop application using MS SQL Server 2008. I have set ADO command timeout to 0 to prevent timeout ...
3
votes
2answers
1k views

Setting Linq to NHibernate ADO Command Timeout

How do I increase the timeout in NHibernate Linq To Sql? Not the Connection Timeout but the ado command timeout. using (ISession session = ...
2
votes
1answer
37 views

INSERT timeout during online index rebuild

Is there a way to prevent SQL INSERT timeouts during SQL Server index rebuild/reorganize operations? We are using NHibernate, command timeout set at 10 minutes, SQL Server 2008 R2, index rebuild is ...
2
votes
3answers
629 views

sqlclient - connection timeout or command timeout

I get the following error upon running a query. * System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not ...
2
votes
2answers
2k views

How do you set the command timeout in SSIS?

I have a datareader source firing some sql which takes longer than 30 seconds to run, so it's timing out. I can not find a command timeout property on the datareader source component, or the data ...
1
vote
1answer
122 views

manually increasing SQL server command timeout

I had a test windows host (50 MB) which was serving my ASP.NET web app, it worked almost fine, but after it was upgraded to 100 MB, I got frequent SQL server timeout errors when trying to remotely ...
1
vote
5answers
190 views

SqlCommand object, what length of time for CommandTimeout?

How do I decide what length of time to use as a timeout when using an SqlCommand object? On parts of the code I'm working on (written by somebody else) I have: cmd.CommandTimeout = 60; Which I ...
1
vote
1answer
2k views

SMO ConnectionContext.StatementTimeout setting is ignored

I am successfully using Powershell with SMO to backup most databases. However, I have several large databases in which I receive a "timeout" error "System.Data.SqlClient.SqlException: Timeout ...
1
vote
2answers
601 views

Setting CommandTimeout in Microsoft's Data Access Application Block (SQLHelper)

I'm using the Data Access Application Block (SQLHelper) to execute SQL against a database. I have one query which takes longer than the default command timeout of 30 seconds. I want to up the timeout, ...
0
votes
0answers
158 views

How to set a default NHibernate CommandTimeOut default value

How can i set an Session.DBCommand.CommandTimeOut NHibernate default value with Castle ActiveRecord? this config line don't work. <activerecord > <config> <add ...
0
votes
2answers
136 views

Time Out Error in ASP.Net

How can I stop time out error for executing SQL query in ASP.Net? I researched in Google but I couldn't solve my problem correctly.