Friday, 13 May 2022

[DbVis] DBMS_OUTPUT not working

  • Make sure to switch on polling in the DBMS_OUTPUT tab of DbVis
  • Make sure to switch on server output of Oracle
    begin
        DBMS_OUTPUT.ENABLE();
    end;
    /

No comments:

Post a Comment

[git] Create a local branch from another branch

From the active branch git checkout -b <LOCAL_BRANCH> From a donator branch git checkout -b <LOCAL_BRANCH> <DONATING_BRANCH...