Viewing 15 posts - 16 through 30 (of 70 total)
Lynn Pettis (5/9/2012)
Here is what I would be concerned about, what if a developer,...
May 9, 2012 at 12:02 pm
Currently, our Data Access relies heavily on SPs - we do not call Tables or Views directly from code. If we have a reason to query the database then...
May 9, 2012 at 11:39 am
I've probably overcomplicated this question greatly.
In its simplest form:
If I have X Views and take the SELECTs from those Views and put them in table-value UDFs instead, will I suffer...
May 9, 2012 at 11:18 am
Okay, that's probably the answer I'm looking for then.
So if you had a similar situation that I have (a complicated join is needed to determine if SituationX exists), would you...
May 9, 2012 at 11:13 am
I might be getting lost on what Multi-Statement UDFs are ... I'm not doing anything in the UDFs outside of either a simple RETURN SELECT or IF(EXISTS(SELECT)) statement in any...
May 9, 2012 at 11:09 am
To expand on that, here's a simplified example of what we'd be doing:
(and this entire design could be the problem in itself with what we're trying to do ... still...
May 9, 2012 at 11:08 am
There's some questions and concerns our programming team has had about ORMs and have never really gotten answers for and until we can see an example of how it'd work...
May 9, 2012 at 10:52 am
For the sake of prosperity ..... I have just modified how I'm doing this.
Once you have all the indexes/statistics in place that you can possibly add, there's little more you...
August 11, 2009 at 11:29 am
Lynn, if you read my post at the top of page 4 that will totally bring you up to speed with where I'm at right. Same issues as it's...
March 6, 2009 at 9:37 am
What is really eating at me (and why I originally decided this was a question for bigger SQL brains than myself to answer) was that I just don't understand how...
March 6, 2009 at 6:44 am
WF_STOP index is not helping either .....
CREATE NONCLUSTERED INDEX [IX_IREP_T_WF_INFO_WF_STOP] ON [dbo].[IREP_T_WF_INFO]
(
[WF_STOP] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING =...
March 5, 2009 at 1:21 pm
Derek Dongray (3/5/2009)
Yes, I noticed just after I'd spent an hour perusing your plan and trying to work out what the view did. 😀
First off, my sincerest apologies on that...
March 5, 2009 at 12:32 pm
Derek was working off the code on page 1 .... I'll go back and modify that to say "read page 4"
What I've provided you is the current problem that I'm...
March 5, 2009 at 12:16 pm
Sure, here ya go ...... actually less data then I was originally thinking .... this view doesn't use a certain table that most in this database do....
IREP_T_WF_INFO ...
March 5, 2009 at 11:57 am
Derek Dongray (3/5/2009)
Looking at the plan....
Sorry for a bit of confusion, Derek, but have brought up a new query that is doing something very similar here on page 4. ...
March 5, 2009 at 11:44 am
Viewing 15 posts - 16 through 30 (of 70 total)