I am trying to save a value in a table after removing an & in the input variable. When I print the value of the variable in dbms_ouput.put_line I get the output. but when I save the value of the variable to database, nothing is updated. Code below is a simplified version. Using toad 10.6 on oracle 11g
FUNCTION UPDATE_ADDRESS(ADDRESS VARCHAR2,
P_USER VARCHAR2)
RETURN VARCHAR2 IS
RetVal VARCHAR2(32767);
V_ADDRESS VARCHAR2(32767);
BEGIN
DBMS_OUTPUT.put_line('ADDRESS ::=' || ADDRESS); --this prints
V_ADDRESS := REPLACE(ADDRESS, '&', '');
DBMS_OUTPUT.put_line('V_ADDRESS ::=' || V_ADDRESS); --so does this
UPDATE ADDRESS_TABLE
SET ADDRESS = SUBSTR(V_ADDRESS, 1, 255) --this column does not get updated
WHERE USER = P_USER;
COMMIT;
END;
/
your column name USER conflicts with internal function with the same name, make it ADDRESS_TABLE.USER
@Wolf
tmp_func has DML operation and no PRAGMA. Just working....
Output: