User Ethan Post - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T20:51:33Z http://stackoverflow.com/feeds/user/4527 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1268050/standard-solution-for-decoding-additive-numbers 0 Standard Solution for Decoding Additive Numbers Ethan Post 2009-08-12T18:56:07Z 2009-08-12T19:16:01Z <p>From the Oracle docs.</p> <blockquote> <p>A number representing one or more statistics class. The following class numbers are additive:</p> </blockquote> <pre><code> 1 - User 2 - Redo 4 - Enqueue 8 - Cache 16 - OS 32 - Real Application Clusters 64 - SQL 128 - Debug </code></pre> <p>It there a standard solution for taking say 22 and decoding that into 16, 4, and 2? My first guess would be to create an object which holds every possible combination and use that as a lookup? Is there a better solution using binary or something? Preferred solution would by in Python. (disclaimer: This is not homework.)</p> http://stackoverflow.com/questions/167923/what-is-best-way-to-remove-duplicate-lines-matching-regex-from-string-using-pytho 1 What is best way to remove duplicate lines matching regex from string using Python? Ethan Post 2008-10-03T17:13:37Z 2009-08-08T23:45:20Z <p>This is a pretty straight forward attempt. I haven't been using python for too long. Seems to work but I am sure I have much to learn. Someone let me know if I am way off here. Needs to find patterns, write the first line which matches, and then add a summary message for remaining consecutive lines which match pattern and return modified string.</p> <p>Just to be clear...regex <code>.*Dog.*</code> would take </p> <pre><code>Cat Dog My Dog Her Dog Mouse </code></pre> <p>and return </p> <pre><code>Cat Dog ::::: Pattern .*Dog.* repeats 2 more times. Mouse #!/usr/bin/env python # import re import types def remove_repeats (l_string, l_regex): """Take a string, remove similar lines and replace with a summary message. l_regex accepts strings and tuples. """ # Convert string to tuple. if type(l_regex) == types.StringType: l_regex = l_regex, for t in l_regex: r = '' p = '' for l in l_string.splitlines(True): if l.startswith('::::: Pattern'): r = r + l else: if re.search(t, l): # If line matches regex. m += 1 if m == 1: # If this is first match in a set of lines add line to file. r = r + l elif m &gt; 1: # Else update the message string. p = "::::: Pattern '" + t + "' repeats " + str(m-1) + ' more times.\n' else: if p: # Write the message string if it has value. r = r + p p = '' m = 0 r = r + l if p: # Write the message if loop ended in a pattern. r = r + p p = '' l_string = r # Reset string to modified string. return l_string </code></pre> http://stackoverflow.com/questions/840405/write-a-program-which-recognizes-a-sound-and-performs-action 2 Write a Program Which Recognizes a Sound and Performs Action Ethan Post 2009-05-08T15:29:23Z 2009-05-11T16:06:25Z <p>I would like to write a program which is capable of storing a sound pattern, such as a train whistle, horn (beep beep)...listening for the sound via the microphone...and then taking some action when the sound is heard. I know a little python and have programmed a long time ago in VB. Mainly I am an Oracle, PLSQL guy. The program will require a modest UI.</p> <p>What is the best solution combination (language, third party add-ons etc..) to tackle this problem?</p> http://stackoverflow.com/questions/44372/blob-storage-100-gb-mysql-sqllite-or-postgresql-python 1 BLOB Storage - 100+ GB, MySQL, SQLLite, or PostgreSQL + Python Ethan Post 2008-09-04T18:14:43Z 2009-03-01T00:08:24Z <p>I have an idea for a simple application which will monitor a group of folders, index any files it finds. A gui will allow me quickly tag new files and move them into a single database for storage and also provide an easy mechanism for querying the db by tag, name, file type and date. At the moment I have about 100+ GB of files on a couple removable hard drives, the database will be at least that big. If possible I would like to support full text search of the embedded binary and text documents. This will be a single user application.</p> <p>Not trying to start a DB war, but what open source DB is going to work best for me? I am pretty sure SQLLite is off the table but I could be wrong.</p> http://stackoverflow.com/questions/89909/in-python-how-to-i-verify-that-a-string-only-contains-letters-numbers-underscor 10 In python how to I verify that a string only contains letters, numbers, underscores and dashes? Ethan Post 2008-09-18T04:04:58Z 2009-01-26T16:31:09Z <p>I know how to do this if I iterate through all of the characters in the string but I am looking for a more elegant method.</p> <p>Thanks</p> http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/245784#245784 3 Answer by Ethan Post for What is the most useful script you've written for everyday life? Ethan Post 2008-10-29T04:19:25Z 2008-10-29T04:19:25Z <p>I use this as an autoloaded function. I can just type "mycd" and a list of directories appears which I frequently cd to. If I happen to know then number I can just say something like "mycd 2". To add a directory to the list you just type "mycd /tmp/foo/somedirectory".</p> <pre><code>function mycd { MYCD=/tmp/mycd.txt touch ${MYCD} typeset -i x typeset -i ITEM_NO typeset -i i x=0 if [[ -n "${1}" ]]; then if [[ -d "${1}" ]]; then print "${1}" &gt;&gt; ${MYCD} sort -u ${MYCD} &gt; ${MYCD}.tmp mv ${MYCD}.tmp ${MYCD} FOLDER=${1} else i=${1} FOLDER=$(sed -n "${i}p" ${MYCD}) fi fi if [[ -z "${1}" ]]; then print "" cat ${MYCD} | while read f; do x=$(expr ${x} + 1) print "${x}. ${f}" done print "\nSelect #" read ITEM_NO FOLDER=$(sed -n "${ITEM_NO}p" ${MYCD}) fi if [[ -d "${FOLDER}" ]]; then cd ${FOLDER} fi } </code></pre> http://stackoverflow.com/questions/245722/what-are-your-favorite-database-related-discussion-forums/245773#245773 1 Answer by Ethan Post for what are your favorite database-related discussion forums? Ethan Post 2008-10-29T04:13:55Z 2008-10-29T04:13:55Z <p>Oracle-L list has some really top notch folks lurking.</p> http://stackoverflow.com/questions/189861/what-property-returns-the-regular-expression-used-when-re-compile-was-called 1 What property returns the regular expression used when re.compile was called? Ethan Post 2008-10-10T01:55:27Z 2008-10-10T02:03:04Z <pre><code>def foo (): x = re.compile('^abc') foo2(x) def foo2(x): # How do I get x to return '^abc'? logging.info('x is ' + x.???) </code></pre> http://stackoverflow.com/questions/120504/optimising-a-select-query-that-runs-slow-on-oracle-which-runs-quickly-on-sql-serv/120664#120664 1 Answer by Ethan Post for Optimising a SELECT query that runs slow on Oracle which runs quickly on SQL Server Ethan Post 2008-09-23T12:29:21Z 2008-09-23T12:29:21Z <p>I agree with TZQTZIO, I don't get your query.</p> <p>If we assume the query did make sense then you might want to try using EXISTS as some suggest and avoid IN. IN is not always bad and there are likely cases which one could show it actually performs better than EXISTS.</p> <p>The question title is not very helpful. I could set this query up in one Oracle database and make it run slow and make it run fast in another. There are many factors that determine how the database resolves the query, object statistics, SYS schema statistics, and parameters, as well as server performance. Sqlserver vs. Oracle isn't the problem here.</p> <p>For those interested in query tuning and performance and want to learn more some of the google terms to search are "oak table oracle" and "oracle jonathan lewis".</p> http://stackoverflow.com/questions/102683/problem-with-ms-access-the-clipboard-and-something-called-biff5/103068#103068 0 Answer by Ethan Post for Problem with MS Access, the clipboard and something called Biff5! Ethan Post 2008-09-19T15:44:16Z 2008-09-19T15:44:16Z <p>I am not sure what the problem is but sometimes you can run into some very quirky bugs with Access. Have you tried running this on different machines? Different OS's? Would it be possible to paste the data into Excel and then import into Access using import functionality? Can you import the data directly instead of pasting it?</p> http://stackoverflow.com/questions/92561/security-should-i-reject-urls-longer-than-n 4 (Security) Should I reject URLS longer than N? Ethan Post 2008-09-18T13:34:08Z 2008-09-18T15:01:42Z <p>I am trying to write an application that uses pretty URLS or REST (still learning what this entails). Anyway my urls look like www.foo.net/some_url/some_parameter/some_keyword. I can be sure a url will never exceed N characters. Should I validate the url length with every request in order to protect against buffer overflow/injection attacks? I am going to guess this is an obvious yes but I am no security expert so perhaps I am missing something.</p> <p>Update: Thanks for the comments. I can see there are differences on this. I will reject urls over length max_expected+some_number, which will be a variable and very easy to configure as the application changes. I am guessing most buffer overflows are a typically a result of very long strings. I realize this does not make my application completely secure but I think it helps and it is low hanging fruit.</p> http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/86290#86290 0 Answer by Ethan Post for What do you use to keep notes as a developer? Ethan Post 2008-09-17T18:46:25Z 2008-09-17T18:46:25Z <p>Dave Winer's OPML outliner tool is simple and handy.</p> http://stackoverflow.com/questions/85978/query-a-tables-foreign-key-relationships/86128#86128 0 Answer by Ethan Post for Query a Table's Foreign Key relationships Ethan Post 2008-09-17T18:24:58Z 2008-09-17T18:24:58Z <p>Download the Oracle Reference Guide for 10G which explains the data dictionary tables.</p> <p>The answers above are good but check out the other tables which may relate to constraints.</p> <p>select * from dict where table_name like '%CONS%';</p> <p>Finally, get a tool like Toad or SQL Developer which allows you to browse this stuff in a UI, you need to learn to use the tables but you should use a UI also.</p> http://stackoverflow.com/questions/74010/what-is-the-difference-between-explicit-and-implicit-cursors-in-oracle/80246#80246 -3 Answer by Ethan Post for What is the difference between explicit and implicit cursors in Oracle? Ethan Post 2008-09-17T05:20:39Z 2008-09-17T05:20:39Z <p>Explicit...</p> <p>cursor foo is select * from blah; begin open fetch exit when close cursor yada yada yada</p> <p>don't use them, use implicit</p> <p>cursor foo is select * from blah;</p> <p>for n in foo loop x = n.some_column end loop</p> <p>I think you can even do this</p> <p>for n in (select * from blah) loop...</p> <p>Stick to implicit, they close themselves, they are more readable, they make life easy.</p> http://stackoverflow.com/questions/59667/why-would-i-ever-pick-char-over-varchar-in-sql/59729#59729 6 Answer by Ethan Post for Why would I ever pick CHAR over VARCHAR in SQL? Ethan Post 2008-09-12T18:42:23Z 2008-09-12T18:42:23Z <p>If your working with me and your working with Oracle I would probably make you use varchar in almost every circumstance. The assumption that char uses less processing power than varchar may be true...for now...but database engines get better over time and this sort of general rule has the making of a future "myth". </p> <p>Another thing, I have never seen a performance problem because someone decided to go with varchar. You will make much better use of your time writing good code (fewer calls to the database) and efficient SQL (how do indexes work, how does the optimizer make decisions, why is "exists" faster than "in" usually...</p> <p>Final thought, I have seen all sorts of problems with use of CHAR, people looking for '' when they should be looking for ' ', or people looking for 'FOO' when they should be looking for 'FOO (bunch of spaces here)', or people not trimming the trailing blanks, or bugs with Powerbuilder adding up to 2000 blanks to the value it returns from an Oracle procedure. </p> http://stackoverflow.com/questions/57878/sql-oracle-when-indexes-on-multiple-columns-can-be-used/59370#59370 3 Answer by Ethan Post for SQL/Oracle: when indexes on multiple columns can be used Ethan Post 2008-09-12T15:47:58Z 2008-09-12T15:47:58Z <p>That is not correct. Always best to come up with a test case that represents your data and see for yourself. If you want to really understand the Oracle SQL Optimizer google Jonathan Lewis, read his books, read his blog, check out his website, the guy is amazing, and he always generates test cases.</p> <pre><code>create table mytab nologging as ( select mod(rownum, 3) x, rownum y, mod(rownum, 3) z from all_objects, (select 'x' from user_tables where rownum &lt; 4) ); create index i on mytab (x, y, z); exec dbms_stats.gather_table_stats(ownname=&gt;'DBADMIN',tabname=&gt;'MYTAB', cascade=&gt;true); set autot trace exp select * from mytab where y=5000; Execution Plan ---------------------------------------------------------- 0 SELECT STATEMENT Optimizer=CHOOSE (Cost=1 Card=1 Bytes=10) 1 0 INDEX (SKIP SCAN) OF 'I' (INDEX) (Cost=1 Card=1 Bytes=10) </code></pre> http://stackoverflow.com/questions/59303/wrap-an-oracle-schema-update-in-a-transaction/59341#59341 5 Answer by Ethan Post for Wrap an Oracle schema update in a transaction Ethan Post 2008-09-12T15:38:10Z 2008-09-12T15:38:10Z <p>You can not turn this off. Fairly easy to work around by designing your scripts to drop tables in the event they already exist etc...</p> <p>You can look at using FLASHBACK database, I believe you can do this at the schema/object level but check the docs to confirm that. You would need to be on 10G for that to work. </p> http://stackoverflow.com/questions/55899/how-to-see-the-actual-oracle-sql-statement-that-is-being-executed/55920#55920 5 Answer by Ethan Post for How to see the actual Oracle SQL statement that is being executed Ethan Post 2008-09-11T06:59:55Z 2008-09-11T06:59:55Z <p>Sorry for the short answer but it is late. Google "oracle event 10046 sql trace". It would be best to trace an individual session because figuring which SQL belongs to which session from v$sql is no easy if it is shared sql and being used by multiple users.</p> <p>If you want to impress your Oracle DBA friends, learn how to set an oracle trace with event 10046, interpret the meaning of the wait events and find the top cpu consumers. </p> <p>Quest had a free product that allowed you to capture the SQL as it went out from the client side but not sure if it works with your product/version of Oracle. Google "quest oracle sql monitor" for this.</p> <p>Good night.</p> http://stackoverflow.com/questions/46387/how-to-get-the-correct-content-length-for-a-post-request 1 How to get the correct Content-Length for a POST request. Ethan Post 2008-09-05T17:48:00Z 2008-09-05T18:57:20Z <p>I am using a perl script to POST to Google Appengine application. I post a text file containing some XML using the -F option.</p> <p><a href="http://www.cpan.org/authors/id/E/EL/ELIJAH/bget-1.1" rel="nofollow">http://www.cpan.org/authors/id/E/EL/ELIJAH/bget-1.1</a></p> <p>There is a version 1.2, already tested and get the same issue. The post looks something like this.</p> <pre><code>Host: foo.appspot.com User-Agent: lwp-request/1.38 Content-Type: text/plain Content-Length: 202 &lt;XML&gt; &lt;BLAH&gt;Hello World&lt;/BLAH&gt; &lt;/XML&gt; </code></pre> <p>I have modified the example so the 202 isn't right, don't worry about that. On to the problem. The Content-Length matches the number of bytes on the file, however unless I manually increase the Content-Length it does not send all of the file, a few bytes get truncated. The number of bytes truncated is not the same for files of different sizes. I used the -r option on the script and I can see what it is sending and it is sending all of the file, but Google Appengine self.request.body shows that not everything is received. I think the solution is to get the right number for Content-Length and apparently it isn't as simple as number of bytes on the file or the perl script is mangling it somehow.</p> <p>Update: Thanks to Erickson for the right answer. I used printf to append characters to the end of the file and it always truncated exactly the number of lines in the file. I suppose I could figure out what is being added by iterating through every character on the server side but not worth it. This wasn't even answered over on the google groups set up for app engine!</p> http://stackoverflow.com/questions/46387/how-to-get-the-correct-content-length-for-a-post-request/46409#46409 0 Answer by Ethan Post for How to get the correct Content-Length for a POST request. Ethan Post 2008-09-05T17:54:35Z 2008-09-05T17:54:35Z <p>Erickson,</p> <p>That might be it, I will test.</p> http://stackoverflow.com/questions/46380/why-doesnt-oracle-tell-you-which-table-or-view-does-not-exist/46400#46400 6 Answer by Ethan Post for Why doesn't Oracle tell you WHICH table or view does not exist? Ethan Post 2008-09-05T17:51:57Z 2008-09-05T17:51:57Z <p>You can set an EVENT in your parameter file (plain text or spfile) to force Oracle to dump a detailed trace file in the user_dump_dest, the object name might be in there, if not the SQL should be.</p> <p>EVENT="942 trace name errorstack level 12"</p> <p>If you are using a plain text file you need to keep all your EVENT settings on consecutive lines. Not sure how that applied to spfile.</p> http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/44565#44565 1 Answer by Ethan Post for How do I prevent replay attacks? Ethan Post 2008-09-04T19:28:39Z 2008-09-04T19:28:39Z <p>I am new to some aspects of web programming but I was reading up on this the other day. I believe you need to use a <a href="http://www.intertwingly.net/blog/1585.html" rel="nofollow">Nonce</a>.</p> http://stackoverflow.com/questions/18075/sql-query-tools/44550#44550 0 Answer by Ethan Post for SQL/Query tools? Ethan Post 2008-09-04T19:23:06Z 2008-09-04T19:23:06Z <p>I use Toad, but hate it. It is buggy but for me it gets the job done. I have always been impressed with <a href="http://www.embarcadero.com/" rel="nofollow">Embarcadero</a>, you can tell they know how to design software. If I had the money I would probably buy a tool from them. We recently purchased E/R studio after evaluating a ton of other products. I have never liked what Oracle puts out but it is free so in your case I would go with that.</p> http://stackoverflow.com/questions/9081/grep-a-file-but-show-several-surrounding-lines/44531#44531 0 Answer by Ethan Post for grep a file, but show several surrounding lines? Ethan Post 2008-09-04T19:16:22Z 2008-09-04T19:16:22Z <p>I keep a copy of <a href="http://www.brendangregg.com/Perl/search" rel="nofollow">Brendan Gregg's perl script</a> around for this purpose. Works well.</p> http://stackoverflow.com/questions/44372/blob-storage-100-gb-mysql-sqllite-or-postgresql-python/44443#44443 1 Answer by Ethan Post for BLOB Storage - 100+ GB, MySQL, SQLLite, or PostgreSQL + Python Ethan Post 2008-09-04T18:42:19Z 2008-09-04T18:42:19Z <p>My preference would be to store the document with the metadata. One reason, is relational integrity. You can't easily move the files or modify the files without the action being brokered by the db. I am sure I can handle these problems but it isn't as clean as I would like and my experience has been that most vendors can handle huge amounts of binary data in the database these days. I guess I was wondering if PostgreSQL or MySQL have any obvious advantages in these areas, I am primarily familiar with Oracle. Anyway, thanks for the response, if the DB knows where the external file is it will also be easy to bring the file in at a later date if I want. Another aspect of the question was if either database is easier to work with when using Python. I'm assuming that is a wash.</p> http://stackoverflow.com/questions/44281/database-patterns/44314#44314 3 Answer by Ethan Post for Database Patterns Ethan Post 2008-09-04T17:55:17Z 2008-09-04T17:55:17Z <p>Books by E.F. Codd and C.J. Date are the most obvious answers. I have not read this particular book but I am familiar with the authors, it is likely quite good.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/1590597451" rel="nofollow">Applied Mathmatics for Database Professionals</a> by Lexx de Haan and Toon Koppelaars.</p> http://stackoverflow.com/questions/44181/sql-select-like-column-from-two-tables/44196#44196 0 Answer by Ethan Post for SQL: Select like column from two tables Ethan Post 2008-09-04T17:08:06Z 2008-09-04T17:08:06Z <p>In Oracle (at least) there is UNION and UNION ALL, UNION ALL will return all results from both sets even if there are duplicates, where as UNION will return the distinct results from both sets.</p> http://stackoverflow.com/questions/29699/how-do-i-deal-with-quotes-in-sql/44074#44074 1 Answer by Ethan Post for How do I deal with quotes ' in SQL Ethan Post 2008-09-04T16:03:56Z 2008-09-04T16:03:56Z <p>Use of parameterized SQL has other benefits, it reduces CPU overhead (as well as other resources) in Oracle by reducing the amount of work Oracle requires in order to parse the statement. If you do not use parameters (we call them bind variables in Oracle) then "select * from foo where bar='cat'" and "select * from foo where bar='dog'" are treated as separate statements, where as "select * from foo where bar=:b1" is the same statement, meaning things like syntax, validity of objects that are referenced etc...do not need to be checked again. There are occasional problems that arise when using bind variables which usually manifests itself in not getting the most efficient SQL execution plan but there are workarounds for this and these problems really depend on the predicates you are using, indexing and data skew.</p> http://stackoverflow.com/questions/1274035/what-is-the-correct-way-to-generate-a-json-from-file-in-googleappengine Comment by Ethan Post on What is the correct way to generate a json from file in GoogleAppEngine? Ethan Post 2009-08-13T19:47:34Z 2009-08-13T19:47:34Z Have you looked at &quot;from django.utils import simplejson&quot;? http://stackoverflow.com/questions/167923/what-is-best-way-to-remove-duplicate-lines-matching-regex-from-string-using-pytho/1250162#1250162 Comment by Ethan Post on What is best way to remove duplicate lines matching regex from string using Python? Ethan Post 2009-08-10T13:22:04Z 2009-08-10T13:22:04Z Thanks. Non-neighboring matches are not counted. Single-line matches are not counted. http://stackoverflow.com/questions/1244636/oracle-how-to-execute-an-insert-trigger-without-delaying-the-insert-response/1244696#1244696 Comment by Ethan Post on Oracle: How to execute an insert trigger without delaying the insert response? Ethan Post 2009-08-07T18:00:17Z 2009-08-07T18:00:17Z If you are on 10G or above you might have a look at the job scheduler before you use dbms_job, I haven't played with it too much yet but there may be more options and it is the replacement for dbms_job. You could also look at using queuing or dbms_pipe to set up a process to handle the request almost instantly. http://stackoverflow.com/questions/1175858/google-app-domain-authentication-examples Comment by Ethan Post on Google App Domain authentication examples. Ethan Post 2009-07-24T16:02:43Z 2009-07-24T16:02:43Z Think I saw a video from recent Google IO conf. re: OAuth. Videos and presentations are online. http://stackoverflow.com/questions/840405/write-a-program-which-recognizes-a-sound-and-performs-action Comment by Ethan Post on Write a Program Which Recognizes a Sound and Performs Action Ethan Post 2009-05-08T16:22:39Z 2009-05-08T16:22:39Z If I wanted a program which could either run on the desktop or run from the web, would Flash or Silverlight be the way to go? http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157651#157651 Comment by Ethan Post on Do you have a hobby development project? Ethan Post 2008-10-03T18:55:06Z 2008-10-03T18:55:06Z Your booking page renders in text. http://stackoverflow.com/questions/167923/what-is-best-way-to-remove-duplicate-lines-matching-regex-from-string-using-pytho/168009#168009 Comment by Ethan Post on What is best way to remove duplicate lines matching regex from string using Python? Ethan Post 2008-10-03T18:48:14Z 2008-10-03T18:48:14Z Going to have to do some reading to wrap my mind around use of yield. Thanks. http://stackoverflow.com/questions/120504/optimising-a-select-query-that-runs-slow-on-oracle-which-runs-quickly-on-sql-serv/121161#121161 Comment by Ethan Post on Optimising a SELECT query that runs slow on Oracle which runs quickly on SQL Server Ethan Post 2008-09-23T16:51:08Z 2008-09-23T16:51:08Z I agree, this is obsolete. Please try to avoid using it. Use DBMS_STATS and make sure you also get your indexes, you can set cascade=&gt;true when you gather stats for the table. http://stackoverflow.com/questions/113440/displaying-code-in-blog-posts/113452#113452 Comment by Ethan Post on Displaying code in blog posts Ethan Post 2008-09-22T17:37:59Z 2008-09-22T17:37:59Z Reading up on this one, performance doesn't look hot if you have a lot of code to display. http://stackoverflow.com/questions/59667/why-would-i-ever-pick-char-over-varchar-in-sql/59701#59701 Comment by Ethan Post on Why would I ever pick CHAR over VARCHAR in SQL? Ethan Post 2008-09-12T18:53:32Z 2008-09-12T18:53:32Z There is a degree of speculation in your comment. I have seen time and time again assumptions like these get tested and the exact opposite turn out to be true. The problem is many engineers will take info like this as the gospel. Please folks, create test cases which reflect your real situations. http://stackoverflow.com/questions/59561/what-tools-techniques-can-benefit-a-solo-developer/59582#59582 Comment by Ethan Post on What tools/techniques can benefit a solo developer? Ethan Post 2008-09-12T17:41:22Z 2008-09-12T17:41:22Z I love TiddlyWiki. I use it to document issues with engineers regarding database related check ins and send it out via email. http://stackoverflow.com/questions/55899/how-to-see-the-actual-oracle-sql-statement-that-is-being-executed/55912#55912 Comment by Ethan Post on How to see the actual Oracle SQL statement that is being executed Ethan Post 2008-09-11T07:01:19Z 2008-09-11T07:01:19Z Just an FYI, be careful with queries against this table in a busy production system. This is an aggregate of v$sql and as such can be a very expensive query.