Viewing 15 posts - 1 through 15 (of 20 total)
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
November 14, 2013 at 8:34 am
Hi Gail,
Thanks for your input! Good point, the procedure is cached as a whole with IF conditions in the plan.
Denis
November 12, 2012 at 2:24 pm
Sean,
Didn't know that either! That would be great! I really appreciate it.
Denis
November 12, 2012 at 7:47 am
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...
November 12, 2012 at 6:24 am
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
November 12, 2012 at 6:19 am
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
November 12, 2012 at 6:17 am
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...
October 8, 2012 at 12:44 pm
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 ...
July 26, 2012 at 6:49 am
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
December 13, 2011 at 8:57 am
Thank you, guys! I think I see my options now. I guess it's time to play now.
Denis
December 13, 2011 at 7:58 am
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...
December 13, 2011 at 7:55 am
Thank you, Sean! I appreciate your help.
Denis
December 13, 2011 at 7:20 am
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,...
December 13, 2011 at 6:00 am
Viewing 15 posts - 1 through 15 (of 20 total)