코드

Datagrip에서 dbms_output 출력하기

umaking 2021. 4. 3. 23:51

Datagrip 2020.1 버젼을 기준임.

 

1. Preferences 선택 후 

    'Show output results in editor' 를 check한다.

 

 

2. 찍어 보자

 

Query console 창에서 아래를 입력 후 출력이 나오는지 확인하자.

   (command + F8로 로그 toggle됨, windows ctrl+F8)

 

- sys.dbms_output아닌 dbms_out으로 해도 상관없다.

declare

begin
sys.DBMS_OUTPUT.PUT_LINE('찍어 보기.... ^^;;');
end;

끝.