I enjoyed the answers and questions about hidden features in sql server
What can you tell us about Oracle?
Hidden tables, inner workings of ..., secret stored procs, package that has good utils...
|
I enjoyed the answers and questions about hidden features in sql server What can you tell us about Oracle? | ||||
|
feedback
|
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
|
Since Apex is now part of every Oracle database, these Apex utility functions are useful even if you aren't using Apex:
| ||||
feedback
|
|
"Full table scans are not always bad. Indexes are not always good." 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. 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. 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. 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. | |||||
|
feedback
|
|
The cardinality hint is mostly undocumented.
| |||||||
feedback
|
|
The Buffer Cache Hit Ratio is virtually meaningless as a predictor of system efficiency | ||||
|
feedback
|
|
You can view table data as of a previous time using Flashback Query, with certain limitations.
11g has a whole new feature set around preserving historical changes more robustly. | ||||
|
feedback
|
|
wm_concat works like the the MySql group_concat but it is undocumented. with data:
gives you:
| |||||||
feedback
|
|
The OVERLAPS predicate is undocumented. http://oraclesponge.wordpress.com/2008/06/12/the-overlaps-predicate/ | |||||
feedback
|
|
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." 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. 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. So cool. | ||||
|
feedback
|
|
If you get the value of
| |||||
feedback
|
|
Bypass the buffer cache and read straight from disk using direct path reads.
Causes a tablespace (9i) or fast object (10g+) checkpoint, so careful on busy OLTP systems. | ||||
|
feedback
|
|
More undocumented stuff at http://awads.net/wp/tag/undocumented/ Warning: Use at your own risk. | ||||
|
feedback
|
|
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.
Where:
Where the estimated plan varies from the actual execution by orders of magnitude, you know you have problems. | ||||
|
feedback
|
|
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. 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). | ||||
|
feedback
|
|
| |||||
feedback
|
|
Snapshot tables. Also found in Oracle Lite, and extremely useful for rolling your own replication mechanism. | |||||
feedback
|
|
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.
| ||||
|
feedback
|
|
Q: How to call a stored with a cursor from TOAD? A: Example, change to your cursor, packagename and stored proc name
| |||||
feedback
|
|
The Model Clause (available for Oracle 10g and up) | ||||
|
feedback
|
|
WM_CONCAT for string aggregation | ||||
|
feedback
|
|
Scalar subquery caching is one of the most surprising features in Oracle
The "caching" subquery above evaluates Of course, if | ||||
|
feedback
|