Viewing post 1 (of 1 total)
Why not declare a user defined function for each constant required? This will work in SQL Server 2000 as well.
For example:
[font="Courier New"]CREATE FUNCTION Const_Address_Work()
RETURNS INT
AS
BEGIN
RETURN 1;
END;[/font]
Then simply use it...
October 16, 2007 at 12:20 am
#742234