Report to show SQL used in a report

I create a set of quality reports using the views of the apex.
I would like to create a report to verify the sql code used in conventional reports, but can't seem to find the correct view to use.
If it was an interactive report I would use the SQL_QUERY column in the APEX_APPLICATION_PAGE_IR view, but this does not seem to exist for conventional reports

Help appreciated.

Gus

Gus C wrote:
I create a set of quality reports using the views of the apex.
I would like to create a report to verify the sql code used in conventional reports, but can't seem to find the correct view to use.
If it was an interactive report I would use the SQL_QUERY column in the APEX_APPLICATION_PAGE_IR view, but this does not seem to exist for conventional reports

You can use the APEX_APPLICATION_PAGE_REGIONS data dictionary view. There is a field called "REGION_SOURCE" - just filter for the appropriate type of area.

Help appreciated.

Really? What is Re: validate Date and time? If you want to see the real recognition for help given, why not give points ' fix/useful' to positions that you have helped to solve your problem, according to the introduction forum post:

>
* It is considered good etiquette to the responses of reward with points (as "useful" - 5 pts - or 'correct' - 10pts).
>

Have a brief look at the list of recently answered questions, you do not seem to attribute useful points, even when you have to say explicitly (paraphrase) "thanks for your help. Maybe is a thing of failover - maybe you subscribe to the doctrine of Mr. Rose but, hey if it helps get you your question answered and it literally costs you nothing but a few seconds of effort, why not throw us a BONE by assigning a point in time?

Tags: Database

