In MySQL, I can create access to a session variable with a single @. Initialization Example:
set @myVar = true;
Some triggers containing this code:
if (@myVar is not true) then execute something
What is the equivalent in Oracle 10g?
oracle plsql mysql session-variables
Joshua
source share