How to get SQL Developer 4.1 to display the query result?

SQL DEV 4.0.3.16.84 execution of a SELECT statement is stored in a .sql file causes the window of the query result of pop-up indicating the result of a SELECT statement.  SQL DEV 4.1 is not to do so.

Oops on my part; my SQL formatting has been the root cause.  I got used to insert split without any character of comment lines in front of them.  For example:

==================================================

Select funny business;

The foregoing indicates the behavior described.

--==================================================

Select funny business;

With the dash double comment shows, the SQL works very well.

This is different than previous versions of SQL Developer, but is probably better functionality.  I'll try to mark it as answered, but anyone with the admin should certainly do so if I can't.

Tags: Database

Similar Questions

  • I need someone to walk me through how to get Photoshop to recognize cc I downloaded the plug 9.1 raw in.  I thought that this would happen automatically, but it has not changed in photoshop.

    I need someone to walk me through how to get Photoshop to recognize cc I downloaded the plug 9.1 raw in.  I thought that this would happen automatically, but it has not changed in photoshop.  I ran the installer for the plug in but it didn't ask me what to do next.  The responses I get are all over the map on this so I'm writing again. the wording of the question differently.

    There was some problems with loading 2015 ACR 8. You may need to reinstall Photoshop. Which seem to help a lot of people.

  • I bought acrobat Pro DC a few months ago, but now I replaced my computer for a new. How to get back my acrobat Pro DC on the new computer?

    I bought acrobat Pro DC a few months ago, but now I replaced my computer for a new. How to get back my acrobat Pro DC on the new computer?

    Hi turbomail,.

    I see that you have an active subscription Acrobat Pro. Please try to download and install from this page: https://cloud.acrobat.com/acrobat. Please see Acrobat DC subscription | Download and install for more information.

    Let us know how it goes!

    Best,

    Sara

  • How to configure CPU Meter so that it displays the image instead of the text version.

    How to configure CPU Meter so that it displays the image instead of the text version.

    Hi John,.

    Welcome to the Microsoft community.

    The CPU Meter gadget shows the status of the two main resources, you can follow on your computer - the use of your CPU and memory.

    To install the CPU Meter gadget in Windows 7, just right click anywhere on your desktop and click on Gadgets. Search the CPU Meter gadget and drag it to your desktop.

    See the Microsoft Article below and check if this is useful:

    http://Windows.Microsoft.com/en-us/Windows7/customize-desktop-gadgets

    Let us know if you encounter problems under windows in the future. We will be happy to help you.

  • How can I get sql developer Version 4.0.3.16 to read the ldap.ora file

    I select LDAP as the connection Type and you can enter the address of the LDAP server and charges at the end of everything.

    How can I get developer sql to load servers directly from the file ldap.ora.

    Question may be closed due to problem being that developer sql through customer install ODAC.  Once the complete installation of the client has been applied, everything was fine.

  • How to get SQL that do not use bind variables

    Hello

    I am trying to identify the SQL code which should benefit from the use of bind variables.
    First of all, I tried to get the common signature of all the sql calls, using:
    select * from (
    select  force_matching_signature, count(1) from v$sql where force_matching_signature<>0 group by force_matching_signature order by 2 desc
    ) where rownum < 50;
    Then I copied these values to the Clipboard and run:
    select sql_text from v$sql where force_matching_signature=<<<copied_signature_value>>>;
    Now, I want to make it automatically and get only 1 occurrence of each SQL that resembles others by using a query.

    I tried this:
    select sql_text from
    (
    select sql_text, force_matching_signature, row_number() over (partition by force_matching_signature order by sql_text desc)rn from v$sql where force_matching_signature <>0
    )where rn <2 and rownum < 10 order by force_matching_signature desc
    But it is not returning results by showing up at the count (1) from the first query, I've used. How can I change this if I get the results in order of "importance"?




    Thank you

    And I said. First use the command by then use rownum. I did not mention row_number. Also, there should be no need to add more columns.
    Have you tried it? Why it did not work?

    example not tested

    select * from (
       select sql_text from (select sql_text, force_matching_signature, row_number() over (partition by force_matching_signature order by sql_text desc) rn from v$sql where force_matching_signature != 0)
       where rn = 1
       order by force_matching_signature desc /* add any ordering you like here */
       )
    where rownum < 10  /* then filter on the first 10 results */
    

    If you want to order that the statement that found most of the time comes first, say so. However, I don't see how to group in your case.
    Maybe like this

    example of tested

    select * from (
       select cnt, sql_text
       from (select sql_text, force_matching_signature, row_number() over (partition by force_matching_signature order by sql_text desc) rn , count(*) over (partition by force_matching_signature) cnt
             from v$sql
             where force_matching_signature != 0)
       where rn = 1
       order by cnt desc, force_matching_signature desc /* add any ordering you like here */
       )
    where rownum < 10  /* then filter on the first 10 results */
    ;
    

    Published by: Sven w. October 11, 2012 14:49

    Published by: Sven w. October 11, 2012 14:51

    Published by: Sven w. on October 11, 2012 14:56 - number column added to the output

  • How to get SQL * more to connect to my database of Apex?

    How can I get SQL * more to connect to my database of Apex? By using the username and password I use to connect to Apex does not (ORA-01017). What should I do to connect to my db Apex?

    Thank you
    Kim

    Connection string is "connect username/password@database".

    The analysis schema is a database account, that's why you can log on to SQL * more like that.

    This allows to get the database name

    select instance_name from v$instance;
    

    And if you forgot the password for the PT

    alter user PT identified by 'your_new_password';
    

    Scott

  • How to install SQL Developer 4.1 on Win10?

    Hi guys,.

    today I tried to install the SQL Developer 4.1 on a Win10 machine. First of all, I tried with the version that contains the JDK and then I installed the jdk1.8.0_51 manually and used normal SQL Developer packages.

    My problem is that the SQLDeveloper cannot be started. During the first trial an error has occurred that a dll could not be run. With the manual installed JDK SQLDeveloper processes is killed during the splash screen and start something with "Register"... »

    Thanks for your comments

    Andy

    > error has occurred that a dll could not be run

    Remember you of what was the real error message?

    You can try to delete the application profiles for SQL Developer data directory and try again

  • How to call sql loader control file with in the pl/sql procedure

    Hi friends,

    I am doing a project in relation to the transfer data using queues. In the queue, I'll get a data delimited by tabs in the form of CLOB variable/message. I don't want to keep this dat in the oracle table.
    During the updating of the data in the table.

    1. don't want to write data to a file. (You want to access directly after the specific queue).

    2. as the data is in the form of delimited by tabs, I want to use sql loader concept.

    How can I call the ctrl charger sql file with in my pl/sql procedure. When I searched, most forums recommending the external procedure or a Java program.

    Please guide me on this issue. My preferrence is pl sql, but don't know the external procedure. If no other way, I'll try Java.

    I'm using oracle 9.2.0.8.0.

    Thanks in advance,
    Vimal...

    Or SQL * Loader, or external tables are designed to read data from a CLOB stored in the database. They both work on files stored on the file system. If you don't want the data to be written to a file, you have to roll your own parsing code. It is certainly possible. But it will be much less effective than SQL * Loader or external tables. And it is likely to lead to a little more code.

    The simplest possible thing that might work would be to use something like Tom Kyte string tokenization package to read a line in the CLOB, divide the component parts and save the different chips in a significant collection (i.e. an object type or a record type that matches the table definition). Of course, you need manage things like the conversion of strings to numbers or dates, rejecting the lines, writing to log files, etc.

    Justin

  • How to get a form empty when we run the page?

    Hi all!

    Hope you are well

    My question is, How to get empty a form at run time? means that when we run the page, text fields is filled with white... Could someone please help me with this...

    Thanks in advance,

    Nanda.

    Hi Nanda,

    Just follow these steps:

    (1) create a stubborn taskflow (uncheck create with fragments box)

    (2) drag the CreateInsert operation on your narrow-minded taskflow and mark it as the default activity

    (3) drag a view and the CreateInsert a link to the component view using a case of control flow

    (4) double click on the view to create the page

    (5) slide the view object in the page as a form of ADF

    6) back to your narrow-minded taskflow and the general tab make sure you under visibitliy you select "url-invoke-enabled.

    You run tasfklow and your form will be rendered in insert mode.

    Concerning

    Antonis

  • How to get inDesign CC after you have installed the version CC 2014?

    So, here's the thing, after the release of CC 2014, of course I downloaded it and then I deleted all my computer CC versions. The thing is that an external software that we use for the material of brand management does not work with inDesign documents CC 2014 so I need the CC back version. The thing is that on the creative cloud there is no more the CC Versions just CC 2014, any ideas on how to get the previous version

    Hi DobsTotev,

    How to download/install version previous to see the screenshot below in order.

    1. click on drop down Filters & Versions

    2. click on the 'install' dropdown button for desire application and select CC with the original basic version.

    I hope this helps.

    Thank you and best regards,

    Sumit Singh

  • How to get previous value of an attribute in the VOImpl file?

    Hi all
    I want to compare if the current value of the attribute VO A1 is equal to the previous value of the A1 when the value of this attribute A1 gets changed, how to get the previous value of the A1?
    I know that in the VORowImpl file I can use this.getA1 () which returns me the current value of the A1, but I don't know how me may return the previous value?

    Appreciate your help in advance!
    Thank you
    Yvette

    getPostedAttribute the value of the attribute as it was queried from the database.
    Here is an example written in EmployeesImpl

        /**
         * Sets value as the attribute value for Salary.
         * @param value value to set the Salary
         */
        public void setSalary(BigDecimal value) {
            Object attribute = getPostedAttribute((EmployeesImpl.SALARY));
            if(attribute!=null)
                System.out.println("Attribite value " + attribute); //this will give you the value as it was in the data base before you modified it.
            else
                System.out.println("attribute value is null");
            setAttributeInternal(SALARY, value);
        }
    
  • How to get custom java UCM service - connected on the user id?

    I wrote a personalized service for the AAU 10 x content server.
    How to get login name of the current user from my java code of personal service?

    I use m_binder.getLocal ("userName") but it returns null :(

    SerializableAttribute public class CheckLicense extends Service
    {
    public void IsValid()
    get DataException, ServiceException
    {
    User String = m_binder.getLocal ("userName"); < = returns null
    ...
    }
    }

    Try with m_binder.getLocal ("dUser");

    Kind regards
    Boris

  • Unable to run SQL Developer, lack of class of the oracle

    Sorry, thread has been moved to the SQL Developer section.

    Hello
    Anybdoy has this experience, I tried several versions with and without JDK, none works, havin this error as below.
    I'm on windows xp 32.

    Thank you
    T

    oracle.classloader.util.AnnotatedNoClassDefFoundError:

    Lack of class: oracle.javatools.db.DBLog

    Hello

    Please check that you are not downloading the 64 bit version of windows or windows vista.

    Kind regards

    Mario Alcaide

    http://marioalcaide.WordPress.com

  • How to get a user logged in (NAME of the END USER) in the APEX?

    Hi all

    I have Apex 3.1.2 Oracle 10 g 2.

    I have an integrated application, I need to print a REPORT based on the user who runs the application. While building the app, I used Application Express - authentication schemes and created an END USER.

    But, when the report is run, I get the error. This is because it takes the ANONYMOUS user name. How to get the user_name of the logged-on user?

    Thanks in advance.

    Guru

    Published by: guru Perrin on October 14, 2008 16:25
    Modified subject line

    Hi guru,.

    You can use the & APP_USER. application for this variable. He was replaced when executing, in the name of the user connected.

    Edit: PS
    Don't forget the point. in the end ;)

    Hope this helps,
    Greetings,
    Rutger

    Published by: Rutger_de_Ruiter on October 14, 2008 03:57

Maybe you are looking for

  • What happened to the tab "more" to open a new tab?

    I love being able to open a new page by clicking on sing the "plu" to the right of the last used tab especially handy when you copy a URL and want to paste in a new address. This leaves me only the option of writing on an existing open page. I also m

  • Issues related to the cell property node: Position Active for a table control

    Hello What determines the Position of the Active cell in a table control property node? I have this in my code and display the value of an indicator on front panel. The displayed value is always set to 0,0. Help for the property node says it's "read

  • How can I make autorun for windows XP/autostart when I put a CD

    I do not remember where to go to change automatically run the program CD so when put in my computer.

  • WAG160N will not connect to NAS

    Laptop connected wireless to WAG160N, running Windows 7. Desktop computer Windows XP connected by cable to the ethernet port on WAG160N, I have a storage device (Vantec Nexstar Lx Ultra) network connected by cable to a port ethernet on the WAG160N. B

  • Guide to EA4500 of non-existent?

    Just went looking for a guide to the user for EA4500 see: * virgins "Downloads" tab at http://homesupport.cisco.com/en-us/support/routers/EA4500 * Error "page not found" HTTP404 at http://homedownloads.cisco.com/downloads/userguide/EA-Series_UG_Full_