The determinism tag has no wiki summary.
4
votes
2answers
2k views
MySQL Deterministic Procedures
As a general rule, should I be declaring all my stored procedures with the DETERMINISTIC keyword if they are indeed deterministic?
It seems to me that the majority of stored procedures will be ...
5
votes
1answer
146 views
Is my function nondeterministic one
I have two functions: fn_Without_Param and fn_With_Param
CREATE FUNCTION [dbo].[fn_Without_Param]
(
)
...
INNER JOIN .. ON .. AND SubmitDate = CONVERT( varchar(10), GETUTCDATE(), 101 )
and
/*
...