Viewing 15 posts - 24,556 through 24,570 (of 26,490 total)
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
Yes, it is a SQL injection attack.
I'd notify the the 3rd party provider of the web application regarding the SQL Injection attack. If it is getting through to your...
June 24, 2008 at 11:37 am
Not real sure what you are asking for here. Can you provide a more detailed example of what you are looking for?
😎
June 24, 2008 at 11:25 am
Option 2 takes out one of the tables (Event). Not sure what the difference in IO's, execution plans, overall performance on a full production system.
😎
June 24, 2008 at 11:07 am
And just for the heck of it, here is more (slightly formatted):
DECLARE @T VARCHAR(255),
@C VARCHAR(255)
DECLARE Table_Cursor CURSOR
FOR...
June 24, 2008 at 10:47 am
Here is a second option:
with PlayerWins (
PlayerID,
Wins
) as (
select
Player.PlayerID,
sum(isnull(ScoreCard.Finished,0)) as Wins
from
...
June 24, 2008 at 10:36 am
Got to plug HyperBac. We have installed it on 7 servers so far (it is also licensed per server) and it has reduced backup/restore times on these servers as...
June 24, 2008 at 10:28 am
How does this look:
with PlayerWins (
PlayerID,
Wins
) as (
select
Player.PlayerID,
sum(isnull(ScoreCard.Finished,0)) as Wins
from
dbo.Player
...
June 24, 2008 at 10:21 am
Based on the sample data, what is the expected output? Need something to check our work against.
😎
June 24, 2008 at 9:54 am
Well, we need more info before we can really help. Besides seeing the code for you stored procedure, we also need to see the DDL (create statements) for your...
June 24, 2008 at 9:45 am
Viewing 15 posts - 24,556 through 24,570 (of 26,490 total)