Re: User Function Syntax -
02-06-2004
, 11:51 AM
hi klomax,
When invoking scalar user defined function you will have to use minimum two-part
name of the function ie "owner" and "function name"
Ex
select owner_name.function_name (parm1,para.2....)
Whereas Table-valued functions can be invoked using a single part name.
Ex:
select * from function_name (parm1,para.2....)
--
Vishal |