QSYS2.SYSROUTINEDEP column content changes
The values in the OBJECT_SCHEMA and OBJECT_NAME columns in QSYS2.SYSROUTINEDEP
are now stored without delimiters. Before IBM® i 7.2,
when a routine was created, these names were stored in the same format
in which they were originally used in the CREATE FUNCTION or CREATE
PROCEDURE statement. For example, in the following statement, the
column OBJECT_NAME in SYSROUTINEDEP has a value of TABLE1 in 7.2,
but the value would be "TABLE1" in previous releases.
CREATE PROCEDURE PROC1()
BEGIN;
UPDATE LIBRARY."TABLE1" SET COL1=10;
END;