DBMS OUTPUT WINDOW

Using sql developer 3.2.20.09
Don't know what I clicked accidentally, my dbms output window is screwed up. I can not see its top end . So I can not close it or see /change the db connection. Only thing I can do with this window is to change its size from bottom edge or from sideways.
Please help!
Thanks and Regards,
RN

You could try minimising or moving some other panes to make the top of the dbms_output pane visible.
Failing that, you could delete windowinglayout.xml which will reset the windows to the defaults.
The file should be in SQL Developer\system3.2.20.09.87\o.ide.11.1.1.4.37.59.48 in your home directory (.sqldeveloper if not on windows

Similar Messages

  • DBMS OUTPUT window add behaviour

    Using Version 2.1.1.64, when you click on the 'add' button in the DBMS output window, you are prompted for the connection to add.
    I have upwards of 30 connections defined and the default connection rarely happens to be the one I want, so I have to scroll to find it, which is a pain in the neck. Especially when I'm only opening it to fake a keep alive function in the first place.
    It would make sense for the "Select Connection" dialog to
    1) Default to the current connection (lets say the one in use by the window that has the focus) and
    2) By default only show connections that are currently open
    For bonus points, I'd like to be able to default DBMS_OUTPUT to open whenever I open a connection.
    Thanks!

    The bonus part was requested a couple of years ago and has been accepted, but apparently didn't have enough weight to make it in past releases, so do add your vote.
    Regards,
    K.

  • 2.1 RC1 Dbms Output not working

    I don't know if this is new, or an existing bug from the EA releases (saw a couple threads in regards to dbms_output). I don't seem to be catching any results in the Dbms Output window. Even for something as simple as this run as a statement or script:
    BEGIN
      dbms_output.enable;
      dbms_output.put_line('HI');
    END;
    /I tried it by opening dbms_output before opening the worksheet, opening it after opening the worksheet, opening a new worksheet after both of the above, and an unshared work sheet.

    I noticed this not working for any 9.2 Db. We have internal dev dbs on that release.
    However this works on 10g. I would appreciate a fix ASAP.
    Java(TM) Platform     1.6.0_11
    Oracle IDE     2.1.0.63.73
    Versioning Support     2.1.0.63.73

  • 4.0 EA2 - Server Output Requires DBMS Output Connection to be Enable

    In 3.2.2, I was able to set SERVEROUTPUT in the SQL window to view server output without first enabling the connection in the DBMS Output window.  4.0 EA1 required the connection to be enabled.  4.0 EA2 still appears to require this.  Which behavior is the expected behavior, 3.2.2 or 4.0?
    Thanks

    I'm noticing the same - server output doesn't show in the script output panel unless I have the dbms output panel enabled for the connection.
    set serveroutput on
    run a dbms_output commmand - nothing shows in script output (except anonymous block completed)
    open dbms output view and enable for db and output now shows in both.
    Interestingly - if I run multiple dbms_outputs, the first time I run a command after opening the dbms output panel I see all the previous dbms output results.
    I'm on a mac, which may be the difference

  • EA1 - DBMS_OUTPUT prints to Script Output window

    All,
    I saw another post about the window switching from the DBMS Output window to the script window after a script is executed (I don't like that either), but this is different.
    My DBMS Output is being output to the Script Output window.
    Example:
    begin
       dbms_output.put_line('Hello World');
    end;Yields (in Script Output):
    anonymous block completed
    Hello WorldDan
    Modified Subject
    Message was edited by:
    dmcghan

    This is definitely a change from 1.2.1.31.12, where even running as a script the DBMS Output was displayed on the DBMS Output tab.
    However, while this makes DBMS Output inconsistent (where it appears depends on how you run it) it does make scripts that produce DBMS Output and other output consistent (all output goes to script output).
    For example, if you were writing scripts like the following (assuming the PL/SQL generates DBMS Output), the output will now be consistent:
    select count('x') records from my_interface;
    begin
    process_my_interface;
    end;
    select count('x') records from my_interface;
    With the way the DBMS Output and Script Output tabs are set up now, either DBMS Output or Script Output has to be inconsistent when in comes to displaying DBMS Output. I think that the way 1.5 EA1 works is inconsistent in a more manageable way (largely because reconstructing a single stream of output from more complex cases of the example above would be difficult).

  • 30EA2 - No data passing to Dbms Output

    Have tested on multiple connections, tried restarting sql developer, same story.
    Connect to db.
    Enter the following into sql developer sql worksheet:
    begin
          dbms_output.put_line('hi');
    end;add dbms output connection to the same connection i am connected
    run code as script
    nothing outputted to dbms output window
    Ta,
    Trent
    Edited by: trent on Dec 21, 2010 12:17 PM
    It looks like when you add the dbms output connection, its missing the call set serveroutput on for the connection.

    Exactly the same problem. DBMS_OUTPUT works only if:
    - "set serveroutput on" is present in the running script
    - statements are executed as script [F5] not [F9]

  • DBMS Output---Server Output on for PL/SQL

    I am trying to run some PL/SQL against our Test Database. There are some command lines for...
    dbms_output.put_line
    Within Oracle SQL Developer, I am doing View ==> Dbms Output and choosing the connection accordingly but I still don't see the dbms_output.put_line commands being displayed.
    Am I doing something wrong here??? Do I need to issue any commands within Oracle SQL Developer in order to see the dbms_output.put_line messages output???
    I appreciate your review and am hopeful for a feedback. Thanks in advance.
    PSULionRP

    I was having the same problem on 3.0.04.34
    You need to open the 'view' menu and click on 'dbms output'. You should get a dbms output window at the bottom of the worksheet. You then need to add the connection (for some reason this is not done automaticallly). Now try running your code.
    I hope that helps.

  • Getting errors in dbms output

    Hi All,
    I've written a function to calculate the value for QTD, Previous QTD, YTD and Previous YTD, by giving the parameters of Date, Table name, FilterCol(Date Column in the table), Column name to calculate...
    --------------------------The function code is below:-----------
    DECLARE
    V_REPORT_DATE VARCHAR2(20):='&V_RPRT_DATE';
    V_FILTERCOL VARCHAR2(100):='&V_FLTRCOL';
    V_COL_NAME VARCHAR2(100):=UPPER('&V_COL_NAM');
    V_TAB_NAME VARCHAR2(100):=UPPER('&V_TBL_NAME');
    V_START_DATE VARCHAR2(20);--:='&stdate';
    V_LAST_DATE VARCHAR2(20);--:='&lastdate';
    V_QUARTER_NUMBER VARCHAR2(1000);
    V_STR VARCHAR2(1000);
    V_QTY VARCHAR2(1000);
    V_SUM NUMBER(14,3):=0;
    V_TAB VARCHAR2(100);--:=
    V_COL VARCHAR2(100);--:=;
    V_COL2 VARCHAR2(100);
    V_PRV_QDATE VARCHAR2(20);
    V_PRV_QDATE2 VARCHAR2(20);
    V_SUM3 NUMBER(14,3):=0;
    V_CURRQTD VARCHAR2(1000);
    V_PRVQTD VARCHAR2(1000);
    V_SUM1 NUMBER(14,3):=0;
    V_YTD1 VARCHAR2(20);
    V_YTD2 VARCHAR2(20);
    V_YTD VARCHAR2(1000);
    V_SUM2 NUMBER(14,3):=0;
    V_PRVYTD VARCHAR2(20);
    V_PRVYTDSTR VARCHAR2(20);
    V_PRVYTDEND VARCHAR2(20);
    V_PRV_YTD VARCHAR2(1000);
    V_CUMM VARCHAR2(1000);
    BEGIN
    ---------------GETTTING QUARTER NO.------------------------------
    V_QTY:='SELECT TO_NUMBER(TO_CHAR(TO_DATE('''||'19/12/2012'||''', ''DD/MM/YYYY''), ''Q'')) FROM DUAL';
    DBMS_OUTPUT.PUT_LINE(V_QTY);
    EXECUTE IMMEDIATE V_QTY INTO V_QUARTER_NUMBER ;
    DBMS_OUTPUT.PUT_LINE('QT NUM'||V_QUARTER_NUMBER);
    ----------------CURRENT QUARTER VALUE----------------------------
    SELECT MIN (t), MAX (LAST_DAY (t)) INTO V_START_DATE,V_LAST_DATE
    FROM ( SELECT ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1) t,
    TO_CHAR (ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1), 'Q')QTD
    FROM DUAL
    CONNECT BY LEVEL <= 12) A
    WHERE A.QTD = V_QUARTER_NUMBER;
    DBMS_OUTPUT.PUT_LINE(V_START_DATE||'****'||V_LAST_DATE);
    V_CURRQTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_START_DATE||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_LAST_DATE||''',''DD/MM/YYYY'')';
    --WHERE  trans_date betwen V_START_DATE1 AND V_LAST_DATE1';
    DBMS_OUTPUT.PUT_LINE(V_CURRQTD);
    EXECUTE IMMEDIATE V_CURRQTD INTO V_SUM;
    DBMS_OUTPUT.PUT_LINE(V_SUM);
    --RETURN V_SUM;
    ----------------END OF CURRENT QUARTER--------------------------
    -----------------------PREVIOUS QUARTER---------------------------
    SELECT MIN (t), MAX (LAST_DAY (t)) INTO V_PRV_QDATE,V_PRV_QDATE2
    FROM ( SELECT ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1) t,
    TO_CHAR (ADD_MONTHS (TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'), 'YYYY'), LEVEL - 1), 'Q')QTD
    FROM DUAL
    CONNECT BY LEVEL <= 12) A
    WHERE A.QTD = V_QUARTER_NUMBER-1;
    DBMS_OUTPUT.PUT_LINE(V_PRV_QDATE||'****'||V_PRV_QDATE2);
    V_PRVQTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_PRV_QDATE||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_PRV_QDATE2||''',''DD/MM/YYYY'')';
    DBMS_OUTPUT.PUT_LINE(V_PRVQTD);
    EXECUTE IMMEDIATE V_PRVQTD INTO V_SUM1;
    DBMS_OUTPUT.PUT_LINE(V_SUM1);
    -----------------------END OF PREVIOUS QUARTER---------------------------
    -----------------------CURRENT YTD------------------------------
    SELECT TRUNC(TO_DATE('19/12/2012','DD/MM/YYYY'),'YEAR')INTO V_YTD1 FROM Dual;
    SELECT LAST_DAY(ADD_MONTHS(TO_DATE(V_YTD1,'DD/MM/YYYY'),12 -
    TO_NUMBER(TO_CHAR(SYSDATE,'mm')))) INTO V_YTD2 FROM DUAL;
    V_YTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_YTD1||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_YTD2||''',''DD/MM/YYYY'')';
    DBMS_OUTPUT.PUT_LINE(V_YTD);
    EXECUTE IMMEDIATE V_YTD INTO V_SUM2;
    DBMS_OUTPUT.PUT_LINE(V_SUM2);
    ---------------------------END OF CURRENT YTD------------
    -------------PREVIOUS YTD-------------------
    SELECT ADD_MONTHS(TO_DATE('19/12/2012','DD/MM/YYYY'),-12) INTO V_PRVYTD FROM DUAL;
    SELECT TRUNC(TO_DATE(V_PRVYTD,'DD/MM/YYYY'),'YEAR') INTO V_PRVYTDSTR FROM DUAL;
    SELECT LAST_DAY(ADD_MONTHS(TO_DATE(V_PRVYTD,'DD/MM/YYYY'),12 -
    TO_NUMBER(TO_CHAR(SYSDATE,'mm')))) INTO V_PRVYTDEND FROM DUAL;
    V_PRV_YTD:='SELECT SUM('||V_COL_NAME||') FROM '||V_TAB_NAME|| ' WHERE '||V_FILTERCOL||' BETWEEN TO_DATE('''||V_PRVYTDSTR||''',''DD/MM/YYYY'') ' || ' AND TO_DATE('''||V_PRVYTDEND||''',''DD/MM/YYYY'')';
    DBMS_OUTPUT.PUT_LINE(V_PRV_YTD);
    EXECUTE IMMEDIATE V_PRV_YTD INTO V_SUM3;
    DBMS_OUTPUT.PUT_LINE(V_SUM3);
    END;
    I am getting the dbms output:
    SELECT TO_NUMBER(TO_CHAR(TO_DATE('19-DEC-2012', 'DD/MM/YYYY'), 'Q')) FROM DUAL
    QT NUM4
    01-OCT-12****31-DEC-12
    SELECT SUM(ACTUAL_YIELD) FROM DWH_PRODUCTION WHERE WO_RELEASE_DATE BETWEEN TO_DATE('01-OCT-12','DD-MON-YYYY') AND TO_DATE('31-DEC-12','DD-MON-YYYY')
    01-JUL-12****30-SEP-12
    SELECT SUM(ACTUAL_YIELD) FROM DWH_PRODUCTION WHERE WO_RELEASE_DATE BETWEEN TO_DATE('01-JUL-12','DD/MM/YYYY') AND TO_DATE('30-SEP-12','DD/MM/YYYY')
    For calculating the QTD and Previous QTD, it's showing only the query in dbms output not the sum----I've chkd the error and realize its converting the date format like DD-MON-YYYY instead of i've defined the date format as DD/MM/YYYY, so values aren't comin.
    Note:- All the queries in function are giving the correct values as expected, if I fire them outside the function code, and giving correct values as data is there.....
    -----For YTD and PYTD----------showing error i.e.
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "SPARC.DBMS_OUTPUT", line 116
    ORA-06512: at "SPARC.DBMS_OUTPUT", line 65
    ORA-06512: at line 81
    I've given the string varchar2 type and 1000:
    Help appreciated, Plz help me out.....
    One more favor I ask i.e.----Can any1 help me to write dbms output to show all the values in one line i.e values of SUM, SUM1, SUM2, SUM3
    Thnx in Advance

    Your code is against the basics of PL/SQL..
    Why are you sing DYNAMIC SQL?
    And all these values (QTD,YTD..) - Cant you find it in plain SQL..?
    Plase provide sample data (CEATE TABLE and INSERT statements) and expected output..
    Provide the logic to arrive at expected output..
    And your DB version..
    And use {noformat}{noformat} tags to format the code and data you post..
    What you are doing is *COMPLETELY WRONG*
    Read FAQ: {message:id=9360002}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Output window for NetBeans 5.0

    Hi,
    I am printing a large amount of information to the output window, but for whatever reason, it goes completely blank after about 75% of the information has been printing. Does anyone know why this happens?
    Thanks,
    Jacob

    try to increase Xmx and Xms values in NB conf file.
    HTH

  • 4.0EA1 - Copy/Paste in Script Output window on Mac is not working

    I'm running 4.0.0.12 on MacOS X 10.8.4, and I can't Copy from the "Script Output" window.  What I regularly do is generate some SQL using an SQL query, so I want to copy the output and paste it back into the Worksheet so I can run it.  For example:
    select 'alter tablespace ' || TABLESPACE_NAME || ' begin backup;' from DBA_TABLESPACES;

    This is a known issue and will be addressed for the next EA release.

  • Java Stored Proc - Oracle DBMS Output

    The title pretty much says it all. I have a Java Stored Procedure and I need to direct output preferably to DBMS output from within the Java code. (This is a proof of concept and the managers want to see out put from it so they "know" it's working.)
    System.out.println seems to disappear (though why that is the case I have no idea) in spite of the fact that the samples all show the use of System.err to generate error messages.
    I'm not married to the idea of DBMS output, but it's an easy place to have the output for debugging purposes.
    Comments suggestions and ideas most welcome.
    Regards,
    P

    This might get you going in the right direction:
    DBMS_JAVA
    Gives you the ability to modify the behavior of the Aurora Java Virtual Machine (JVM) in Oracle. You can enable output (meaning that System.out.println will act like DBMS_OUTPUT.PUT_LINE), set compiler and debugger options, and more.
    You can try this link and look for SET_OUTPUT
    http://www.unix.org.ua/orelly/oracle/guide8i/ch09_07.htm
    Good Luck!

  • Problem with stills - output window

    I am new to Premiero Pro.
    I have imported a still into my project and the preview window displays this perfectly but when I add to and play the timeline, the still image
    in the output window is cropped (edge's of the still dont display)
    The image is not a particulary high resolution, 2048 i think
    Any one know why this happens please ? and can it be corrected.
    Thanks
    Chris

    Hi All
    thanks for your replies. Will try these and let you know
    Thanks
    Chris

  • ExchangeService.TraceEnabled = true , but can't see the traces in output window

    Hello,
    I am building an Visual Studio 2013 asp.net application that uses EWS. I have enabled tracing:
                service.TraceEnabled = true;
                service.TraceFlags = TraceFlags.All;
    I expect so see the EWS trace output in the Output window; however, nothing related to EWS shows in Output window.
    I wonder what am I missing?
    Thank you,

    Hi,
    you need to implement the interface Microsoft.Exchange.WebServices.Data.ITraceListener.
    And then set :
    service.TraceListener = new MyTraceListenerImplementation();
    Regards,
    Désiré GOVIN Refresh IT Solutions

  • In output window password changes

    In the output window the password for website upload changes as soon as I place the cursor somewhere else like to start the upload.  There are 3 more characters added.  If I click in the space to delete the 3 characters, the password is deleted.
    Bob

    Gaurav,
    Be default you should be able to see all the containers.  Please check whether did you embed the view in first container.
    I think you know, how to check..
    window->expand view->select first container then you will get the embedded view container details......if not , embed the view again.
    Regards
    Srinivas

  • Error occurred in deployment step 'Install app for SharePoint': Failed to install app for SharePoint. Please see the output window for details.

    Hi All,
    i have created the Cloud Business App in visual studio 2013 .
    it ask share point server like below
    Now i given my share point server url and click finish button it create the cloud business app .
    Now i have added required screen in that HTML Client Appliction
    The Solution will be successfully build .Now i press F5 or Start button it throws the below error in errorList
     In Output window its show the below details
     How to resolve this error ? what wrongly i done in this .Please any one help me to resolve this issue 
    Thanks 
    Gobala
    gobalakrishnan S

    Hi,
    It says apps are desasbled on this site. Are you using developer site collection ?
    Thanks
    Melick Rajee http://melick-rajee.blogspot.com

Maybe you are looking for

  • How can I limit the number of attempts to print a web page

    Hi I'm trying to find a resolution for an issue on our network. We run several kiosk machines that allow customers to print out documents and web pages. However we are finding that we waste a lot of ink due to user's frequently sending the same print

  • How can I get hue, saturation & luminance visible in the Loupe?

    For the life of me I can't figure how to get visible in the Loupe - Hue, Saturation, Luminance as I move the Loupe around a photo. I can get R,G,B,L. Is there a secret to get the Hue in it? I checked preferences and even searched in Aperture Help. NO

  • Thunderbolt - Using the macbook as an external display

    Hey, just wondering if Im able to use my macbook as an external display for my imac instead of my imac being used as an external display for my macbook? Im using thunderbolt to connect them. Cheers

  • Service Tax Register - Kind/Type Of Service

    Hello All, I am to create a Zee Report for Service Tax Register as there is no standard report for it. I am stuck at a place , I need to know which table contains the entry for " Kind Of Service" . I mean the service over which the Tax Implies. Has a

  • Font in iPod classic "Notes"

    I'd like to know what font (and font size) the iPod classic "Notes" module uses.