Replies: 1 comment 1 reply
-
Sorry - I'm not quite clear what the problem is from your description. Are you trying to change one process variable from a varchar2 to a clob by creating a new proc var as a clob and then deleting the old (VC2) one? But the delete_var gives you an error? Does the new one have the same name as the old one? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hi,
I have a situation when I'm changing the process variable type (it's stored a response and sometimes it's bigger then 4K so should be a clob). I was trying to use controlled delete:
begin flow_process_vars.delete_var(pi_prcs_id => pi_prcs_id, pi_var_name => pi_var_name, pi_scope => pi_scope); exception when others then null; end;
That somehow mark an error and the step it's marked with error, even if the error doesn't apear.
What it's the best practice on that? How should I handle it?
Thanks,
Beta Was this translation helpful? Give feedback.
All reactions