Viewing 8 posts - 16 through 24 (of 24 total)
Thank you for that link.
I may not register because their Privacy Policy seems to suggest 'you have no privacy from our advertisers'.
However, their existing material should be a useful...
March 19, 2009 at 5:28 am
Poor (non-existent?) QA on this question. Unexpected from this site.
And what about the role of sales_category? The results of the query will also reflect the 'performance' of the sales_category, whatever...
March 18, 2009 at 4:45 am
From a programmer's point of view, a superficial look at your code suggests that you're asking SQL Server to do lots of function calls for each of your million rows....
March 11, 2009 at 4:35 am
Here is the alternative coding of the function dbo.fnBinaryReal2Real
CREATE FUNCTION dbo.fnBinaryReal2Real
(
@BinaryFloat BINARY(4)
)
RETURNS REAL
AS
BEGIN
DECLARE@Mantissa REAL,
@Exponent...
November 21, 2008 at 10:20 am
I've recoded Peso's function to provide improved performance. Using the benchmark posted by Jeff Moden (4/10/2007) run-time changed from 1.0 seconds to 0.16 seconds.
[font="Courier New"]
CREATE FUNCTION dbo.fnBinaryFloat2Float
(
...
November 21, 2008 at 10:15 am
Well done, Jeff Moden and Peso. The function fnBinaryFloat2Float was just what I needed.
Well, actually, I wanted a function to convert BINARY(4) to REAL. But by changing some of the...
November 21, 2008 at 5:04 am
Viewing 8 posts - 16 through 24 (of 24 total)