BLOMASKY When you define the SP, you can have a DEFAULT value, so if your SP looks like this: Create Procedure MYSP @param1 varchar(20) = null If you have a default value, then you can skip sending the param in your rule.
UnionSystems BLOMASKY wroteWhen you define the SP, you can have a DEFAULT value, so if your SP looks like this: Create Procedure MYSP @param1 varchar(20) = null If you have a default value, then you can skip sending the param in your rule.. You can do this in MS SQL but unfortunately not in mySQL as mySQL does not support defaults for stored procedure parameters (hope I’m wrong).