Viewing 15 posts - 316 through 330 (of 411 total)
Oh, the 'query wait (s)' property is an Advanced Option. So you can turn on advanced options by running:
sp_configure 'show advanced options', 1
RECONFIGURE
... then you can see all...
March 18, 2011 at 10:54 am
Then the server settings you are configuring are the right ones. Setting the timeout in SQL Server to -1 will prevent timeouts.
Run: sp_configure
...and look at the time out...
March 18, 2011 at 10:50 am
Right. A recycle of SQL Services will rebuild TempDB and it's log. But like Shawn said, you need to ensure the underlying file or file path for the...
March 18, 2011 at 10:25 am
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...
March 18, 2011 at 10:18 am
Of course, this is way too much to actually teach here in a forum; so I'll just give a few pointers so you have a starting place to wrap your...
March 17, 2011 at 10:02 pm
Only one of my current clients adheres to SOX and HIPAA. Yes, it has impacted work. I agree with you, that it is really for the better in that...
March 17, 2011 at 9:44 pm
As a consultant, I do use the term "the business", "the client" and "the customer" nearly interchangeably.
When talking about them internally to my DBA staff, I usually say "the...
March 16, 2011 at 12:58 am
Maybe this is too obvious, but you did ensure that the SQL server is configured to allow remote connections, right? This is in sql server properties on 2008.
Also, you'd...
March 15, 2011 at 11:12 pm
Yep. In other cases, it is good to throw read-only tables (which don't get updated very frequently if at all) in a read-only file group.
In still other cases, testing...
March 15, 2011 at 2:15 pm
Query tuning is largely the same as in more recent versions as regards query execution plans, etc.
If you are unfamiliar with the SQL 2000 tuning wizard, I wrote a walk...
March 15, 2011 at 11:32 am
There are lots of strategies to use and testing will yield the best results in your environment.
One method to use may be to create 2 FG's and relocate some Clustered...
March 15, 2011 at 11:10 am
If it's in a table, you can more easily select from the logs and log details to perform additional administration. Notifications or whatever. This solution can give you more flexibility...
March 14, 2011 at 7:30 pm
I second what Craig says. There are numerous reasons why the business may desire/require a total separation.
This is not a performance issue. In the past when faced with...
March 14, 2011 at 7:23 pm
Viewing 15 posts - 316 through 330 (of 411 total)