SQL*Plus column command not working with Script Runner

SQL Developer EA 2.1
When running a script (interactive or from a file), the COLUMN commands are ignored. The documentation (User's Guide 1.7.1) says that COLUMN is supported, but the headings set in the column command are not changed. As a test, the SET FEEDBACK OFF command is processed.
SET FEEDBACK OFF
COLUMN ename HEADING 'Name'
COLUMN job HEADING 'Job'
COLUMN deptno HEADING 'Dept'
SELECT ename as ename, JOB, DEPTNO
FROM EMPLOYEES;
The documentation for Script Runner (User's Guide 1.7.2) says that a much more limited set of SQL*Plus commands are available.
Is this intended behavior? If so, the documentation should reflect that the COLUMN command is ignored.

Hi,
Doc bug logged:
Bug 9015160 - OTNEA1: USER GUIDE COLUMN SUPPORTS 'COLUMN...NEWVAL' ONLY
The user guide says column is supported, but
Column supports the following new_value use only
i.e. moving a value from a selected column to a substitution variable:
column aval new_v a
select 1 aval from dual;
select '&a' || ' is 1' from dual;
Output:
AVAL
1
1 rows selected
'1'||'IS1'
1 is 1
1 rows selected
-Turloch

Similar Messages

  • Odi os command not working with agentservice agent.

    dear all,
    odi os command not working with agentservice agent but with local agent it work fine.. and user is administrator.
    kindly solve it
    Regards
    Naseer

    Hi,
    you referred to oscommand, so are you executing a .bat fille? if yes, where exactly does the .bat file reside, local machine or on network share?
    Also, follow these couple of documents, they may be helpful to you.
    859215.1 and 424703.1
    Regards
    Srikanth

  • Keyboard commands not working with pen tablet attached to MacBook Pro

    HELP!! I can't use the clone tool in Photoshop! None of my keyboard commands are working, zoom in, zoom out...etc.
    I went through iCloud and reset Photoshop, InDesign and Illustrator keyboard, but my keyboard on my MacBook Pro
    is not working with adobe CC.
    Is it my Bamboo pen tablet attached causing this problem?
    Please advise.
    Thanks.

    You will likely get better program help in a program forum
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • BUG: Dynamic report column headings not working with some templates

    Using Apex 2.0, we are trying to create a vertical report with dynamic labels like &P26_REF_RECEIVED_DATE_L. based on items populated by PL/SQL.
    This seems to work fine for some templates but not for others. With a horizontal report template we get output like:
    <th class="t4ReportHeader" id="REF_RECEIVED_DATE">Received</th>
    <td  headers="Received" class="t4data">29-MAR-2007</td>But with the vertical template we get:
    <th>&P26_REF_RECEIVED_DATE_L.</th><td>29-MAR-2007</td>Also, if we use "default: vertical report, look 1" we see "&P26_REF_RECEIVED_DATE_L." in the output, but with "default: vertical report, look 2" we see "Received".
    Message was edited by:
    Tony Andrews

    have you checked that your report template has a
    valid value for the "Column Heading Template"
    property?This template has nothing in the "Column Heading Template" because it is designed to show the data in this form:
    Heading1 - Value1
    Heading2 - Value2
    Heading3 - Value3
    Hence both the heading and the data appear in the "Column Template 1" property as follows:
    <tr><th class="t3header">#COLUMN_HEADER#</th><td class="t3data">#COLUMN_VALUE#</td></tr>
    Maybe it is an Apex limitation that the #COLUMN_HEADER# value can't be accessed from this subtemplate? Yet somehow it works with "default: vertical report, look 2" (which I realise isn't a template as such).

  • OfficeJet Pro 8600 Plus Wireless DOES NOT WORK with Mac Mavericks Based Network

    Replaced my Brother system with the HP OfficeJet Pro 8600 Plus yesterday.  There are many positive features of the 8600 Plus that prompted me to purchase it...
    Modular Design
    Large legal sized Scanner
    Standard/Legal Paper Printer
    Copy
    E Print Capability
    High Yield / Affordable Toner Replacements
    Unfortunately, I discovered the Wireless network capability is less than desirable.  After hours of installing, reinstalling, work arounds, internet solution searches, it just will not work.  If you are able to get the printer to work on your network (with router), the scanner will not be visible, vice versa, etc...etc...etc...
    HOWEVER, I did discover this solution.  If the unit is near your base computer, install it to your computer with a usb connection.  That allows you to have scanning and printing from that unit.  Then you can connect the unit through its ethernet connection to your router.  From there all computers can print within your network.  It's not the best way to connect a WIRELESS printer, but at least it works.
    I'm not certain why HP and Apple can't find a solution, but I never found anything on the net that worked.  The problem seems to stem from the new Mavericks update from Apple, but I'm really not sure.  I wasted an entire day of productivity attempting to make it work.  I'm posting this so you don't make the same mistake.  If you happen to know a verified solution, then I would welcome the information.  Best of luck!!!

    It may be a mac driver issue. Try installing the bootcamp update for your version of vista from here:
    http://www.apple.com/support/bootcamp/
    I'm not sure if this is supposed to work since I've never tried mac hardware at 5ghz on windows before...

  • Oracle 10.1.0.4.2 SQL Plus dbms_output.put_line not working

    I am using Oracle 10.1.0.4.2 SQL Plus, and dbms_output.put_line is not working. It returns the dbms_output ONLY from outside the procedure. I have dbms_output INSIDE my procedure, and none of it gets returned. Please help!
    Here is what I enter:
    set serveroutput on size 1000000;
    DECLARE
         x number:=0;
    begin
    DBMS_OUTPUT.ENABLE;
    c2reports.c2proc(x,'TEST');
    DBMS_OUTPUT.PUT_LINE('testX');
    END;
    testX
    There should be more besides the 'testX' that gets returned. The first line in my procedure has output code to print testY. Thanks in advance!

    This is the forum for the Oracle's SQL Developer (Not for general SQL/PLSQL questions). You should ask question like this in the PL/SQL forum

  • Host function plus sudo command not working

    Hi,
    For normal command such as ls, it works.
    But when I run the following
    v_host := '/usr/bin/sudo -u devuser /test/app/dev/scripts/test.sh
    host(v_host);
    it does not work.
    anyone has idea ? Thanks.
    Ivan

    I imagine sudo is probably attempting to prompt for a password. I think it depends on who you are logged in as and who you are trying to log in as (and whether you have logged in recently within the last few minutes).
    The host command won't support this kind of interaction. It needs to be a command that returns its results without requiring any further prompting.
    That would be my guess.

  • Picexport is not working with SCRIPT

    Hi ALL,
    I have upgraded my diadem from 2010 to 11 and now this is not working anymore:
    Call PicExport("X:\transfer\081022\"&SaveFile&"_scaled_tsr","WMF",1,768,1024,"",75,"",0)
    when I try this script i get a first the failure message ==> acsess violation; and when i retry this function I get the message that this function is not activated
    please help me
    THX in advance

    Hy,
    I have tried now almost all formats with the same result:
    - when I use the picexport "by hand" it works fine!
    - when I use the record function for scripting it is working...
    - I stop the recording and want to run the script, it works the first time and then I get first the access violation msg and then the "not activated" msg
    I dont wanna use the PDF eport because I have arround 200-300 pictures per "run" which I want to quickcheck ("scrolling" thru all pics witch a picture viewer) and this not very useful by PDF...
    So there must be a solution?!!!! The same script was working with the last diadem version...
    THX
    Andreas
    Attachments:
    accessviolation.PNG ‏46 KB
    not_active.PNG ‏33 KB

  • Formatting output columns - ala SQL*Plus 'column' command

    SQL_Developer 1.5
    Is there a way to format the output of queries for numbers, etc. like the 'column' command found in SQL*Plus?
    I realize I can use the TO_CHAR() function in the SQL but was hoping there was something easier.
    Thanks very much!
    -gary

    it could be that the column of the table that you are trying to insert the data has a small length.

  • CurrentFrame command not working with Else/If statement?

    The code below is part of a game in which the character moves through doors. On the current stage are three doors, all
    instances from the same symbol. The symbol contains nine frames- 1,2 and 3 are three doors of three diff colors doors. 21,22, and 23 are those same three doors with a certain power up and 31,32 and 33 are the same doors with yet another power up.
    Door1.addEventListener(MouseEvent.CLICK,dooraction);
                    function dooraction(event:MouseEvent){
        if (Door3.currentFrame ==Door1.currentFrame + 2 ) {
                  Door1.gotoAndStop(" door21");
                  Door2.gotoAndStop(" door22");
                  Door3.gotoAndStop(" door23");
    So, this code as written works fine, When I add the code below, it stops working.
         else if (Door3.currentframe == Door1.currentFrame +2){
                 Door1.gotoAndStop("door31");
                 Door2.gotoAndStop("door32");
                 Door3.gotoAndStop("door33");
    However, when I alter the code so that all of the code in the first part  gotoAndStop's at "door21", and then remove the "+2 " from the
    second part of the code, it works. What have I done incorrectly that causes the second "+2" to not work?

    the else-if branch of your conditional is identical to the if-branch so i wouldn't expect the else-if branch to ever execute.

  • SQL*PLUS mouse scroling not working..

    Hi,
    I am facing one problem in SQL*Plus tool, and couldn't find solution. Please help me.
    I have set the line size 9999. When i select the data from table (or dual) which is having more line size that the screen size, some of the part is displayed on screen that the rest have been cut. I cannot scroll the screen horizontally to see the rest part of the output. If i set the line size 80, the whole output is displayed in wrapped style.
    Is there any other configuration or settings i need to do.. Please let me know what i am missing..
    Regards,
    Dipali.

    Aman, Amar and Jaffy,
    Thanks for your reply.
    Aman, yes dear, i can use DOS prompt, but i am using SQL*Plus tool and facing problem it. Instade of looking for alternative i want to solve this problem.
    Jaffy, i go through the index of the book given in the link by you. But didn't find the topic related to my problem.
    Aman, I tried to increase the screen buffer size from environment dialogue box. When i tried for first time, i was asked to disconnect from database. I did that, increased the buffer width to 10000 and keep the lenght untouchd (1000) and set the line size to 9999. Then i connected to DB and checked it and i got what i wanted :).
    But when i tried for next time, i was not getting that..It was behaving strange.. when i set the buffer size 10000, it showed message that 'screen buffer lenght must be between 80 to 1000' and when i set it to 1000 it showed 'screen buffer lenght must be between 80 to 2000' !!!!
    I am still trying.....
    Thank you.. :)
    Dipali.

  • Sql command not working with date time??

    I am using my own sql query to fetch data in the sql command.
    Due to the problem I found - here is the basic example:
    The sql is:
    select to_number(to_date('10/11/2011 10:23:00','dd/mm/yyyy hh24:mi:ss') - to_date('10/11/2011 10:20:00','dd/mm/yyyy hh24:mi:ss'))  minu  from dual
    But I am not getting anything in Crystal Report tool!!
    In any sql tool I get results.
    When I am not using time part (hh24:mi:ss) :
    select to_number(to_date('10/11/2011','dd/mm/yyyy') - to_date('09/11/2011','dd/mm/yyyy'))  minu
    from dual
    I am getting data!!!!
    What is the problem??
    Initially I had it with parameters of type 'Date Time'
    Please, any one knows what the problem is?

    Hi,
    Sorry for the delay and thanks for answering.
    It was partial solution
    Moving to oracle driver, not (OLE DB), this specific one worked fine:
    select to_number(to_date('10/11/2011 10:23:00','dd/mm/yyyy hh24:mi:ss') - to_date('10/11/2011 10:20:00','dd/mm/yyyy hh24:mi:ss'))*100 minu from dual
    BUT
    When I tried to change one of the hardcoded values to be parameter of type 'Date Time' I couldn't pass the validation step - mostly the errors:
    "ORA 00900 Invalid sql statment"   and
    "ORA - 00907: Missing right parnthesis"
    No matter which format I used.
    Last version is:  
    select to_date('{?tsStartReport}','yyyy-mm-dd hh24:mi:ss') from dual
    Any idea why 'Date Time; is so problematic? How can I workaround it?

  • Keyboard commands not working with Headstart

    Hello,
    I'm using Headstart 2.1.2 with Template package 5.0.3.1. Forms 6.0.5.29 and Designer 6.0.3.
    When making a form in Forms without Designer and Headstart the forms responds normally to Alt + spacebar + n to minimze the MDI window. A Headstart generated forms responds to this command with FRM-41008: undefined function key. Does anyone know a way to fix this?
    Thanks, Joost

    You will have to add a key definition for this to the qmsrf50.res resource file. Your best bet is to look in the
    forms default resource file and copy that definition.
    Regards,
    LauriThanks for your reply, Lauri. Unfortunately I'm still not clear about this, I would appreciate it if you could explain a little further.
    What does this qmsrf50.res file do? The Headstart manual instructs me to replace the original Forms fmrusw.res file with the resource file supplied with Headstart. If I do so my application fails to start.
    As I wrote before my application responds to Alt + spacebar + n with 'Undefined function key'. The Headstart foundation application forms however responds correctly. They use the same runtime executable. Could it be that the resource file is used at compile time or is it only read at runtime?

  • IBook G3 startup shortcut key commands not working with OS 9?

    My iBook does not recognize any of these key commands:
    startup from disk holding "C"
    target disk mode holding "T"
    PRAM zap
    etc...
    The only command it listens to is Shift to turn extensions off. My keyboard works fine and none of the keys are stuck. I've never seen anything like this, what could it possibly be?

    If there's a firmware password set on the computer, it needs to be removed first. This can be tested by pressing the Option key and seeing whether a padlock appears or the command is ignored.
    (51320)

  • Scaling with key commands not working with objects or text frames

    Suddenly, I can no longer hold Shift+Option+Command to proportionally scale anything in InDesign CC 2014. Any suggestions?

    Which file do I want to trash or rename?

Maybe you are looking for

  • How do i install iweb in my new macbookpro?

    My lion does not offer me iweb. Where is this program?

  • Illustrator CS4 .pdf files - two issues

    Issue 1: In Bridge I cannot open an .ai or .pdf file in Illustrator by clicking a thumbnail. Is 'drag and drop' into Illustator from Bridge the sole method? (apart from not using Bridge). Issue 2: After exporting an .ai file to .pdf (Acrobat Pro CS4)

  • Hard disk partition as a neutral "go-in-between" MacOS and WinXP?

    Hi gurus, I have a MacBook with a 500GB hard drive partitioned between Mac (400GB) and bootcamp (NTFS, 100GB, running Windows XP). Unfortunately I am using old software which does not exist for a Mac, written under Win 95 and operating an external co

  • Install JDK version 1.4.2.13 Netweaver 7.0

    Hi, i have install new versión JDK in Linux System. The current version is 1.4.2.10. I have the question: Before install new version have uninstall the old version? Exist documentation for install JDK in linux??

  • In Ap store display reluctant response

    In AppStore, e.g.  If I tap the display box for "Free" or "Install"  it may take a dozen taps with assorted fingers to get a response. What am I not doing right?