Viewing 6 posts - 1 through 6 (of 6 total)
That wouldn't be enough to recover the database. If there was a long running transaction that started before the full backup did, only backing up the transaction log generated during...
February 9, 2010 at 9:26 pm
select col1, sum(col2), (SELECT col3 + ', ' AS [text()]
FROM @T a
where a.col1 = b.col1
ORDER BY col3
FOR XML PATH(''))
from @T b
group by col1
Edit: Doh! Nested Loop :Whistling:
May 28, 2009 at 8:51 pm
You're right, we've gone a bit off topic - thanks for the info though.
November 19, 2008 at 2:45 pm
I was afraid you were going to say that 😀
There's nothing else running on the box, max server memory is set to leave 6gb for the OS and nic and...
November 19, 2008 at 5:07 am
Wilfred van Dijk (11/19/2008)
The solution is simple:
1) make sure the...
November 19, 2008 at 4:36 am
The answer is: Yes, I did miss something completely obvious! I got % used stats from the database before moving it to a different server. At that...
May 29, 2008 at 9:47 pm
Viewing 6 posts - 1 through 6 (of 6 total)