Lo sto facendo bene ...?
Ho una funzione che restituisce denaro ...
CREATE FUNCTION functionName( @a_principal money, @a_from_date
datetime, @a_to_date datetime, @a_rate float ) RETURNS money AS BEGIN
DECLARE @v_dint money set @v_dint = computation_here
set @v_dint = round(@v_dint, 2)
RETURN @v_dint
END
GO
Grant execute on functionName to another_user
Go
Mi chiedo solo se è possibile convertirlo in iTVF?
Ho provato a farlo ma ho riscontrato un errore:
CREATE FUNCTION functionName ( @a_principal money, @a_from_date
datetime, @a_to_date datetime, @a_rate float )
RETURNS TABLE AS
RETURN SELECT returnMoney = computation_here
GO
Grant execute on functionName to another_user Go
ERRORE:
Messaggio 4606, livello 16, stato 1, riga 2 Privilegio concesso o revocato EXECUTE non è compatibile con l'oggetto.
Questa funzione viene utilizzata in questo modo:
update table_name set interest = functionName(col1,col2...) where...
Grazie in anticipo!