Forum Replies Created

Viewing 15 posts - 1 through 15 (of 20 total)

  • RE: Solid State Disks and SQL Server

    Wow! I already forgot about this post! Thank you, Wesley! It's very useful to know. I should read this IO white paper, looks interesting.

    Denis

  • RE: dynamic WHERE clause

    Hi Gail,

    Thanks for your input! Good point, the procedure is cached as a whole with IF conditions in the plan.

    Denis

  • RE: dynamic WHERE clause

    Thank you, Sean. It's good to know!

    Denis

  • RE: dynamic WHERE clause

    Sean,

    Didn't know that either! That would be great! I really appreciate it.

    Denis

  • RE: dynamic WHERE clause

    Bill,

    Thank you! As always -- it depends and there is no best way 🙂 Didn't know about the SELECT DISTINCT, do you know where I could read about this? I'd...

  • RE: dynamic WHERE clause

    Sean,

    Yes, I am aware about the possibility of dirty reads while using the NOLOCK hint. I really don't care about them in this case. I needed avoid any locking.

    Denis

  • RE: dynamic WHERE clause

    Luis, thank you for your reply! Gail ROCKS 🙂 I've been reading her blog for a while now! I think I have an idea now how to deal with this.

    Denis

  • RE: Solid State Disks and SQL Server

    Hi Wesley,

    Thank you for the info! I understand that it has been a while since you wrote this article but I hope you could answer my questions.

    My company just bought...

  • RE: Nonclustered index consolidation

    Good point! Thank you, Gail.

  • RE: Nonclustered index consolidation

    Hello Gail,

    Thank you for your reply. Is this what you were looking for?

    CREATE NONCLUSTERED INDEX [IX_Records_RecordType_DateCreated] ON [dbo].[Records]

    (

    [RecordType] ASC,

    [DateCreated] ASC

    )

    WITH

    (

    PAD_INDEX = OFF,

    STATISTICS_NORECOMPUTE ...

  • RE: FK relationship problem

    You're right! I'll need talk to developers to see what queries they're planning on running and then look at the execution plans.

    Denis

  • RE: FK relationship problem

    Thank you, guys! I think I see my options now. I guess it's time to play now.

    Denis

  • RE: FK relationship problem

    OK! If I follow your suggestion (which I'd really like to do), how will I store the combinations of the IssuerId and DataTime columns? As far as I know, I...

  • RE: FK relationship problem

    Thank you, Sean! I appreciate your help.

    Denis

  • RE: FK relationship problem

    Thanks for your reply! Everything (including the column names) comes from the external feed. I need to have both of them as the primary because there will be instances of,...

Viewing 15 posts - 1 through 15 (of 20 total)