Viewing 15 posts - 4,726 through 4,740 (of 6,486 total)
Adam - if you do a find and replace prior to posting that, and replace the brackets with their HTML equivalents - it won't get stripped.
Meaning - replace
> with...
February 14, 2008 at 9:57 am
David -
Great Stuff! Nice primer on Agile. You touched the highs AND lows of the approach.
Your final points are critical, and just became ten times more relevant...
February 14, 2008 at 9:47 am
Vika - Jeff's point about temporary tables versus table variables is that they're really not all that different. Most of the things your colleague was trying to scare you...
February 14, 2008 at 9:25 am
Matt Marston (2/13/2008)
-- This will only call the function once
SELECT * FROM sysobjects WHERE [id] <= dbo.fnDateAdd(object_id('dbo.fnDateAdd'))
-- This will call the function for every row in sysobjects.
SELECT * FROM...
February 14, 2008 at 9:01 am
Conor had a lot of interesting stuff in the few blog posts he has made - like rules of thumb when queries will recompile, why Top 100 PERCENT is evil,...
February 14, 2008 at 8:53 am
Is the point of the notification to force refreshes of the data? That's usually what this is for (meaning - notify that the contents of your cache is no...
February 14, 2008 at 8:48 am
Christopher -
First off - nice CTE solution. However - the order by inside of the ROW_NUMBER() only guarantees the order in which the numbers are assigned, and not...
February 14, 2008 at 8:23 am
Like Adam said - there are a lot of things that can be done. It would be helpful to have some further specifics at to what you need to...
February 13, 2008 at 7:00 pm
Mike C (2/13/2008)
Matt Miller (2/13/2008)
for what it's worth -...
February 13, 2008 at 6:47 pm
Well - as I mentioned earlier - I'm now confused.
There's conflicting info as to how developer edition is to be licensed. From the "How to buy FAQ", it says:
Q....
February 13, 2008 at 2:25 pm
No - you are correct in that there are definite differences in licensing. Dev Edition is per user (no server component whatsoever). So you'd need to license/buy Dev....
February 13, 2008 at 2:04 pm
Christian Buettner (2/13/2008)
I have also tried to use a non-deterministic function within a function - that...
February 13, 2008 at 1:53 pm
With the caveat that Developer Edition = Enterprise Edition (meaning the only difference between the two is that I'm not "allowed" licensing-wise to use it in production) - I would...
February 13, 2008 at 1:39 pm
Christian Buettner (2/13/2008)
Why is this function not deterministic?!?
CREATE FUNCTION dbo.fnDateAdd()
RETURNS int
AS
BEGIN
RETURN 0
END
GO
Do I need to have any special session settings enabled?
SELECT objectpropertyex(object_id('dbo.fnDateAdd'), N'IsDeterministic')...
February 13, 2008 at 1:18 pm
Viewing 15 posts - 4,726 through 4,740 (of 6,486 total)