DBMS output not displaying
DECLARE
COUNT1 NUMBER;
BEGIN
SELECT COUNT(*)
INTO COUNT1
FROM PROCESSPART
WHERE DIV = '1'
AND BK = '0G'
AND BK_YR = '19';
DBMS_OUTPUT.PUT_LINE('PROCESSPART RECORDS IN GEN5 FOR LOC 1, BK 0G, BK_YR 2019');
DBMS_OUTPUT.PUT_LINE(COUNT1);
END;
I have turned DBMS Output on in SQL Developer, and the window is there, connected to the DB. But when I run the block nothing appears in the window after successful completion.