Viewing 15 posts - 331 through 345 (of 391 total)
Agree with rjv:
A twist on previous question agreed, but I do not agree with the choice of answers. It is a bit too vague to select that as an answer....
May 19, 2010 at 8:17 am
Which table helps to find the completion status of the job(e.g, backup, restore etc..) in SQL Server 2005?
:discuss:Unfortunately I believe that none of the answers are correct for this question....
May 18, 2010 at 7:31 am
This is not a bug. Rowlock and pagelock are mutually exclusive, and both state to use either row locks or page locks as long as escalation to page locks is...
May 12, 2010 at 10:09 am
Hugo,
Mine has been more in the rowlock, nolock and tablock hints. I have had cases where the optimizer determined that the tablock was more effective than a rowlock and escalated...
May 12, 2010 at 9:18 am
I think you are referring to the OPTIMIZE FOR option, right?
That is the one. Yes there is a down side to it, as with most hints.
Unfortunately, many think that a...
May 12, 2010 at 6:55 am
Thanks for the explanation Hugo. The questio happened to fall while I was on vacation and traveling. In addition to your explanation, each database should have a good maintenance plan....
May 12, 2010 at 5:41 am
I have to say that this is a poor question.
The insert statement is specific to SS2008, and not earlier versions. Thus the insert will fail unless on SS2008. The question...
April 22, 2010 at 6:42 am
Hugo, Great question. Made me think and analyze since in the "old days" the only way to regenerate the identity key was to drop the table and recreate it then...
April 20, 2010 at 12:33 pm
Oleg,
insert into #n
select
top 3 row_number() over (order by [object_id])
from sys.objects;
is not the same...
April 14, 2010 at 9:26 am
My only complaint is that it is true.
Had to do a conversion back in 6.5 days, and maintain dates going back to 1600's. Had to be a bit creative on...
April 2, 2010 at 7:46 am
Personally, I got it correct - WAG.
My feelings are:
When I submit a question, it is my responsibility to ensure that the question is phrased in such a manner that the...
March 22, 2010 at 9:00 am
Oleg,
I wasn't arguing the point. I think it is a great question, causing a of of thought and good conversation. I just got it wrong, I admit it. My thinking...
March 16, 2010 at 10:59 am
Hugo, after getting the questin wrong;-) and re-reading a few times in disbelief I found on <http://msdn.microsoft.com/en-us/library/ms175477.aspx> - Each data backup includes part of the transaction log so...
March 16, 2010 at 7:00 am
Viewing 15 posts - 331 through 345 (of 391 total)