Viewing 15 posts - 24,541 through 24,555 (of 26,484 total)
I'd need a little more specifics. The table DDL, smaple data (in the form of insert statements that can be cut, pasted, and executed to populate the table), and...
June 26, 2008 at 10:12 am
I'll agree, you have a process that is working, you don't need to change it unless your requirements change.
One of the things I sometimes needed to do was restore a...
June 26, 2008 at 6:32 am
That sounds like a good script for the script library.
😎
June 26, 2008 at 6:23 am
I was manually zipping backup files using PKZip. and it did a great job. Problem was: 1) it was manual, and 2) it was time intensive.
Using HyperBac cut backup...
June 25, 2008 at 11:00 pm
Steve
(aka smunson)
First, Steve probably hasn't seen this thread yet, as he may be off at a conference. I know that when he learns about an issue such as this,...
June 25, 2008 at 10:28 am
Personally, I'd leave it in the existing table. If you move it to a second table, then you have to create an outer join to the secondary table to...
June 25, 2008 at 8:32 am
smunson (6/25/2008)
majorbloodnock (6/25/2008)
smunson (6/25/2008)
A.) No judgement was made, was just posing a question.
OK. That's the way it came across, but I'm happy to apologise if that wasn't your intention and...
June 25, 2008 at 7:45 am
Then I will make the assumption that you'll be the first to volunteer to vet future QotD and willing to stick with it through thick and thin. I would...
June 25, 2008 at 6:53 am
I another thing is that instead of complaining about wrong answers to QotD and demanding points back because the answer(s) were wrong (as in this case) or the question was...
June 24, 2008 at 5:22 pm
Hows this:
with PlayerWins (
PlayerID,
Wins
) as (
select
Player.PlayerID,
sum(isnull(ScoreCard.Finished,0)) as Wins
from
dbo.Player
...
June 24, 2008 at 11:49 am
Viewing 15 posts - 24,541 through 24,555 (of 26,484 total)