Hello,
Please tell me if I'm correct in assuming that the two declaration statements are the same... if I don't give 'ON COMMIT DELETE ROWS' will it still delete rows from the temp table or keep them there? Thank you!
DECLARE GLOBAL TEMPORARY TABLE TMPVALUES (
ID INTEGER,
RVAL DOUBLE
) ON COMMIT DELETE ROWS NOT LOGGED IN USERTMP_TBLSP;
DECLARE GLOBAL TEMPORARY TABLE TMPVALUES (
ID INTEGER,
RVAL DOUBLE
) NOT LOGGED IN USERTMP_TBLSP;