User Tony Andrews - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T16:07:06Z http://stackoverflow.com/feeds/user/18747 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1929361/what-is-the-syntax-to-define-an-oracle-procedure-within-an-another-stored-procedu/1929396#1929396 5 Answer by Tony Andrews for What is the syntax to define an Oracle procedure within an another stored procedure? Tony Andrews 2009-12-18T16:45:26Z 2009-12-18T16:45:26Z <pre><code>create or replace PROCEDURE TOP_PROCEDURE (...) IS variable NUMBER; PROCEDURE nested_procedure (...) IS BEGIN NULL; END; PROCEDURE another_nested_procedure (...) IS BEGIN NULL; END; BEGIN NULL; END; </code></pre> <p>Local procedures must be declared <strong>after</strong> anything else (e.g. variables).</p> http://stackoverflow.com/questions/1928203/oracle-capture-exception-object/1928320#1928320 1 Answer by Tony Andrews for ORACLE capture exception object. Tony Andrews 2009-12-18T13:53:28Z 2009-12-18T14:38:14Z <p>No, there isn't. But more recent versions of Oracle (10G at least) does it for you with its own exceptions:</p> <pre><code>SQL&gt; create table t (v varchar2(3)); Table created. SQL&gt; insert into t values ('xxxx'); insert into t values ('xxxx') * ERROR at line 1: ORA-12899: value too large for column "MYSCHEMA"."T"."V" (actual: 4, maximum: 3) </code></pre> <p>To get what you are looking for you could parse this error to get the table and column names (T and V in this example) and then look up the comments from USER_TAB_COMMENTS and USER_COL_COMMENTS and re-construct the message using those.</p> http://stackoverflow.com/questions/1928317/converting-to-date-with-multiple-possible-masks-in-oracle/1928379#1928379 4 Answer by Tony Andrews for Converting to date with multiple possible masks in Oracle Tony Andrews 2009-12-18T14:04:41Z 2009-12-18T14:04:41Z <p>No, but some Oracle date formats are "forgiving" of differences e.g.</p> <pre><code>SQL&gt; select to_date('2009.12.31','YYYY/MM/DD') from dual; TO_DATE('20 ----------- 31-DEC-2009 </code></pre> <p>So that may reduce the amount of cases you need to handle. I suggest you write a function along the lines you were thinking of, so that it can be called from all the places in your code where you need to handle dates like this.</p> http://stackoverflow.com/questions/1928104/find-a-string-within-the-source-code-ddl-of-a-stored-procedure-in-oracle/1928120#1928120 5 Answer by Tony Andrews for Find a string within the source code (DDL) of a stored procedure in oracle. Tony Andrews 2009-12-18T13:11:22Z 2009-12-18T13:11:22Z <p>Yes, use USER_SOURCE:</p> <pre><code>select distinct name from user_source where type = 'PROCEDURE' and lower(text) like lower('%the_text_you_want%'); </code></pre> http://stackoverflow.com/questions/1908461/nhibernate-fluent-nhibernate-oracle-index/1908574#1908574 0 Answer by Tony Andrews for NHibernate + Fluent NHibernate + Oracle Index Tony Andrews 2009-12-15T16:18:53Z 2009-12-15T16:18:53Z <p>Are your optimizer statistics up to date? If not you may find that once they are generated you don't need the hint at all.</p> http://stackoverflow.com/questions/1899697/pl-sql-how-to-detect-which-browser-is-being-used/1900156#1900156 4 Answer by Tony Andrews for PL/SQL: How to detect which browser is being used? Tony Andrews 2009-12-14T10:39:31Z 2009-12-14T10:39:31Z <p>This will tell you:</p> <pre><code>owa_util.get_cgi_env('HTTP_USER_AGENT') </code></pre> http://stackoverflow.com/questions/1882418/plsql-with-oracle-11g/1882506#1882506 2 Answer by Tony Andrews for PLSQL with Oracle 11g Tony Andrews 2009-12-10T17:13:54Z 2009-12-10T17:13:54Z <p>The big new feature for me is the <a href="http://download.oracle.com/docs/cd/E11882%5F01/appdev.112/e10472/subprograms.htm#BABFHACJ" rel="nofollow">PL/SQL Function Result Cache</a>, for functions that you call over and over again.</p> http://stackoverflow.com/questions/1880729/how-to-send-arbitrary-parameters-to-oracle-trigger/1880766#1880766 0 Answer by Tony Andrews for How to send arbitrary parameters to Oracle trigger? Tony Andrews 2009-12-10T12:45:41Z 2009-12-10T12:45:41Z <p>You can use a package to keep track of the web user:</p> <pre><code>create package web_user_pkg is procedure set_username (p_username varchar2); function username return varchar2; end; create package body web_user_pkg is g_username varchar2(30); procedure set_username (p_username varchar2) is begin g_username := p_username; end; function username return varchar2 is begin return g_username; end; end; </code></pre> <p>In the web page call web_user_pkg.set_username with the current user's ID before performing any DML or other package calls.</p> <p>In the trigger use web_user_pkg.username to get the web user name.</p> http://stackoverflow.com/questions/1872065/select-query-causing-exception/1874075#1874075 1 Answer by Tony Andrews for Select query causing exception Tony Andrews 2009-12-09T13:57:28Z 2009-12-09T13:57:28Z <p>Possible exceptions (not an exhaustive list by any means):</p> <p>1) ORA-00942: table or view does not exist</p> <pre><code>declare var integer; begin select 1 into var from nosuchtable; end; </code></pre> <p>2) ORA-06502: PL/SQL: numeric or value error: character to number conversion error</p> <pre><code>declare var integer; begin select 'x' into var from dual; end; </code></pre> <p>3) ORA-06502: PL/SQL: numeric or value error: character string buffer too small</p> <pre><code>declare var varchar2(1); begin select 'xx' into var from dual; end; </code></pre> <p>4) ORA-01722: invalid number</p> <pre><code>SQL&gt; create table t1 (n1 number); Table created. SQL&gt; insert into t1 values (1); 1 row created. SQL&gt; declare 2 var varchar2(1); 3 begin 4 select 'x' into var 5 from t1 where n1 = 'y'; 6 end; 7 / declare * ERROR at line 1: ORA-01722: invalid number ORA-0512: at line 4 </code></pre> <p>Can you not create a <strong>copy</strong> of the function, remove the WHEN OTHERS part, and test it in SQL Plus or an IDE to see what exception you get?</p> http://stackoverflow.com/questions/1873561/update-based-on-subquery-fails/1873599#1873599 2 Answer by Tony Andrews for Update based on subquery fails Tony Andrews 2009-12-09T12:30:48Z 2009-12-09T13:41:23Z <p>You can update some views, but there are restrictions and one is that the view must not contain analytic functions. See <a href="http://download.oracle.com/docs/cd/E11882%5F01/server.112/e10592/statements%5F10008.htm#i2067715" rel="nofollow">SQL Language Reference on UPDATE</a> and search for first occurence of "analytic".</p> <p>This will work, provided no voyage visits more than one port on the same day (or the dates include a time component that makes them unique):</p> <pre><code>update voyage_port vp set vp.port_seq = ( select count(*) from voyage_port vp2 where vp2.voyage_id = vp.voyage_id and vp2.arrival_date &lt;= vp.arrival_date ) </code></pre> <p>I think this handles the case where a voyage visits more than 1 port per day and there is no time component (though the sequence of ports visited on the same day is then arbitrary):</p> <pre><code>update voyage_port vp set vp.port_seq = ( select count(*) from voyage_port vp2 where vp2.voyage_id = vp.voyage_id and (vp2.arrival_date &lt;= vp.arrival_date) or ( vp2.arrival_date = vp.arrival_date and vp2.voyage_port_id &lt;= vp.voyage_port_id ) ) </code></pre> http://stackoverflow.com/questions/1870670/how-to-loop-accepting-user-input-with-pl-sql/1873019#1873019 2 Answer by Tony Andrews for how to loop accepting user input with pl/sql? Tony Andrews 2009-12-09T10:36:38Z 2009-12-09T10:36:38Z <p>As others have said, PL/SQL alone is not suitable for this task, you need a UI on top to interact with the end user. However, if you have a real need to do this in SQL Plus, it is possible using the technique I described in <a href="http://stackoverflow.com/questions/1850105/how-to-create-a-menu-in-sqlplus-or-pl-sql/1851872#1851872">this SO question</a>.</p> <p>You need to create 2 SQL Plus scripts:</p> <p>1) A script to perform a single insert, here called script_insert.sql:</p> <pre><code>insert into t1 values ('&amp;1.'); @main </code></pre> <p>2) A script to control the process, here called main.sql:</p> <pre><code>accept selection prompt "Please enter value, enter 'done' when no more values: " set term off verify off column script new_value v_script select case '&amp;selection.' when 'done' then '' else '@script_insert &amp;selection.' end as script from dual; set term on @&amp;v_script. </code></pre> <p>Now in SQL Plus you can run it like this:</p> <pre><code>SQL&gt; select * from t1; no rows selected SQL&gt; @main Please enter value, enter 'done' when no more values: 1 Please enter value, enter 'done' when no more values: 2 Please enter value, enter 'done' when no more values: 3 Please enter value, enter 'done' when no more values: done SQL&gt; select * from t1; N1 ---------- 1 2 3 </code></pre> <p>Let me reiterate that this demonstrates it can be done, I would not claim it to be a good way to implement the requirement - unless it is just an ad hoc tool to be used by a DBA or developer. I would never give an <em>end user</em> SQL Plus as a UI!</p> http://stackoverflow.com/questions/1867162/scalability-of-oracle-forms/1867304#1867304 2 Answer by Tony Andrews for Scalability of Oracle Forms Tony Andrews 2009-12-08T14:27:31Z 2009-12-08T16:28:04Z <p>You may find this Oracle white paper useful: <a href="http://www.oracle.com/technology/products/forms/pdf/10g/forms904capacityplanning.pdf" rel="nofollow">Forms Capacity Planning Guide</a>.</p> <p>One thing to consider is that Forms is a "stateful" system, so connected users will actually be maintaining Oracle sessions. Contrast this with a "stateless" system like <a href="http://apex.oracle.com" rel="nofollow">Oracle Application Express (APEX)</a>. I believe (but don't have evidence to prove it) that APEX will scale better than Forms (i.e. with less hardware).</p> <p>I am currently involved in an APEX project that will have 2000 concurrent users. The original plan was to use Oracle Forms, but we didn't change because Forms couldn't scale to 2000 users (it could), there were other reasons for doing so.</p> http://stackoverflow.com/questions/1867642/perl-dbdodbc-issues-with-oracle-date-formats/1867660#1867660 4 Answer by Tony Andrews for Perl DBD::ODBC Issues with Oracle Date Formats Tony Andrews 2009-12-08T15:22:07Z 2009-12-08T15:22:07Z <p>The database's <strong>default</strong> date format only matters if you depend on it, which you should not in general. You can:</p> <p>1) Specify the format of the date in your query:</p> <pre><code>select * from news where news_date = to_date ('01-DEC-2009','DD-MON-RRRR'); </code></pre> <p>2) Use the ANSI standard for date literals:</p> <pre><code>select * from news where news_date = DATE '2009-12-01'; </code></pre> http://stackoverflow.com/questions/1867167/oracle-commit-kills/1867219#1867219 1 Answer by Tony Andrews for oracle commit kills Tony Andrews 2009-12-08T14:12:55Z 2009-12-08T14:12:55Z <p>My guess is that your UI is not handling exceptions properly and the insert is failing for some reason but you aren't being told.</p> http://stackoverflow.com/questions/1867046/commit-after-opening-cursor-in-oracle/1867137#1867137 2 Answer by Tony Andrews for Commit after opening cursor in oracle. Tony Andrews 2009-12-08T13:57:54Z 2009-12-08T13:57:54Z <p>If the cursor locks records using FOR UPDATE, then all locks will be released by the commit. (In fact, any locks held are released by the commit.)</p> <p>Also, you are more likely to get an "ORA-01555 Snapshot too old" error due to the "fetch across commit" - see <a href="http://asktom.oracle.com/pls/asktom/f?p=100:11%3A0%3A%3A%3A%3AP11%5FQUESTION%5FID:546822742166" rel="nofollow">this AskTom thread</a>.</p> http://stackoverflow.com/questions/1860491/problem-wih-a-line-of-code/1860568#1860568 6 Answer by Tony Andrews for Problem wih a line of code. Tony Andrews 2009-12-07T15:08:13Z 2009-12-07T15:13:34Z <p>The list of names in parentheses on line 1 should be the names of the view columns:</p> <pre><code>CREATE VIEW ERP_REPORT(EVENTNAME, DESCRIPTION, COUNT(RIDERS) AS ... </code></pre> <p>You can't create a column called "COUNT(RIDERS" or even "COUNT(RIDERS)" since a column name may not contain ( or ). This would work:</p> <pre><code>CREATE VIEW ERP_REPORT(EVENTNAME, DESCRIPTION, RIDER_FULL_NAME) AS ... </code></pre> <p>However it appears that you really do want a count of something, though I'm not sure of what. To do that the view definition would have to be something like:</p> <pre><code>CREATE VIEW ERP_REPORT(EVENTNAME, DESCRIPTION, RIDER_COUNT) AS SELECT EVENTNAME, RACES.DESCRIPTION, COUNT(*) FROM EVENTS, RACES, PARTICIPATION, RIDERS WHERE EVENTS.EVENTID = RACES.EVENTID AND RACES.RACEID = PARTICIPATION.RACEID AND RIDERS.RIDERID = PARTICIPATION.RIDERID GROUP BY EVENTNAME, DESCRIPTION; </code></pre> <p>(i.e. the COUNT function goes in the SELECT part, not in the list of column names).</p> <p>As an aside, since you are presumably new to Oracle, I would suggest you start using the more modern ANSI join syntax to make your queries clearer:</p> <pre><code>... FROM EVENTS JOIN RACES ON RACES.EVENTID = EVENTS.EVENTID JOIN PARTICIPATION ON PARTICIPATION.RACEID = RACES.RACEID JOIN RIDERS ON RIDERS.RIDERID = PARTICIPATION.RIDERID </code></pre> http://stackoverflow.com/questions/1859565/encryption-inside-oracle/1859626#1859626 7 Answer by Tony Andrews for Encryption inside oracle Tony Andrews 2009-12-07T12:10:57Z 2009-12-07T12:10:57Z <p>You can <a href="http://download.oracle.com/docs/cd/B28359%5F01/appdev.111/b28370/wrap.htm#LNPLS01601" rel="nofollow">wrap procedure code</a> to make it unreadable. You cannot wrap trigger code, but you can move the trigger code into a stored procedure so that the trigger code contains nothing more than a call to a wrapped procedure.</p> http://stackoverflow.com/questions/1858414/oracle-data-modeler-and-synonyms/1859255#1859255 1 Answer by Tony Andrews for Oracle Data Modeler and synonyms Tony Andrews 2009-12-07T10:49:11Z 2009-12-07T10:49:11Z <p>I think you are dealing with two different and distinct uses of the term "synonym":</p> <p>1) In logical (entity) modelling, synonyms are alternative business names for an entity, e.g. the entity CUSTOMER may have synonyms PURCHASER and CLIENT.</p> <p>2) In the physical (database) model, public synonyms are used to remove the need to specify the schema that owns a table. Commonly, the synonym and table name are the same e.g. "CREATE PUBLIC SYNONYM customers for MYSCHEMA.CUSTOMERS;" </p> <p>It would be very unusual to want public synonyms generated in the database for the business synonyms defined in the logical model.</p> http://stackoverflow.com/questions/1852274/how-do-i-select-part-of-a-blob-field-in-oracle/1852441#1852441 3 Answer by Tony Andrews for How do I select part of a BLOB field in Oracle? Tony Andrews 2009-12-05T15:12:09Z 2009-12-05T15:12:09Z <p>Can you use <a href="http://download.oracle.com/docs/cd/B19306%5F01/appdev.102/b14258/d%5Flob.htm#i999170" rel="nofollow">DBMS_LOB.READ (lob_loc, amount, offset, buffer)</a>?</p> http://stackoverflow.com/questions/1852400/how-bad-is-it-to-simulate-identity-autoincrement-columns-using-triggers-in-oracle/1852428#1852428 8 Answer by Tony Andrews for How bad is it to simulate IDENTITY/AUTOINCREMENT columns using triggers in Oracle? Tony Andrews 2009-12-05T15:05:22Z 2009-12-05T15:05:22Z <p>It is a very common practice in my experience, and not a terribly bad one. However, if you have control over the inserts (e.g. if all inserts are done via a PL/SQL API) then it is more efficient to use the sequence directly in the INSERT statement - because it avoids the overhead of firing a trigger. But I really wouldn't worry unduly about it if you have used triggers!</p> http://stackoverflow.com/questions/1850105/how-to-create-a-menu-in-sqlplus-or-pl-sql/1851872#1851872 7 Answer by Tony Andrews for How to create a menu in SQLPlus or PL/SQL Tony Andrews 2009-12-05T10:53:35Z 2009-12-05T13:15:17Z <p>Here is a SQL Plus script to do that:</p> <pre><code>prompt Please make a selection: prompt 1: Do script a prompt 2: Do script b prompt 3: Do script c accept selection prompt "Enter option 1-3: " set term off column script new_value v_script select case '&amp;selection.' when '1' then 'script_a' when '2' then 'script_b' when '3' then 'script_c' else 'menu' end as script from dual; set term on @&amp;v_script. </code></pre> <p>NB The 'menu' in the ELSE part of the case expression is the name of this script, so that it runs itself again when the user enters an invalid option.</p> http://stackoverflow.com/questions/1847732/trigger-sequence-oracle-problem/1848552#1848552 1 Answer by Tony Andrews for Trigger sequence oracle problem Tony Andrews 2009-12-04T17:45:22Z 2009-12-04T17:45:22Z <p>If you <strong>really</strong> want to increment the sequence <strong>after</strong> the insert (which seems peculiar) you can do this:</p> <pre><code>CREATE OR REPLACE TRIGGER test_trigger after INSERT ON Entry REFERENCING NEW AS NEW FOR EACH ROW DECLARE l_id INTEGER; BEGIN SELECT test_seq.nextval INTO l_id FROM dual; END; / </code></pre> <p>Of course, this doesn't set the ID of the new row to that sequence value - but if you had wanted to do that, you would have made it a BEFORE trigger. </p> http://stackoverflow.com/questions/1832822/how-oracle-uses-statistics-data/1832885#1832885 3 Answer by Tony Andrews for How Oracle uses statistics data Tony Andrews 2009-12-02T13:24:29Z 2009-12-02T13:24:29Z <p>Oracle uses statistics a lot, to generate query execution <strong>plans</strong>. What it does not (and should not) do is use those statistics in a way that will affect query <strong>results</strong>, which is what you were trying to do with "ROWNUM &lt; 50000000". The statistics may be out of date, or missing. However, this will only mean that Oracle may be slow to generate the correct result, it does not mean that Oracle will return an incorrect result. </p> <p>If Oracle worked as you hoped, then it might decide that "ROWNUM &lt; 50000000" meant "get all rows" even though the table now contained 60,000,000 rows (but had out of date stats saying it contained only 49,000,000). Fortunately it does not.</p> http://stackoverflow.com/questions/1819522/is-there-any-logical-reason-of-having-different-tablespace-for-indexes/1819617#1819617 5 Answer by Tony Andrews for Is there any logical reason of having different tablespace for indexes? Tony Andrews 2009-11-30T12:43:22Z 2009-11-30T12:43:22Z <p>It is a widespread belief that keeping indexes and tables in separate tablespaces improves performance. This is now considered a myth by many respectable experts (see <a href="http://asktom.oracle.com/pls/asktom/f?p=100:11%3A0%3A%3A%3A%3AP11%5FQUESTION%5FID:901906930328" rel="nofollow">this Ask Tom thread - search for "myth"</a>), but is still a common practice because old habits die hard!</p> http://stackoverflow.com/questions/1815814/oracle-apex-for-airport-database/1815848#1815848 3 Answer by Tony Andrews for Oracle APEX for "Airport" database Tony Andrews 2009-11-29T15:45:38Z 2009-11-29T15:45:38Z <p>Yes, Apex is probably easier than any other tool to build such an application, and it has all the flexibility you could possibly need to handle these requirements. You can use <a href="http://download.oracle.com/docs/cd/E14373%5F01/appdev.32/e11838/sec.htm#BABEDFGB" rel="nofollow">Authorisation Schemes</a> to give each type of user access to different pages, and to different information and functionality within pages.</p> <p>You may want to start by going through the <a href="http://download.oracle.com/docs/cd/E14373%5F01/appdev.32/e13367/toc.htm" rel="nofollow">2-day developer's guide</a>.</p> http://stackoverflow.com/questions/1808669/delete-all-but-some-rows-oracle/1808831#1808831 1 Answer by Tony Andrews for Delete all but some rows - Oracle Tony Andrews 2009-11-27T13:38:12Z 2009-11-27T13:48:52Z <p>This will keep a maximum of 5 from each group:</p> <pre><code>delete mytable where rowid in ( select rowid from ( select rowid, row_number() over (partition by col1, col2 order by id) rn from mytable ) where rn &gt; 5 ); </code></pre> http://stackoverflow.com/questions/1805908/pl-sql-if-inside-a-select/1805932#1805932 8 Answer by Tony Andrews for PL/SQL...if inside a select? Tony Andrews 2009-11-26T22:25:09Z 2009-11-26T22:25:09Z <p>You can use NVL or COALESCE for that:</p> <pre><code>open rc for select l.data1 as ld1, l.data2 as ld2, b.data1 as bd1, b.data2 as bd2, c.data1 as as c_d1, c.data2 as cd2 from tablel l, tableb b, tablec c where blahblahblah and c.data1 = NVL(b.data4,b.data3) </code></pre> http://stackoverflow.com/questions/1797778/oracle-join-using-subquery-ora-00904-string-invalid-identifier/1798765#1798765 2 Answer by Tony Andrews for Oracle JOIN USING + Subquery : ora-00904 string: invalid identifier Tony Andrews 2009-11-25T17:53:54Z 2009-11-25T17:53:54Z <p>Interesting problem! The best I can manage while still using USING is:</p> <pre><code>select * from ( select * from table1 t1 inner join table2 t2 using (pk1) inner join table3 t3 using (pk2) ) v where not exists (select1 from table4 t4 where t4.pk1 = v.pk1) </code></pre> http://stackoverflow.com/questions/1795039/use-of-correlated-subquery/1796192#1796192 2 Answer by Tony Andrews for Use Of Correlated Subquery. Tony Andrews 2009-11-25T11:02:27Z 2009-11-25T11:02:27Z <p>One common usage example: display details of the latest hired employee(s) for each department: </p> <pre><code>select e.deptno, e.empno, e.ename, e.hiredate, e.sal from emp e where e.hiredate = (select max(e2.hiredate) from emp e2 where e2.deptno = e.deptno -- the correlation ); </code></pre> http://stackoverflow.com/questions/1770032/using-index-in-oracle/1770054#1770054 3 Answer by Tony Andrews for Using Index in oracle Tony Andrews 2009-11-20T12:03:02Z 2009-11-20T12:03:02Z <p>You don't have to do anything to use an index in a select query - Oracle will decide what index, if any, will best help perform the query. Index help performance in some queries (not all) by providing a short-cut to the data you want. You should read up on indexes in the <a href="http://download.oracle.com/docs/cd/E11882%5F01/server.112/e10713/indexiot.htm#BABHJAJF" rel="nofollow">Oracle Concepts Guide </a> - read the section headed "Overview of Indexes".</p> http://stackoverflow.com/questions/1928203/oracle-capture-exception-object Comment by Tony Andrews on ORACLE capture exception object. Tony Andrews 2009-12-18T13:53:35Z 2009-12-18T13:53:35Z You really do not want to trap WHEN OTHERS in this way: the program that calls your code will have no idea whether it succeeded or failed. http://stackoverflow.com/questions/1928104/find-a-string-within-the-source-code-ddl-of-a-stored-procedure-in-oracle Comment by Tony Andrews on Find a string within the source code (DDL) of a stored procedure in oracle. Tony Andrews 2009-12-18T13:13:00Z 2009-12-18T13:13:00Z Do you not uses packages to hold your procedures? :-( http://stackoverflow.com/questions/1913812/keeping-a-dhtml-tree-expanded-in-oracle-apex Comment by Tony Andrews on Keeping a DHTML tree expanded in Oracle APEX Tony Andrews 2009-12-16T13:26:22Z 2009-12-16T13:26:22Z Which Apex theme are you using? http://stackoverflow.com/questions/1907922/inserting-one-account-for-each-row-and-every-dates-and-payments-associated-wi Comment by Tony Andrews on inserting one account for each row and every dates and payments associated with that account in one row each in (ORACLE) Tony Andrews 2009-12-15T16:20:49Z 2009-12-15T16:20:49Z This question isn't getting answered because, I suspect, people find the amount of code daunting - I know I do. Can you not reduce it to a simpler example that still illustrates your problem? http://stackoverflow.com/questions/1906208/error-exception-handling-in-oracle/1906315#1906315 Comment by Tony Andrews on error/exception handling in oracle Tony Andrews 2009-12-15T10:11:52Z 2009-12-15T10:11:52Z David, I think you posted the wrong link - I can't see the relevance of this one? http://stackoverflow.com/questions/1880729/how-to-send-arbitrary-parameters-to-oracle-trigger/1880822#1880822 Comment by Tony Andrews on How to send arbitrary parameters to Oracle trigger? Tony Andrews 2009-12-10T13:35:32Z 2009-12-10T13:35:32Z +1 This seems to be the &quot;right&quot; way to do it! http://stackoverflow.com/questions/1880729/how-to-send-arbitrary-parameters-to-oracle-trigger/1880766#1880766 Comment by Tony Andrews on How to send arbitrary parameters to Oracle trigger? Tony Andrews 2009-12-10T12:53:02Z 2009-12-10T12:53:02Z No, it is unique to the connection. Connection pooling would be unusable if different end-users were sharing the same database state! http://stackoverflow.com/questions/1873561/update-based-on-subquery-fails/1873599#1873599 Comment by Tony Andrews on Update based on subquery fails Tony Andrews 2009-12-09T13:39:46Z 2009-12-09T13:39:46Z OK, in that case my simpler code will work for you too. I was assuming the dates had no time component. http://stackoverflow.com/questions/1860491/problem-wih-a-line-of-code/1860568#1860568 Comment by Tony Andrews on Problem wih a line of code. Tony Andrews 2009-12-07T16:22:23Z 2009-12-07T16:22:23Z Yes, you haven't got a GROUP BY clause in the query. Se my example that does. http://stackoverflow.com/questions/1860491/problem-wih-a-line-of-code/1860622#1860622 Comment by Tony Andrews on Problem wih a line of code. Tony Andrews 2009-12-07T15:37:35Z 2009-12-07T15:37:35Z +1 for TextPad! http://stackoverflow.com/questions/1852274/how-do-i-select-part-of-a-blob-field-in-oracle Comment by Tony Andrews on How do I select part of a BLOB field in Oracle? Tony Andrews 2009-12-05T15:27:22Z 2009-12-05T15:27:22Z &quot;Had you stored the file in the filesystem you'd have no such problem.&quot; True, you'd have different (worse?) problems! http://stackoverflow.com/questions/1852400/how-bad-is-it-to-simulate-identity-autoincrement-columns-using-triggers-in-oracle Comment by Tony Andrews on How bad is it to simulate IDENTITY/AUTOINCREMENT columns using triggers in Oracle? Tony Andrews 2009-12-05T15:07:02Z 2009-12-05T15:07:02Z You can't use a sequence as a column default even in 11G as far as I'm aware. http://stackoverflow.com/questions/1850105/how-to-create-a-menu-in-sqlplus-or-pl-sql/1850959#1850959 Comment by Tony Andrews on How to create a menu in SQLPlus or PL/SQL Tony Andrews 2009-12-05T10:54:32Z 2009-12-05T10:54:32Z CASE isn't a valid SQL Plus command, so this doesn't work. http://stackoverflow.com/questions/1815109/best-forum-for-oracle-pl-sql-sql/1815130#1815130 Comment by Tony Andrews on Best Forum for Oracle PL/SQL, SQL? Tony Andrews 2009-11-30T11:52:20Z 2009-11-30T11:52:20Z Toady!........ ;-) http://stackoverflow.com/questions/1818016/what-is-the-use-of-tnsadmin-variable-in-oracle/1818072#1818072 Comment by Tony Andrews on What is the use of TNS_ADMIN variable in Oracle? Tony Andrews 2009-11-30T10:45:52Z 2009-11-30T10:45:52Z As Philip said at the start &quot;TNS_ADMIN tells sqlplus where to find the tnsnames.ora file.&quot; That's basically it! Or do you want to know what the tnsnames.ora file is for?