Hidden features of PL/SQL - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T07:49:15Z http://stackoverflow.com/feeds/question/1031485 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1031485/hidden-features-of-pl-sql 5 Hidden features of PL/SQL Adam Paynter 2009-06-23T09:20:03Z 2009-09-10T11:18:11Z <p>In light of the <a href="http://stackoverflow.com/search?q=hidden%2Bfeatures">"Hidden features of..."</a> series of questions, what little-known features of PL/SQL have become useful to you?</p> <p><strong>Edit:</strong> Features specific to PL/SQL are preferred over features of Oracle's SQL syntax. However, because PL/SQL can use most of Oracle's SQL constructs, they may be included if they make programming in PL/SQL easier.</p> http://stackoverflow.com/questions/1031485/hidden-features-of-pl-sql/1031522#1031522 2 Answer by Adam Paynter for Hidden features of PL/SQL Adam Paynter 2009-06-23T09:27:49Z 2009-06-23T09:27:49Z <p>One little-known feature I have had great success with is the ability to insert into a table using a variable declared as its <code>%ROWTYPE</code>. For example:</p> <pre><code>CREATE TABLE CUSTOMERS ( id NUMBER, name VARCHAR2(100), birth DATE, death DATE ) PROCEDURE insert_customer IS customer CUSTOMERS%ROWTYPE; BEGIN customer.id := 45; customer.name := 'John Smith'; customer.birth := TO_DATE('1978/04/03', 'YYYY/MM/DD'); INSERT INTO CUSTOMERS VALUES customer; END; </code></pre> <p>Although it chews up a bit more redo tablespace, it certainly makes inserting data (especially into larger tables) much clearer. It also avoids the multitude of variables needed to store each column's value you wish to insert.</p> http://stackoverflow.com/questions/1031485/hidden-features-of-pl-sql/1031717#1031717 2 Answer by Jonathan for Hidden features of PL/SQL Jonathan 2009-06-23T10:20:10Z 2009-06-23T10:20:10Z <p>Maybe not hidden enough , but I love the <strong>Merge</strong> statement that allow make upserts (insert or update)</p> <pre><code>MERGE &lt;hint&gt; INTO &lt;table_name&gt; USING &lt;table_view_or_query&gt; ON (&lt;condition&gt;) WHEN MATCHED THEN &lt;update_clause&gt; DELETE &lt;where_clause&gt; WHEN NOT MATCHED THEN &lt;insert_clause&gt; [LOG ERRORS &lt;log_errors_clause&gt; &lt;reject limit &lt;integer | unlimited&gt;]; </code></pre> http://stackoverflow.com/questions/1031485/hidden-features-of-pl-sql/1031943#1031943 2 Answer by Arno Conradie for Hidden features of PL/SQL Arno Conradie 2009-06-23T11:19:24Z 2009-06-23T11:19:24Z <p>The truly hidden oracle function is the OVERLAPS function, but is properly not very wise to use any unsupported futures</p> <pre><code> select 'yes' from dual where (sysdate-5,sysdate) overlaps (sysdate-2,sysdate-1); </code></pre> http://stackoverflow.com/questions/1031485/hidden-features-of-pl-sql/1032235#1032235 4 Answer by Jeffrey Kemp for Hidden features of PL/SQL Jeffrey Kemp 2009-06-23T12:25:39Z 2009-06-23T12:25:39Z <p>You can override variables, you can name anonymous blocks, and you can still refer to the overridden variables by name:</p> <pre><code>PROCEDURE myproc IS n NUMBER; BEGIN n := 1; &lt;&lt;anon&gt;&gt; DECLARE n NUMBER; BEGIN n := 2; dbms_output.put_line('n=' || n); dbms_output.put_line('anon.n=' || anon.n); dbms_output.put_line('myproc.n=' || myproc.n); END anon; END myproc; </code></pre> http://stackoverflow.com/questions/1031485/hidden-features-of-pl-sql/1032379#1032379 2 Answer by Robert Merkwürdigeliebe for Hidden features of PL/SQL Robert Merkwürdigeliebe 2009-06-23T12:51:56Z 2009-06-23T12:51:56Z <p>This a PL/SQL procedural construct i use a lot (credits to Steven Feuerstein and Chen Shapira). An Associative array used for chaching, but it does not pre load all data but gets data from database if needed and puts it in the Associative array.</p> <pre><code>create or replace PACKAGE justonce IS FUNCTION hair (code_in IN hairstyles.code%TYPE) RETURN hairstyles%ROWTYPE; TYPE hair_t IS TABLE OF hairstyles%ROWTYPE INDEX BY BINARY_INTEGER; hairs hair_t; END justonce; create or replace PACKAGE BODY justonce IS FUNCTION hair (code_in IN hairstyles.code%TYPE) RETURN hairstyles%ROWTYPE IS return_value hairstyles%ROWTYPE; FUNCTION hair_from_database RETURN hairstyles%ROWTYPE IS CURSOR hair_cur IS SELECT * FROM hairstyles WHERE code = code_in; BEGIN OPEN hair_cur; FETCH hair_cur INTO return_value; CLOSE hair_cur; RETURN return_value; END hair_from_database; BEGIN IF NOT (hairs.exists(code_in)) THEN dbms_output.put_line('Get record from database'); hairs (code_in) := hair_from_database; END IF; RETURN hairs (code_in); END hair; END justonce; </code></pre> <p>Test it : </p> <pre><code>declare h hairstyles%ROWTYPE; begin for i in 1000..1004 loop h := justonce.hair(i); dbms_output.put_line(h.description); end loop; for i in 1000..1004 loop h := justonce.hair(i); dbms_output.put_line(h.description||' '||h.price); end loop; end; / Get record from database CREWCUT Get record from database BOB Get record from database SHAG Get record from database BOUFFANT Get record from database PAGEBOY CREWCUT 10 BOB 20 SHAG 21 BOUFFANT 11 PAGEBOY 44 </code></pre> http://stackoverflow.com/questions/1031485/hidden-features-of-pl-sql/1032965#1032965 2 Answer by Andrew from NZSG for Hidden features of PL/SQL Andrew from NZSG 2009-06-23T14:38:02Z 2009-06-23T14:38:02Z <ol> <li>An undocumented function: dbms_system.ksdwrt (writes to alert/trace files)</li> <li>DBMS_SQL package (as an example of its use see <a href="http://stackoverflow.com/questions/1028368/can-you-help-me-write-a-procedure-in-oracle-to-spool-data-from-a-table-to-a-csv-f/1031113#1031113">this question</a></li> <li>AUTHID CURRENT_USER clause</li> <li><a href="http://download.oracle.com/docs/cd/B19306%5F01/appdev.102/b14261/fundamentals.htm#sthref545" rel="nofollow">Conditional compilation</a></li> </ol> http://stackoverflow.com/questions/1031485/hidden-features-of-pl-sql/1037712#1037712 2 Answer by Diederik Hoogenboom for Hidden features of PL/SQL Diederik Hoogenboom 2009-06-24T11:11:30Z 2009-06-24T11:42:22Z <p>You can index pl/sql tables by other types besides integers. This way you can create "dictionary" like structures, which can make your code much easier to read:</p> <p>Example:</p> <pre><code>DECLARE TYPE dictionary IS TABLE OF VARCHAR2(200) INDEX BY VARCHAR2(100); dict dictionary; BEGIN dict('NAME') := 'John Doe'; dict('CITY') := 'New York'; dbms_output.put_line('Name:' || dict('NAME')); END; </code></pre> http://stackoverflow.com/questions/1031485/hidden-features-of-pl-sql/1044714#1044714 1 Answer by l0b0 for Hidden features of PL/SQL l0b0 2009-06-25T15:50:35Z 2009-06-25T15:50:35Z <p>Dynamic PL/SQL is ugly, but can do some interesting stuff. For example, names can be treated as variables, which I've used earlier to traverse %rowtype variables like arrays, and to create a function which will, for a given table name, return a cursor which selects a single row with the default values of each column. Both are useful workarounds for denormalized tables.</p> http://stackoverflow.com/questions/1031485/hidden-features-of-pl-sql/1081994#1081994 2 Answer by Tony Andrews for Hidden features of PL/SQL Tony Andrews 2009-07-04T10:58:47Z 2009-07-04T10:58:47Z <p>My answer to <a href="http://stackoverflow.com/questions/381231/hidden-features-in-oracle/381380#381380">Hidden Features in Oracle</a> is relevant here:</p> <p>Since Apex is now part of every Oracle database, these Apex utility functions are useful even if you aren't using Apex:</p> <pre><code>SQL&gt; declare 2 v_array apex_application_global.vc_arr2; 3 v_string varchar2(2000); 4 begin 5 6 -- Convert delimited string to array 7 v_array := apex_util.string_to_table('alpha,beta,gamma,delta', ','); 8 for i in 1..v_array.count 9 loop 10 dbms_output.put_line(v_array(i)); 11 end loop; 12 13 -- Convert array to delimited string 14 v_string := apex_util.table_to_string(v_array,'|'); 15 dbms_output.put_line(v_string); 16 end; 17 / alpha beta gamma delta alpha|beta|gamma|delta PL/SQL procedure successfully completed. </code></pre> http://stackoverflow.com/questions/1031485/hidden-features-of-pl-sql/1404695#1404695 0 Answer by Adam Paynter for Hidden features of PL/SQL Adam Paynter 2009-09-10T11:18:11Z 2009-09-10T11:18:11Z <p>Procedures and functions may be defined within <code>DECLARE</code> blocks:</p> <pre><code>DECLARE PROCEDURE print(text VARCHAR2) IS BEGIN DBMS_OUTPUT.put_line(text); END; BEGIN print('Yay!'); print('Woo hoo!'); END; </code></pre> <p>This is handy for creating stand-alone scripts.</p>