Similar Questions

  • UCCX 10.6 history report showing the use of the Port

    Hello

    I'm looking for a report that can show the use of the port by queue/application over a period of time.  What I'm looking for, that's exactly how my CTI ports is used for which at one point.

    We have more channels PRI in what we do the ports and want to make sure that we are not undersubscibing applications, if we are the ones who and when and if we go over our 150 ports are looking to buy licenses of more to come.

    Someone knows something that could do the trick - or this should be a personalized work?

    Thank you

    James

    Hi James,

    Please see the hourly report Utilization license available in your version in cuic which comes with UCCX. Look at the below Guide to historical reports for more detals on this report:

    http://www.Cisco.com/c/en/us/TD/docs/voice_ip_comm/cust_contact/contact _...

    Concerning

    Deepak

    -Note post - useful

  • How to contact with SQL using LabVIEW 7.1... ?

    Hello...

    I want to create a system that deals with the database and stores the database to the server through SQL... Can someone guide me please how to contact SQL using LabVIEW 7.1... ?

    Thanks for any help on your part...

    You can either use the LabVIEW Database Connectivity Toolkit or LabSQL to communicate with the SQL data bases. Take a look at those and after if you have other questions.

  • In windows Server 2003 R2, standard edition, its CPU usage showing the use of 100%

    I have windows Server 2003 R2, standard edition, in recent weeks its CPU usage showing the use of 100%. While treated cheking, a process called 'System', showing the CPU from 97 to 98%, we have stopped other services one by one like Trendmicro and backup but none advantage, can you please help us?

    Hello

    Since you have a problem with Windows Server 2003, you can ask your question in the TechNet for Windows 2003 Server GENERAL forum.

    http://social.technet.Microsoft.com/forums/en-us/winserverfiles/threads

  • Call Shell Script from within PL/SQL - using DBMS_PIPE

    Hi all

    I'm trying to run a shell script inside my PL/SQL using DBMS_PIPE block (not sure if this is the right way or not)

    Pl Sql script

    ==========

    Set serveroutput size 100000

    declare

    cursor c1 is select * from mag_images

    where nom_image like '% comp2.

    v_path varchar2 (100): = ' / home/maguzzi/DOCUMENTS_DIR / ";

    v_result number: = 0;

    v_in_filename varchar2 (100): = v_path | ' test_file.jpg';

    v_out_filename varchar2 (100): = v_path | ' test_file_out.jpg';

    v_script varchar2 (100): = "tst_convert.sh";

    v_command varchar2 (200): = 'sh'. v_path | v_script | » '|| v_in_filename | » '|| v_out_filename;

    Start

    A1 to c1 loop

    dbms_output.put_line ('v_command: ' | v_command);

    write_to_file ('test_file.jpg', 'DOCUMENTS_DIR', a1. Content);

    dbms_output.put_line (' file write result: ' | v_result);

    v_result: = exec_host_command (v_command);

    dbms_output.put_line (' resize result :'|| file v_result);

    end loop;

    end;

    Result DBMS_OUTPUT

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

    v_command: /home/maguzzi/DOCUMENTS_DIR/tst_convert.sh test_file.jpg test_file_out.jpg

    Result of the entry of the file: 0

    Result of resizing the file: 0

    PL/SQL procedure successfully completed.

    Function exec_host_command

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

    FUNCTION to CREATE or REPLACE exec_host_command (lc_cmd IN VARCHAR2)

    RETURN INTEGER IS

    ln_status NUMBER;

    lc_errormsg VARCHAR2 (80);

    lc_pipe_name VARCHAR2 (30);

    BEGIN

    lc_pipe_name: = 'Maguzzi_PIPE ';

    DBMS_PIPE. PACK_MESSAGE (lc_cmd);

    ln_status: = dbms_pipe.send_message (lc_pipe_name);

    RETURN ln_status;

    END;

    /

    The Image of the BLOB is written to the correct location on the server "test_file.jpg", and although the exec_host_command function returns a value of 0, the shell script (tst_convert.sh) is not executed (i.e. no output file is created - outfile.txt and the image is not copied/converted to a new file name "" test_file_out.jpg" )

    Shell script

    ========

    tst_convert.sh

    echo 'Here' > outfile.txt

    Echo $1 > > outfile.txt

    Echo $2 > > outfile.txt

    resizing to convert $1 - $200 2

    Could this be problems with permissions on files?

    test_file1.jpg has permission - rw-rw-r-

    test_convert.sh a permission rwxrwxrwx

    When I run the script manually and pass in 2 parameters ($1 = infilename and $2 = outfilename), it works...

    I'd appreciate if someone can point out my mistake or suggest another method that works.

    Thanks in advance

    How long does it take to create the converted file? Remember that the external Scheduler is running asynchronously, so it is possible that the converted file does not exist yet when the PL/SQL block subsequently tries to open it.

    Try to add some delay seconds to the routine to ensure that the external task is completed:

        begin
          dbms_scheduler.create_job(
              job_name => 'MAG_IMAGE_CONVERT2'
            , job_type => 'EXECUTABLE'
            , job_action => '/home/oracle/DOCUMENTS_DIR/tst_convert2.sh' );--  '/home/oracle/DOCUMENTS_DIR/tst_convert.sh');
          dbms_scheduler.enable('MAG_IMAGE_CONVERT2');
          dbms_lock.sleep(3);
        end;
    

    This probably isn't really a viable solution in the long term if it turns out that this is really the problem.

  • Peovisioning attribute to multiple values in a table SQL using the GTC in detail

    I have a recon trust implemented Sun LDAP for IOM followed to auto put into service at table 'MyUser' to SQL using GTC. It works great so far.

    Now the difficult part of the requirements. I have a multivalued attribute called "AppRoles" associated with Sun's LDAP user. I would like access to this attribute to the 'MyUserToRole' of SQL table (this is a picture of detail table Master "MyUser"). What should be the best approach to this task?

    Thank you!
    Kabi

    For the look-up:
    Once you run Trusted Recon, all your AppRoles are inserted in this research and the different lines for different users. Use the IOM API for this. A basic structure could be as follows:

    Code - Decode
    User01 - Role01, Role02
    User02 - Role02, Role03, Roel04
    User03 - Role08, Role12

    In this way all the roles are stored in this research. Bu the only problem with it could be the change in the look upwards manually which could be tolerated as there are glitches with almost all of the solutions implemented.
    --------------------

    For the field of the UDF
    Yes, their would be a limitation in the text box and it is * 200 * characters. So if that's the case then you should go for the look-up which has no such restrictions at least for your condition.

  • PL/SQL using bind variable to delete records

    Hello

    I'm currently implementing PL/SQL using bind variables to remove records from the "item_progress" table in the simple join query where I'm passing itemName, itemLoc and orderLoc in the delete query in pl/sql block.

    Please suggest, it should be easy for oracle experts...

    (a) I need first records in the item_progress table by using the join query and then update of status in the renew_item table.
    (b) it works fine if I use the simple removal with a condition that is ("DELETE from item_progress where itemname =: 1' using itemname1").

    (c) but it gives an error when I run it using delete with join:
    ---------------------------------------
    * Invalid relational operator ORA-00920:
    ORA-06512: at "SE", line 14 (it's the deletion with the join... "DELETE FROM item_progress WHERE item_id IN (SELECT ip.item_id'...)" ....'
    ORA-06512: at line 10
    Process exited.*
    ---------------------------------------

    create or replace PROCEDURE PUT (itemName IN VARCHAR2,
    itemLoc IN VARCHAR2,
    orderLoc IN VARCHAR2) is
    itemName1 varchar2 (30);
    itemLoc1 varchar2 (30);
    orderLoc1 varchar2 (30);
    BEGIN
    orderLoc1: = ' C: test/local /';
    itemLoc1: = ' / / L123/R;
    itemName1: = 'AAA ';

    immediate execution

    "DELETE FROM item_progress WHERE item_id IN (SELECT ip.item_id FROM ip, item_order io item_progress WHERE io.orderlocation: = 1 AND ip.order_id io.order_id UNION SELECT item_id FROM item_progress WHERE ITEMLOCATION =: = 2) AND itemname: = 3' using orderloc1, itemloc1, itemname1;"

    -"DELETE from item_progress where itemname =: 1' using itemname1; -IT WORKS FINE
    -Once the above query is updated to success, the status in another table
    -Renew_item update the Status value = "RENEWED" where ITEMNAME =: 1, ITEMLOCATION =: 2 using itemname1, itemloc1;

    commit;
    END OPERATIONS;

    user10828299 wrote:
    Please suggest, it should be easy for oracle experts...

    You have made a typo. bind variables are preceded by two points, while you put a colon in front of the equality operator that he listens to it in the PL/SQL assignment operator. Change:

    WHERE io.orderlocation : = 1

    TO

    IO.orderlocation WHERE =:1

    Change:

    WHERE ITEMLOCATION : = 2

    TO:

    WHERE ITEMLOCATION =:2

    Change

    AND itemname : = 3

    TO:

    AND itemname =:3

    SY.

  • Report Null VS discoverer view show SQL query results.

    I created a simple Cross Tab discoverer of a custom SQL report that has a calculation for sales. The output is to give all null values even if there is a sale. The output does not seem fair. Then I copied the query from tools-> SQL Show and ran the query in the TOAD where I show the balances for the report. I don't understand why it does not show in the discoverer. Help, please.


    Thank you

    Published by: PA1B on January 27, 2010 11:40

    Hello

    You must show the translated_flag as a dimension in the report or use it in a function group in the calculation. What calculation should be tried? And why did not work?

    Rod West

  • OBIEE - SQL Expression filter does not at all - shows SQL but no result

    IM at my wits end for this

    I have a report where I use a filter with a simple SQL expression
    cast ( timestampadd(SQL_TSI_YEAR, -1, Cast(Cast(DATE '@{pv_as_of_date}{2013-04-01}' AS CHAR) AS TIMESTAMP) ) as DATE)
    If an end user can enter a date and it is passed into the filter through a variable

    pv_as_of_date

    This is set by default to 2013-04-01

    I want to subtract 1 year to make the final result

    2012-04-01

    When I run the report I see two problems

    (1) for displaying the filter at the bottom, I see the complete SQL code. This should not show that the returned date? In this case the filter should not show 2012-04-01?

    (2) the filter does not yet that is my biggest problem

    I tested the code above in a column and I KNOW the date is returned as expected

    But when I use the same SQL code in the filter then it does not work

    Am I missing some special button somewhere to allow SQL expressions?

    Any help hugely appreciated

    I don't see anything wrong in the expression, but when you might have questions

    Criteria over time. "' Academic year Desc" column-> filter-> Advanced-> convert it to SQL
    and use this expression.

  • Shows SQL ID, OEM, but says: * SQL text not available *.

    I'm a bit confused on this and was hoping that someone can help you.

    I use DBConsole to an Oracle 11.2 (on Solaris 10) database.

    I see really high momentary ' * + tips + * ' in an activity greater than about 20 to 30 minute intervals.
    When I try to understand which SQL is causing the Spike, I drag the section shaded the area containing the Spike and look at all the SQL statements during this period.
    I first try to look the SQL statements by highlighting, or by clicking on the entries in the column of ID of SQL in SQL from the top (bottom left of the page).
    Then I copy and paste the statements in my sqlplus session and see if it causes any sort of spike that I followed in another window OEM looking at key activities.
    Usually, I don't not even a blip on the radar, so I'm not find the SQL statement that causes the spikes.
    Sometimes, however, when I hover over an ID of SQL, it does not show the SQL statement and instead of it shows just the words: [SQL ID].

    Then, I run a report of ASH for the 5 minute window of the shaded area containing the Spike.
    When I look at the "full list of SQL text" ASH report, I found an entry or the Scriptures have to say: * SQL text not available *.

    So then I try to select sql_text from v$ sqlarea where sql_id = «...» "(whatever this sql_id is), and I get no rows found.
    for example,.
    SQL> select sql_text from v$sqlarea where sql_id = '99mjdv0hkh5km';
    
    no rows selected
    In fact, when I try other sql_id, I don't get them either and I guess that's because they are already old v $ sqlarea.
    If I check the v$ sqlarea for up-to-date notifications, they work fine.
    So, the first thing, what controls the duration of v$ sqlarea (pool size)?

    Then I chose to DBA_HIST_ACTIVE_SESS_HISTORY and it displays the information related to the ID of SQL, but of course, it does not show the sql text.
      1* select * from DBA_HIST_ACTIVE_SESS_HISTORY where sql_id = '99mjdv0hkh5km'
    SQL> /
    
    ---------------------------------------------------------------------------------------------------------------------------------------------------
         19242 1311231241               1   68759345
    21-MAR-13 07.24.50.524 AM                                                          394            2337 FOREGROUND
            16         65 99mjdv0hkh5km Y                0          3
    SELECT                                                                         6.2052E+18 99mjdv0hkh5km
                       3          2792326754                4
    TABLE ACCESS
    FULL                                                                16777216 21-MAR-2013 07:24
    Note above FULL TABLE SCAN. That's what I'm trying to dig into who I think is the culprit causing the spikes.

    If your application uses literals, SQL is simply disappeared from sqlarea until you know.

    Although it will certainly be when it is running, then maybe you should look at the right time :)

    the alternative is a 10046 trace to capture the SQL...

  • my: C drive shows 130 used and 10 GB free but I can only represent 65GB when I total up to folders in the: hard drive C. Why is this?

    I have a laptop Lenovo T61 with 140 GB hard drive using Windows Vista Ultimate Edition

    Certain files and folders are hidden.  To see them, go to start / Control Panel / folder Options / View and uncheck to hide system files, and check the box to show the hidden files and folders.  Which may help explain the difference.

    In addition, Vista does not have a very good job of reporting used disk space.  It is a common problem with no real solution under Vista.  Certain files and folders are simply not included (for some reason any) in the summary or remain hidden despite the changes described above.  I believe that this applies to system restore and shadow copy information and probably others as well the files/folders.  You can change the maximum space used by these programs that can clear up some space (with the compromise that you have less restore points).  Here's how: http://www.vistax64.com/tutorials/76227-system-restore-disk-space.html.

    I recommend http://www.hdgraph.com/ to scan your system for how the space is used.  It is not perfect either, but it is a bit more accurate and provides more data and information in a way that makes it easier to read and understand the structures.  I don't know if it fills up space system restore and shadow copies, but it could (and is probably worth a try just to see what it shows).

    I hope this helps.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Site2site showing IKE using a

    Hi all

    I have a doubt. When I go on the track, VPN and check for Site2Site, it shows me IKE using a...

    I want to use 3DES... What can I do for her?

    Follow my config:

    Crypto ipsec transform-set ESP-DES-MD5 esp - esp-md5-hmac

    Crypto ipsec transform-set ESP-DES-SHA esp - esp-sha-hmac

    Crypto ipsec transform-set esp-SHA-ESP-3DES-3des esp-sha-hmac

    Crypto ipsec transform-set ESP-3DES-MD5-esp-3des esp-md5-hmac

    Crypto ipsec transform-set ESP-AES-128-SHA aes - esp esp-sha-hmac

    Crypto ipsec transform-set ESP-AES-128-MD5-esp - aes esp-md5-hmac

    Crypto ipsec transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac

    Crypto ipsec transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac

    Crypto ipsec transform-set ESP-AES-256-SHA 256 - aes - esp esp-sha-hmac

    Crypto ipsec transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac

    life crypto ipsec security association seconds 28800

    Crypto ipsec kilobytes of life - safety 4608000 association

    card crypto outside_map 3 match address outside_1_cryptomap

    set outside_map 3 card crypto peer FWL_M

    card crypto outside_map 3 game of transformation-ESP-AES-128-SHA

    outside_map interface card crypto outside

    crypto ISAKMP allow outside

    crypto ISAKMP policy 10

    preshared authentication

    the Encryption

    sha hash

    Group 2

    life 86400

    crypto ISAKMP policy 30

    preshared authentication

    3des encryption

    sha hash

    Group 2

    life 86400

    crypto ISAKMP policy 50

    preshared authentication

    3des encryption

    md5 hash

    Group 2

    life 86400

    crypto ISAKMP ipsec-over-tcp port 10000

    management-access inside

    VPDN group Internet request dialout pppoe

    VPDN group Internet localname [email protected] / * /

    VPDN group Internet ppp authentication pap

    VPDN username [email protected] / * / password *.

    dhcpd outside auto_config

    !

    dhcpd address 192.168.90.10 - 192.168.90.40 inside

    dhcpd 192.168.100.8 dns 192.168.100.1 interface inside

    dhcpd user.com area inside interface

    dhcpd allow inside

    !

    a basic threat threat detection

    Statistics-list of access threat detection

    no statistical threat detection tcp-interception

    SSL encryption, 3des-sha1 md5 - rc4 AES 256-des-sha1 sha1

    WebVPN

    Frank L0uOq1bmhJfENgddqrrvDFaoG encrypted privilege 15 password username

    tunnel-group 200.200.200.200 type ipsec-l2l

    IPSec-attributes tunnel-group 200.200.200.200

    pre-shared key *.

    !

    class-map inspection_default

    match default-inspection-traffic

    !

    !

    type of policy-card inspect dns preset_dns_map

    parameters

    maximum message length automatic of customer

    message-length maximum 512

    Policy-map global_policy

    class inspection_default

    inspect the preset_dns_map dns

    inspect the ftp

    inspect h323 h225

    inspect the h323 ras

    inspect the netbios

    inspect the rsh

    inspect the rtsp

    inspect the skinny

    inspect esmtp

    inspect sqlnet

    inspect sunrpc

    inspect the tftp

    inspect the sip

    inspect xdmcp

    Review the ip options

    inspect the icmp

    !

    global service-policy global_policy

    context of prompt hostname

    no remote anonymous reporting call

    call-home

    Profile of CiscoTAC-1

    no active account

    http https://tools.cisco.com/its/service/oddce/services/DDCEService destination address

    email address of destination [email protected] / * /

    destination-mode http transport

    Subscribe to alert-group diagnosis

    Subscribe to alert-group environment

    Subscribe to alert-group monthly periodic inventory

    monthly periodicals to subscribe to alert-group configuration

    daily periodic subscribe to alert-group telemetry

    Cryptochecksum:c218dadd6c07eb8af7070ae2db80d7e2

    Follow attach too.

    Thank you!!!

    Diego

    crypto isakmp policy 10

    authentication pre-share

    encryption des

    hash sha

    group 2

    lifetime 86400

    crypto isakmp policy 30

    authentication pre-share

    encryption 3des

    hash sha

    group 2

    lifetime 86400

    crypto isakmp policy 50

    authentication pre-share

    encryption 3des

    hash md5

    group 2

    You have some political crypto isakmp with a configured with priority/sequence number lower (10) and with 3DES - wit number 30. In the political order with 3DES prevail, you must set with number less then 10. Follow these steps:

    No crypto isakmp 30 policy

    crypto isakmp policy 5

    authentication pre-share

    encryption 3des

    hash sha

    group 2

    lifetime 86400

  • The CS6 road show is useful?

    I think make the long drive in Chicago 21 for CS6 Adobe traveling show. Someone here has a report of first cities on the trek: New York, Orlando, DC, Atlanta?  It's basically a presentation of NAB-type sales pitch?  I wasn't there this year, but have already purchased the upgrade of the CS6, just have not had the chance to load it again.  BTW, deep dive training is not available in Chicago the isn't a factor for me, if this can be for the people of THE region.

    It is not a demo of the sales pitch total, there are some quite useful info and is not a bad opportunity to the institutions in the network.

    I will tell of all Adobe presentations/tours/etc that I've ever seen, it was impressive. I had a short drive to the ATL event. For people who are NEW or Adobe Premiere Pro, it is probably more useful. For people who are already in the boat of Adobe, not quite as valuable.

    Limited partners are quite good, nice opportunity to discuss these guys (G-Raid, Maxon, RED, AJA, etc.). The promoters who personally, I wanted to stop and chat with, however, was Blackmagic Design, and they were a no-show at the Atlanta stop, so it's been a big disappointment.

    The thing is, it's the 'official' event Adobe CS6 (production) in the heart of the city (on the campus of Georgia Tech... ideally located, but for this UGA grad, I am obliged to say that it was a terrible choice of locations... :))). It is about as central in the Atlanta area you can get. Yet, just a month ago, there was a capacity crowd of 300 + in one of the other suburbs of Atlanta in a community college, and the whole show seemed more intense, much more in depth, all that jazz. There are 6 or 8 representatives from Adobe on the event and only 2 in the event of the tour.

    So who knows... it could have been just a specific Atlanta bummer (believe me, these Adobe people have practically camped at Turner and CNN for more than a year to grab their seats 800 + publishers of FCP and Avid... they love certainly the crowd in Atlanta). For you, if it comes to the single visit to Adobe in Chicago, it might be worth it just for times of face with the guys from Adobe, if that is any value for you.

  • Why my database showing a used advanced compression?

    Did some checking with the Oracle supplied scripts option_usage.sql & used_options_details.sql shows a couple of our databases using the advanced compression option.

    At first I thought maybe it was an option that someone forgot to uncheck during installation, but I see that this is not a configurable option during installation.

    I asked a salesman if it has been used or needed in the database and the answer was no - none of their table creation scripts had specified compression and the database was not intended to use databases.

    However, when I run the supplied oracle advanced compression scripts above, it shows that the database uses.  When I query the table of dba_feature_usage_statistics there is no list of advanced compression, but the bunch compression (which I assume is the advanced compression) appears as being used a few dozen times, but not in a year or more, here's what show the columns detected_usages, first_usage_date, last_usage_date and currently_used :

    May HeapCompression 17 4 10 25 April 12 FAKE

    HeapCompression 32 14 May 13 May 20 14 FAKE

    Since none of the tables to use, I guess that these uses must have been given pump or something like that.

    Since there seems to be no way to disable this option, I wonder what to do to stop the use of it, I don't want to use something from us are not approved and trouble on it.

    Thanks in advance

    Correct - See the bug mentioned above - it's show seeded EM tables such as those using compression, not one of your custom application tables.

  • Demonstrating the PL/SQL using SQL Developer functions

    Good afternoon

    I started writing some PL/SQL functions to replace some of the SQL I use most often.  Some very simple examples would be:

    create or replace function func_test (p_1 number) return number
    
    is
    
    x number;
    y number;
    
    begin
    
    
    x :=1;
    y :=2;
    
    
    return p_1 * x * y;
    
    
    end func_test;
    
    

    create or replace function func_test2 (p_1 varchar2) return varchar2
    
    
    is
    
    
    return_val varchar2(10);
    
    
    begin
    
    
    select p_1 into return_val from dual;
    
    
    return return_val;
    
    
    end func_test2;
    

    However, on my place of work that I have not been granted created function privileges again until I can show some examples, which is understandable.

    For the moment, without these privileges, is there a way I can build/test functions in principle locally using SQL Developer without the need to write functions in our database? I.e. can demonstrate meanings in SQL Developer, but devoid of envelope to create or syntax of replace?

    I hope that's not too vague.

    Using Oracle 11 g 2 (not connected to the database of the workplace at this time for a specific version not.)

    3.4 SQL Developer

    Thank you

    TP

    Hello

    The obvious solution is to get privileges.  If your employer wants to do you something, they give you the necessary privileges to do so.  It's silly for them to tell you to do something, but refuses to let you do.

    Otherwise, you can install Oracle on your own machine, as suggested above.  It's free and legitimate, if you only use it for learning and development.  Oracle Express Edition is very easy to install.

    As a last resort, you can write functions and procedures that are local to an anonymous block, like this:

    SET SERVEROUTPUT ON

    DECLARE
    Function func_test (p_1 number) return number
    is
    x number;
    number of y;
    Start
    x: = 1;
    y: = 2;
    return p_1 * x y;
    end func_test;
    BEGIN
    dbms_output.put_line (func_test (3))
    || '= func_test results.
    );
    END;
    /

    You can only call this kind of function of the anonymous block in which it is defined.

