Viewing 11 posts - 1 through 11 (of 11 total)
I totally agree. The complex queries I was talking about perform a lot of different actions, complex business logic is implemented in SP's. These kind of statements (seperate steps/parts of...
August 26, 2009 at 1:54 pm
wbrianwhite (8/25/2009)
Look at the execution plan, look at and think about what you are typing. Having complex queries will benefit from compiling and recompiling a stored procedure. This is because...
August 25, 2009 at 8:24 am
wbrianwhite (8/25/2009)
August 25, 2009 at 8:19 am
wbrianwhite (8/24/2009)
Michael Ross (8/24/2009)
August 24, 2009 at 2:37 pm
thanks Michael Ross, I forgot about the DBA. I didn't think about that one, since we don't have one:-D
But the reactions exactly draw out what I mean. To technical! Having...
August 24, 2009 at 2:28 pm
I totally agree that this is what should be done first! That is even one of the biggest reasons why we always want access to the production systems of our...
August 24, 2009 at 8:23 am
The approach that the customer is always right, is totally wrong. Make them think they are right whilst feeding them with your own ideas is the way to go. Programmers...
August 24, 2009 at 1:21 am
isn't this a little easier??
CREATE Function GetMonthEnd(@Date DateTime)
Returns DateTime
AS
RETURN dateadd(d,(day(@date)) * -1,@date)
END
February 5, 2008 at 8:43 am
I've tried running some procedures from VB and from Query analyzer. No actions where taken on the database and no time (hardly any) was between both executions. Still the one...
May 18, 2004 at 12:57 am
Hi there,
Just observing this stream, because I had the same problem a couple of times and I have found no solution.
This also happens when there is no com envolved. When...
May 14, 2004 at 6:30 am
NON!!! it will actually not even compile, the sub select does not contain the item table from which the field DID is selected!!!
July 16, 2002 at 12:35 am
Viewing 11 posts - 1 through 11 (of 11 total)