Viewing 15 posts - 3,361 through 3,375 (of 6,679 total)
Not necessarily - update statistics does not block user processes because it is run in read uncommitted transation isolation.
If you don't have a lot of memory and/or you have a...
February 26, 2011 at 10:19 am
There is a new option that will help - it is the Auto Update Stats Asynchronous. Turn that on and if a request to auto update stats occurs, it...
February 26, 2011 at 9:24 am
Since you are on shared storage, performance issues are going to harder to track down because you won't know who else is actually hitting those spindles.
If your SAN guys are...
February 25, 2011 at 8:46 pm
MysteryJimbo (2/24/2011)
I've had this once before and found the...
February 24, 2011 at 2:56 pm
More likely it is their way of trying to reduce log usage during index rebuilds. They probably have code written that switches to simple recovery, rebuilds the index and...
February 24, 2011 at 2:48 pm
danschl (2/24/2011)
And in development, so of...
February 24, 2011 at 2:40 pm
Yes, that is correct - you cannot change the default trace.
I am a bit surprised that you don't have data any further back. I just checked one of my...
February 23, 2011 at 3:08 pm
There is a standard report that you can use to see these changes. The report is the schema change history report - just run that and you will see...
February 22, 2011 at 8:26 pm
hemul (2/21/2011)
http://msdn.microsoft.com/en-us/library/ms190488(v=SQL.90).aspx
The database cannot be made smaller than the...
February 21, 2011 at 5:28 pm
There really is no way to tell SQL Server to load a database into memory. SQL Server loads data into the buffer cache when it is accessed the first...
February 21, 2011 at 2:16 pm
If you truly think this is a bug (it isn't), then put in your issue at Connect and let Microsoft know.
Now, the reason this is not a bug is because...
February 21, 2011 at 1:36 pm
Which is exactly what COALESCE or ISNULL will do for you. Sorry, mis-quoted and it should be:
SELECT coalesce(2.resellername, 'Other')
The above can be re-written using a case expression, if you...
February 19, 2011 at 2:37 pm
Lookup COALESCE and ISNUL in Books Online:
SELECT coalesce(1.resellername, 'Other') As resellername, ...
FROM ...
February 19, 2011 at 2:03 pm
Thought of another thing to check - verify that you have enabled both TCP/IP and named pipes in SQL Server Surface Area configuration.
February 16, 2011 at 8:22 pm
That is definitely weird - there must be something with that instances configuration.
Some other things I would check, but honestly I don't know if any of these would cause this...
February 16, 2011 at 8:19 pm
Viewing 15 posts - 3,361 through 3,375 (of 6,679 total)