Hidden features in Oracle - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T00:24:41Zhttp://stackoverflow.com/feeds/question/381231http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/381231/hidden-features-in-oracle15Hidden features in OraclePeter Gfader2008-12-19T15:12:55Z2009-11-02T20:03:59Z
<p>I enjoyed the answers and questions about <a href="http://stackoverflow.com/questions/121243/hidden-features-of-sql-server">hidden features in sql server</a> </p>
<p>What can you tell us about Oracle?<br />
Hidden tables, inner workings of ..., secret stored procs, package that has good utils...</p>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/381268#3812681Answer by Peter Gfader for Hidden features in OraclePeter Gfader2008-12-19T15:25:56Z2008-12-19T15:25:56Z<p>Q: How to call a stored with a cursor from TOAD? </p>
<p>A: Example, change to your cursor, packagename and stored proc name</p>
<pre><code>declare cursor PCK_UTILS.typ_cursor;
begin
PCK_UTILS.spc_get_encodedstring(
'U',
10000002,
null,
'none',
cursor);
end;
</code></pre>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/381313#3813132Answer by MusiGenesis for Hidden features in OracleMusiGenesis2008-12-19T15:35:33Z2008-12-19T15:35:33Z<p><a href="http://www.orafaq.com/wiki/Advanced_Replication_FAQ" rel="nofollow">Snapshot</a> tables. Also found in Oracle Lite, and extremely useful for rolling your own replication mechanism.</p>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/381380#38138010Answer by Tony Andrews for Hidden features in OracleTony Andrews2008-12-19T15:57:17Z2008-12-19T15:57:17Z<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> 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/381231/hidden-features-in-oracle/381615#3816153Answer by David Aldridge for Hidden features in OracleDavid Aldridge2008-12-19T17:27:57Z2008-12-19T17:27:57Z<p>Bypass the buffer cache and read straight from disk using direct path reads.</p>
<pre><code>alter session set "_serial_direct_read"=true;
</code></pre>
<p>Causes a tablespace (9i) or fast object (10g+) checkpoint, so careful on busy OLTP systems.</p>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/381627#3816278Answer by David Aldridge for Hidden features in OracleDavid Aldridge2008-12-19T17:32:30Z2008-12-19T17:32:30Z<p>The cardinality hint is mostly undocumented.</p>
<pre><code> explain plan for
select /*+ cardinality(@inner 5000) */ *
from (select /*+ qb_name(inner) */ * from dual)
/
select * from table(dbms_xplan.display)
/
--------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 5000 | 10000 | 2 (0)| 00:00:01 |
| 1 | TABLE ACCESS FULL| DUAL | 1 | 2 | 2 (0)| 00:00:01 |
--------------------------------------------------------------------------
</code></pre>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/381629#3816294Answer by David Aldridge for Hidden features in OracleDavid Aldridge2008-12-19T17:33:08Z2008-12-19T17:33:08Z<p>The OVERLAPS predicate is undocumented.</p>
<p><a href="http://oraclesponge.wordpress.com/2008/06/12/the-overlaps-predicate/" rel="nofollow">http://oraclesponge.wordpress.com/2008/06/12/the-overlaps-predicate/</a></p>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/381631#3816318Answer by David Aldridge for Hidden features in OracleDavid Aldridge2008-12-19T17:34:33Z2008-12-23T17:39:45Z<p>"Full table scans are not always bad. Indexes are not always good."</p>
<p>An index-based access method is less efficient at reading rows than a full scan when you measure it in terms of rows accessed per unit of work (typically per logical read). However many tools will interpret a full table scan as a sign of inefficiency.</p>
<p>Take an example where you are reading a few hundred invoices frmo an invoice table and looking up a payment method in a small lookup table. Using an index to probe the lookup table for every invoice probably means three or four logical io's per invoice. However, a full scan of the lookup table in preparation for a hash join from the invoice data would probably require only a couple of logical reads, and the hash join itself would cmoplete in memory at almost no cost at all.</p>
<p>However many tools would look at this and see "full table scan", and tell you to try to use an index. If you do so then you may have just de-tuned your code.</p>
<p>Incidentally over reliance on indexes, as in the above example, causes the "Buffer Cache Hit Ratio" to rise. This is why the BCHR is mostly nonsense as a predictor of system efficiency.</p>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/381841#3818413Answer by EddieAwad for Hidden features in OracleEddieAwad2008-12-19T18:44:55Z2008-12-19T18:44:55Z<p>More undocumented stuff at <a href="http://awads.net/wp/tag/undocumented/" rel="nofollow">http://awads.net/wp/tag/undocumented/</a></p>
<p>Warning: Use at your own risk.</p>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/389513#3895135Answer by Mark Brady for Hidden features in OracleMark Brady2008-12-23T17:25:11Z2008-12-23T17:25:11Z<p>I just found out about the pseudo-column Ora_rowSCN. If you don't set your table up for this, this pcolumn gives you the block SCN. This could be really useful for the emergency, "Oh crap I have no auditing on this table and wonder if someone has changed the data since yesterday."</p>
<p>But even better is if you create the table with Rowdependecies ON. That puts the SCN of the last change on every row. This will help you avoid a "Lost Edit" problem without having to include every column in your query.</p>
<p>IOW, when you app grabs a row for user modification, also select the Ora_rowscn. Then when you post the user's edits, include Ora_rowscn = v_rscn in addition to the unique key in the where clause. If someone has touched the row since you grabbed it, aka lost edit, the update will match zero rows since the ora_rowscn will have changed.</p>
<p>So cool. </p>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/389552#3895526Answer by David Aldridge for Hidden features in OracleDavid Aldridge2008-12-23T17:40:19Z2008-12-23T17:40:19Z<p>The Buffer Cache Hit Ratio is virtually meaningless as a predictor of system efficiency</p>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/389556#3895565Answer by David Aldridge for Hidden features in OracleDavid Aldridge2008-12-23T17:40:58Z2008-12-23T17:40:58Z<p>Frequent rebuilding of indexes is almost always a waste of time.</p>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/389564#3895646Answer by David Aldridge for Hidden features in OracleDavid Aldridge2008-12-23T17:43:28Z2008-12-23T17:43:28Z<p>You can view table data as of a previous time using Flashback Query, with certain limitations.</p>
<pre><code>Select *
from my_table as of timestamp(timestamp '2008-12-01 15:21:13')
</code></pre>
<p>11g has a whole new feature set around preserving historical changes more robustly.</p>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/552147#5521472Answer by cdonnelly for Hidden features in Oraclecdonnelly2009-02-16T03:23:30Z2009-02-16T03:23:30Z<p><a href="http://stackoverflow.com/users/35693/peter-gfader">@Peter</a></p>
<p>You can actually bind a variable of type "Cursor" in TOAD, then use it in your statement and it will display the results in the result grid.</p>
<pre><code>exec open :cur for select * from dual;
</code></pre>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/593018#5930182Answer by FerranB for Hidden features in OracleFerranB2009-02-26T23:50:46Z2009-02-26T23:50:46Z<p>If you get the value of <code>PASSWORD</code> column on <code>DBA_USERS</code> you can backup/restore passwords without knowing them:</p>
<pre><code> ALTER USER xxx IDENTIFIED BY VALUES 'xxxx';
</code></pre>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/1191114#11911142Answer by WW for Hidden features in OracleWW2009-07-27T23:03:13Z2009-07-27T23:03:13Z<p>I don't know if this counts as hidden, but I was pretty happy when I saw this way of quickly seeing what happened with a SQL statement you are tuning.</p>
<pre><code>SELECT /*+ GATHER_PLAN_STATISTICS */ * FROM DUAL;
SELECT * FROM TABLE(dbms_xplan.display_cursor( NULL, NULL, 'RUNSTATS_LAST'))
;
PLAN_TABLE_OUTPUT
-----------------------------------------------------
SQL_ID 5z36y0tq909a8, child number 0
-------------------------------------
SELECT /*+ GATHER_PLAN_STATISTICS */ * FROM DUAL
Plan hash value: 272002086
---------------------------------------------------------------------------------------------
| Id | Operation | Name | Starts | E-Rows | A-Rows | A-Time | Buffers | Reads |
---------------------------------------------------------------------------------------------
| 1 | TABLE ACCESS FULL| DUAL | 1 | 1 | 1 |00:00:00.02 | 3 | 2 |
---------------------------------------------------------------------------------------------
12 rows selected.
</code></pre>
<p>Where:</p>
<ul>
<li>E-Rows is estimated rows.</li>
<li>A-Rows is actual rows.</li>
<li>A-Time is actual time.</li>
<li>Buffers is actual buffers.</li>
</ul>
<p>Where the estimated plan varies from the actual execution by orders of magnitude, you know you have problems.</p>
http://stackoverflow.com/questions/381231/hidden-features-in-oracle/1663364#16633641Answer by Dave K for Hidden features in OracleDave K2009-11-02T20:03:59Z2009-11-02T20:03:59Z<p>Not a hidden feature, but Finegrained-access-control (FGAC), also known as row-level security, is something I have used in the past and was impressed with the efficiency of its implementation. If you are looking for something that guarantees you can control the granularity of how rows are exposed to users with differing permissions - regardless of the application that is used to view data (SQL*Plus as well as your web app) - then this a gem.</p>
<p>The built-in fulltext indexing is more widely documented, but still stands out because of its stability (just try running a full-reindexing of fulltext-indexed columns on similar data samples on MS-SQL and Oracle and you'll see the speed difference).</p>