Maybe you are looking for

  • error 0 x 00000024 on Satellite Pro 100

    Hello I have an old Satellite Pro 100, handed one to nine.I was loading a .iso file when my laptop crashed.I restarted to get to a blue screen with the error message 0 x 00000024, followed (0x001902FE, 0xFX7AAF380, 0xF7AAF07C, 0x86E74805). He told me

  • incorrect syntax near 'float' MS SQL 2012

    This code worked before when I had only a set of two double rooms, enter the insertion at the table, but when I added the string to the batch of this error message leaped at me. Not sure where "float" comes from...

  • Brocade M5424 Fibre Channel blade switch fiber?

    Hello. Im trying to support this Brocade M5424 switch blade Fibre Channel equipment and its load of the GBIC 10Gbs with fiber LC connectors. What type of fiber patch cord do I need to connect to another switch? I Googled it out and check it: LC LC PA

  • Hello everyone: need someone to help me with something simple.

    HP technical support has not been much help to solve this problem. Could someone help me with this problem please. OK here is the scenerio. I just bought an Officejet Pro 8600 Premiunm AIO Printer. I am replacing an Officejet 8500 Pro with this new w

  • Decipher with Bitlocker

    I used bitlocker to encrypt my external hard drive (500 GB samsung) 2 years ago. I tried to decipher the hard drive recently because I can not unlock the drive with my mac.It took if a long time that I put in pause and eject the disc safely using a p