Viewing 3 posts - 1 through 3 (of 3 total)
Thank you too CELKO for coming back.
Just a copy of questions:
How can I incorporate your suggestion into my code?
...
June 13, 2011 at 3:19 am
#1337633
Jeff,
Thanks for coming back.
I am trying to combine several stored procedures and functions into one query that I can run with my limited access. Initially, whilst I refine the...
June 13, 2011 at 3:13 am
#1337630
If it helps the functions are:
[font="Courier New"]ALTER FUNCTION [rpt].[getFXRate](@Currency CHAR(3), @OnDate DATETIME)
RETURNS FLOAT
AS
BEGIN
-- make sure that we don't do anything for US$
IF @Currency='USD' RETURN 1
June 10, 2011 at 9:58 am
#1337099