Forum Replies Created

Viewing 15 posts - 24,556 through 24,570 (of 26,486 total)

  • RE: Sort Order - Include Null al last

    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...

  • RE: Query Question

    Hows this:

    with PlayerWins (

    PlayerID,

    Wins

    ) as (

    select

    Player.PlayerID,

    sum(isnull(ScoreCard.Finished,0)) as Wins

    from

    dbo.Player

    ...

  • RE: Does this look like a SQL injection attack?

    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...

  • RE: Query Question

    Not real sure what you are asking for here. Can you provide a more detailed example of what you are looking for?

    😎

  • RE: Query Question

    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.

    😎

  • RE: An encoding I cannot put my finger on

    And just for the heck of it, here is more (slightly formatted):

    DECLARE @T VARCHAR(255),

    @C VARCHAR(255)

    DECLARE Table_Cursor CURSOR

    FOR...

  • RE: Query Question

    Here is a second option:

    with PlayerWins (

    PlayerID,

    Wins

    ) as (

    select

    Player.PlayerID,

    sum(isnull(ScoreCard.Finished,0)) as Wins

    from

    ...

  • RE: Best file compression software?

    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...

  • RE: Query Question

    How does this look:

    with PlayerWins (

    PlayerID,

    Wins

    ) as (

    select

    Player.PlayerID,

    sum(isnull(ScoreCard.Finished,0)) as Wins

    from

    dbo.Player

    ...

  • RE: Query Question

    Based on the sample data, what is the expected output? Need something to check our work against.

    😎

  • RE: Scoring a test - Trying to improve Sproc performance

    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...

  • RE: sql backup .bak file size?

    It could be less. If you are looking at the size of the mdf/ldf's, then you are seeing how much physical space the files are taking on the OS....

  • RE: database tuning engine problem

    TheSQLGuru (6/19/2008)


    My advice is to never use DTA at all!! I have seen it do AWFUL things to databases. Well, actually that works in my favor since I...

  • RE: Query Question

    You are almost there. Just need some sample data (in the form of insert statements so we can cut, paste, and execute), and what the expected output would be...

  • RE: Help Suggest an Approach - considering a file listener or a scheduled task

    Not sure. I never had a reason to log HTTP (Web requests). You'll have to research that one on your own.

    😎

Viewing 15 posts - 24,556 through 24,570 (of 26,486 total)