• There is no .net or any other app being used against the database yet.. I only have the tables right now and am using SQL2000 query analyzer or SQLK25 query analyzer to query the table and getting the timeout with them and when using enterprise manager to query.

    [Jim].[dba].[Murphy] (3/18/2011)


    My bet is that the timeout is from a .NET or client application. The default .NET connection timeout is 30 seconds. You can test this by running the same query from Query Analyzer and watching it spin for longer than 30 seconds. That will verify what you are seeing.

    You can set the timeout in the .NET 'Command' object. cmd.Timeout = x is the syntax.

    Jim