Viewing 4 posts - 1 through 4 (of 4 total)
We got an .aspx page that gets called so many times a second. for some reason the SQL server holds the connection even though the connection is explicitly closed. We,...
February 5, 2003 at 3:12 pm
Here is the error message from isqlw
Server: Msg 170, Level 15, State 1, Line 1
Line 1: Incorrect syntax near 'FUNCTION'.
Server: Msg 137, Level 15, State 1, Line 8
Must declare the...
August 21, 2002 at 10:23 am
CREATE FUNCTION CubicVolume
-- Input dimensions in centimeters
(@CubeLength decimal(4,1), @CubeWidth decimal(4,1),
@CubeHeight decimal(4,1) )
RETURNS decimal(12,3) -- Cubic Centimeters.
AS
BEGIN
RETURN ( @CubeLength * @CubeWidth...
August 21, 2002 at 10:21 am
Viewing 4 posts - 1 through 4 (of 4 total)