Viewing 15 posts - 466 through 480 (of 587 total)
This might be some help: http://blogs.msdn.com/sql_protocols/archive/2006/08/10/694657.aspx
Chad
October 10, 2008 at 2:15 pm
Hi Manu - here's MS's page saying basically the same thing. http://support.microsoft.com/default.aspx/kb/906344
Nice summary.
Chad
October 10, 2008 at 10:41 am
I don't think you have blocking in the "normal" sense. It's more of a "wait" than blocking. Do you have multiple CPUs? When you look at the...
October 10, 2008 at 10:29 am
I've seen this happen on 2K5 with parallelism. If you look at the Activity Monitor you see one spid repeated a whole bunch of times and if I remember...
October 10, 2008 at 9:01 am
Can you do something like this:
select formid, acceptCreditCard, city, Table2.anothercolumn
from (select formid, action, value
from table1) tblA PIVOT (Max(value) FOR action in ('AcceptCreditCard', 'City')) AS tblB
INNER JOIN Table2 ON tblB.FormID =...
October 9, 2008 at 5:02 pm
Give this a try:
SET ROWCOUNT 1
DELETE from #tmp where (add all the columns you need to identify the record you want to delete)
SET ROWCOUNT 0
The rowcount will limit the...
October 9, 2008 at 4:52 pm
You could query for the ID later based on the SomeData value.
Take an example where you are inserting bunch of professors and bunch of classes and need to link them...
October 9, 2008 at 12:49 pm
You are correct, the maintenance report setting is different from the job notification setting. The report setting is internal to the maintenance package and has to be changed there,...
October 9, 2008 at 12:25 pm
Any chance you could incorporate our suggestions, verify that the output is still correct, and repost an updated query?
I'm going to go with a guess that there are...
October 8, 2008 at 3:02 pm
I pasted your code in and got your desired results... 🙁
I'm going to guess that the results you posted are not exactly from the code you posted -...
October 8, 2008 at 12:29 pm
My sister took a forensics class in college. For one of her assignments, she had to come up with 50 mistakes in a single CSI episode (something that was...
October 8, 2008 at 12:15 pm
Very pretty!
Without digging in too deep, I'll throw out a couple things...
Is the DB case sensitive? If not, there's no point in doing all the LOWERs, and that will...
October 7, 2008 at 5:08 pm
I'll admit up front that I didn't read through your post carefully, but I think I know what you need. You want to "collapse" multiple rows into one -...
October 7, 2008 at 4:52 pm
Nicely written! Excellent job coming up with some answers that sound good if you haven't used a timestamp before, yet leaving the correct answer clearly on it's own.
September 30, 2008 at 9:27 am
You also need to watch foreign keys for other related tables. In this case it sounds like there were no interrelationships. But if data were deleted from a...
September 29, 2008 at 2:45 pm
Viewing 15 posts - 466 through 480 (of 587 total)