User cagcowboy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:48:30Z http://stackoverflow.com/feeds/user/19629 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1824654/oracle-move-column-to-the-first-position/1824662#1824662 1 Answer by cagcowboy for Oracle move column to the first position cagcowboy 2009-12-01T08:03:29Z 2009-12-01T08:13:10Z <p>Recreating the table (via rename/temporary table so you don't lose your data) is the only way I know of.</p> <p>I don't believe it's possible to simply change the column order.</p> http://stackoverflow.com/questions/1812049/performance-standalone-procedure-vs-packaged-procedure-in-oracle/1812055#1812055 2 Answer by cagcowboy for Performance Standalone Procedure vs Packaged Procedure in Oracle cagcowboy 2009-11-28T09:11:01Z 2009-11-28T09:11:01Z <p>There should be no difference between the two.</p> <p>A major use of packages is to group a set of similar/associeted functions+procedures</p> http://stackoverflow.com/questions/1409329/ordering-table-in-join-sql-tuning/1409360#1409360 2 Answer by cagcowboy for Ordering table in join : SQL Tuning cagcowboy 2009-09-11T06:49:21Z 2009-09-11T07:06:41Z <p>No*. That's not been necessary since Oracle version 6 which had a rule based optimiser (RBO).</p> <p>(* unless you're getting into advanced tuning topics and need to use hints, as other answers have pointed out and expanded on)</p> <p>Oracle 7 onwards has a cost based optimiser (CBO) which uses statistics to calculate what it believes will be the most efficient manner to execute the query.</p> <p>Support for the RBO has been removed from 10g onwards</p> <p>See: <a href="http://www.dba-oracle.com/oracle%5Ftips%5F10g%5Fcbo.htm" rel="nofollow">http://www.dba-oracle.com/oracle%5Ftips%5F10g%5Fcbo.htm</a></p> http://stackoverflow.com/questions/1401801/arrays-in-oracle-sql/1401815#1401815 2 Answer by cagcowboy for Arrays in Oracle SQL cagcowboy 2009-09-09T20:10:01Z 2009-09-09T20:16:18Z <p>A couple of suggestions:</p> <p>1.) There's a CAST SQL keyword that you can do that might do the job... it makes your collection be treated as if it were a table.</p> <p>2.) Pipelined functions. Basically a function returns data that looks like a table.</p> <p>This link summarises the options and has a number of code listings that explain them.</p> <p><a href="http://www.databasejournal.com/features/oracle/article.php/3352091/CASTing-About-For-a-Solution-Using-CAST-and-Table-Functions-in-PLSQL.htm" rel="nofollow">http://www.databasejournal.com/features/oracle/article.php/3352091/CASTing-About-For-a-Solution-Using-CAST-and-Table-Functions-in-PLSQL.htm</a></p> http://stackoverflow.com/questions/1398685/can-oracles-default-object-lock-timeout-be-changed 2 Can Oracle's default object lock timeout be changed? cagcowboy 2009-09-09T10:02:02Z 2009-09-09T10:17:22Z <pre><code>&gt; ALTER PACKAGE blah COMPILE; (wait about 10 minutes) &gt; ORA-04021: timeout occurred while waiting to lock object </code></pre> <p>I understand why I get the timeout error (the package is in use).</p> <p>Does anyone know if there's a way to change the default 10 minute wait interval? Can this be configured at a database / session / statement level?</p> <p>Thanks</p> http://stackoverflow.com/questions/1397913/is-it-possible-to-perform-a-bitwise-group-function/1397952#1397952 1 Answer by cagcowboy for Is it possible to perform a bitwise group function? cagcowboy 2009-09-09T06:59:13Z 2009-09-09T06:59:13Z <p>And you can do a bitwise or with...</p> <pre><code>FUNCTION BITOR(x IN NUMBER, y IN NUMBER) RETURN NUMBER AS BEGIN RETURN x + y - BITAND(x,y); END; </code></pre> http://stackoverflow.com/questions/1395500/get-a-table-count-in-ssis-from-an-oracle-view/1395643#1395643 1 Answer by cagcowboy for Get a table count in SSIS from an Oracle view cagcowboy 2009-09-08T18:45:51Z 2009-09-08T18:45:51Z <p>I know nothing about SSIS so can't help you there, but, as a note, if you only want to check for the presence of data in a table, it's more efficient to include a ROWNUM clause in the SQL. e.g.</p> <pre><code>SELECT COUNT(*) FROM table WHERE ROWNUM &lt; 2; (will return 0 if the table is empty, 1 if any rows are in the table) </code></pre> <p>In this way Oracle can stop reading the results from the table/view as soon as it finds any rows, thus (potentially) finishing execution of the query much sooner.</p> http://stackoverflow.com/questions/1392404/in-oracle-performance-monitoring-why-does-scheduler-activity-goes-up/1392543#1392543 1 Answer by cagcowboy for In Oracle performance monitoring why does Scheduler activity goes up cagcowboy 2009-09-08T07:45:49Z 2009-09-08T07:45:49Z <p>In this case I suspect you mean the scheduler than runs jobs at certain times. (It used to be called/accessed via DBMS_JOB if that rings any bells?)</p> <p>I would guess that the Performance Monitor schedules regular jobs to look at query statistics etc, hence the increase in activity.</p> http://stackoverflow.com/questions/1388918/oracle-problem-with-constructing-jms-message/1388974#1388974 0 Answer by cagcowboy for Oracle: problem with constructing JMS message cagcowboy 2009-09-07T11:41:39Z 2009-09-07T13:12:33Z <p>Looks like grants again</p> <pre><code>GRANT EXECUTE ON SYS.aq$_jms_stream_message To &lt;your-user&gt;; </code></pre> <p>Does:</p> <pre><code>desc sys.aq$_jms_stream_message </code></pre> <p>work in SQL*Plus from both the SYS + your schema?</p> <p>Note that SYS.AQ$_JMS_STREAM_MESSAGE is a datbase object/type, whereas SYS.DBMS_AQ is a package</p> <p><strong>EDIT</strong></p> <p>Ok... maybe the TYPE body is missing / invalid. What does:</p> <pre><code>SELECT owner, object_name, object_type, status FROM dba_OBJECTS WHERE OBJECT_NAME = 'AQ$_JMS_STREAM_MESSAGE' </code></pre> <p>return?</p> http://stackoverflow.com/questions/1378721/pl-sql-function-in-oracle-cannot-see-dbmsaq/1379040#1379040 2 Answer by cagcowboy for PL/SQL function in Oracle cannot see DBMS_AQ cagcowboy 2009-09-04T12:50:56Z 2009-09-07T07:25:53Z <p>Does it work if you do...</p> <pre><code>SYS.DBMS_AQ </code></pre> <p>instead of just </p> <pre><code>DBMS_AQ </code></pre> <p>If so, you're missing a synonym.</p> <p><strong>EDIT</strong>:</p> <p>If you're now getting "PLS-00201: identifier 'SYS.DBMS_AQ" then I'd double check your grants.</p> <pre><code>GRANT EXECUTE ON SYS.DBMS_AQ to &lt;your-user&gt;; </code></pre> <p>Also, just to confirm, you've granted the execute privilege <em>directly</em> to the user, and not via a role?</p> http://stackoverflow.com/questions/1380239/oracle-to-global-temp-or-not-to-global-temp/1380313#1380313 0 Answer by cagcowboy for Oracle - To Global Temp or NOT to Global Temp cagcowboy 2009-09-04T16:35:24Z 2009-09-04T16:35:24Z <p>For reporting, temporary tables are helpful in that data can only be seen by the session that created it, meaning that you shouldn't have to worry about any concurrency issues.</p> <p>With a non-temporary table you need to add a session handle/identifier to the table in order to distinguish between sessions.</p> http://stackoverflow.com/questions/1378133/why-are-oracle-table-column-index-names-limited-to-30-characters/1378160#1378160 5 Answer by cagcowboy for Why are Oracle table/column/index names limited to 30 characters? cagcowboy 2009-09-04T09:28:13Z 2009-09-04T10:41:25Z <p>I believe it's the ANSI standard.</p> <p><strong>EDIT:</strong></p> <p>Actually, I think it's the SQL-92 standard.</p> <p>A later version of the standard appears to optionally allow for 128 character names, but Oracle doesn't yet support this (or has partial support for it, insofar as it allows 30 characters. Hmmm.)</p> <p>Search for "F391, Long identifiers" on this page... <a href="http://stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/ap%5Fstandard%5Fsql001.htm" rel="nofollow">http://stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/ap%5Fstandard%5Fsql001.htm</a></p> <p>(Looking for a ref)</p> http://stackoverflow.com/questions/1375510/oracle-10-is-it-possible-to-access-a-public-synonym-to-a-table-in-a-stored-proce/1375533#1375533 1 Answer by cagcowboy for Oracle 10: Is it possible to access a public synonym to a table in a stored procedure or package? cagcowboy 2009-09-03T19:45:14Z 2009-09-03T19:51:38Z <p>Does the schema in which you're creating the procedure have <em>direct</em> SELECT privs (ie not via a role?)</p> <p>When you create a procedure (function/package), permissions on tables need to be directly granted, not granted via a role.</p> http://stackoverflow.com/questions/1368092/why-does-sqlplus-commit-on-exit/1368141#1368141 3 Answer by cagcowboy for Why does SQL*Plus commit on exit? cagcowboy 2009-09-02T14:46:32Z 2009-09-02T14:46:32Z <p>You'd have to ask Oracle!</p> <p>I must admit that I was surprised when I first discovered this, since you'd think it would take the more conservative approach which would be to do a ROLLBACK.</p> <p>I can only guess that COMMIT is considered to be the most likely / default action and maybe this is why SQL*Plus does it?</p> http://stackoverflow.com/questions/1346861/plw-06002-unreachable-code-when-using-null 3 PLW-06002 unreachable code when using NULL; cagcowboy 2009-08-28T13:04:41Z 2009-08-28T15:19:33Z <p>I occasionally do something like....</p> <pre><code>IF very-likely-condition THEN NULL; ELSE &lt;&lt;code to deal with the unlikely condition&gt;&gt; END IF; </code></pre> <p>Which gives a <strong>PLW-06002 unreachable code</strong> warning from the PL/SQL compiler on the NULL line atfer the IF.</p> <p>Now whilst I can clearly ignore the warning and/or refactor the IF statement to be a NOT, I think it reads better this way.</p> <p>So does anybody know is there is another way of inserting an empty statement so that I don't get the compiler warning?</p> <p><strong>EDIT:</strong></p> <p>I'm not saying I do this often... in fact I'd do it very rarely. But occasionally I do think it reads better this way.</p> <p><strong>EDIT 2:</strong></p> <p>Plus there are other scenarios where it might be valid to do this (such as ignoring a specific error in an EXCEPTION block). I only used the IF as a simple example to illustrate the point.</p> http://stackoverflow.com/questions/1340623/itext-nested-table-inside-a-cell/1343734#1343734 0 Answer by cagcowboy for iText nested table inside a cell cagcowboy 2009-08-27T21:05:00Z 2009-08-27T21:05:00Z <p>As you identified,</p> <pre><code>cell.setPadding(0); </code></pre> <p>is what you needed.</p> http://stackoverflow.com/questions/1342291/randomize-time-portion-of-date-field/1342309#1342309 3 Answer by cagcowboy for Randomize Time Portion of Date Field cagcowboy 2009-08-27T16:45:35Z 2009-08-27T16:58:13Z <p>Choose a random number between 0 and 86400 (number of seconds in a day)</p> <p>Add random / 86400 to your date.</p> <pre><code>SELECT TRUNC(SYSDATE)+DBMS_RANDOM.value(0, 86400-1)/86400 FROM DUAL </code></pre> <p>ADDITION:</p> <pre><code>UPDATE table_name SET column_ts = SYSDATE - 120 + MOD(ROWNUM, 35) + DBMS_RANDOM.value(0, 86400-1)/86400; </code></pre> http://stackoverflow.com/questions/1339991/insert-with-order-on-oracle/1340406#1340406 2 Answer by cagcowboy for INSERT with ORDER on Oracle cagcowboy 2009-08-27T11:15:46Z 2009-08-27T11:15:46Z <p>Unless you specify an ORDER BY, you can never guarantee the order in which Oracle will return rows from a SELECT</p> http://stackoverflow.com/questions/1311996/how-to-check-for-valid-oracle-table-name-using-sql-plsql/1312011#1312011 0 Answer by cagcowboy for How to check for valid oracle table name using sql/plsql cagcowboy 2009-08-21T13:40:08Z 2009-08-21T13:40:08Z <p>I have a SQL_RESERVED_WORDS table that I check against.</p> <p>EDIT:</p> <p>(I lied... it was just a SYNONYMN for the table in carpenteri's post)</p> http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/108686#108686 4 Answer by cagcowboy for What is your single favorite development tool? cagcowboy 2008-09-20T16:41:11Z 2009-08-20T15:48:23Z <p>For Oracle stuff, <a href="http://en.wikipedia.org/wiki/TOAD%5F%28software%29" rel="nofollow">TOAD</a> takes some beating IMHO.</p> http://stackoverflow.com/questions/1305180/oracle-set-nlsparameters-with-sqlplus/1305247#1305247 0 Answer by cagcowboy for Oracle: Set NLS_PARAMETERS with sqlplus cagcowboy 2009-08-20T10:29:41Z 2009-08-20T12:26:10Z <p>Use an ON LOGON trigger to do the ALTER SESSION?</p> <p>Then you can do it in one place and won't have have to change every client.</p> http://stackoverflow.com/questions/1299694/oracle-how-to-find-out-if-there-is-a-transaction-pending/1300513#1300513 2 Answer by cagcowboy for Oracle: How to find out if there is a transaction pending? cagcowboy 2009-08-19T14:58:56Z 2009-08-19T14:58:56Z <p>Also see...</p> <p><a href="http://stackoverflow.com/questions/506456/how-can-i-tell-if-i-have-uncommitted-work-in-an-oracle-transaction">http://stackoverflow.com/questions/506456/how-can-i-tell-if-i-have-uncommitted-work-in-an-oracle-transaction</a></p> http://stackoverflow.com/questions/1296438/ignoring-exception-in-oracle-trigger/1296445#1296445 5 Answer by cagcowboy for Ignoring exception in oracle trigger cagcowboy 2009-08-18T20:52:23Z 2009-08-18T20:52:23Z <pre><code>... EXCEPTION WHEN OTHERS THEN NULL; end test_trigger; </code></pre> http://stackoverflow.com/questions/1289877/how-to-create-a-foreign-key-with-on-update-cascade-on-oracle/1290118#1290118 3 Answer by cagcowboy for How to create a Foreign Key with "ON UPDATE CASCADE" on Oracle? cagcowboy 2009-08-17T20:05:25Z 2009-08-17T20:05:25Z <p>Some good help here...</p> <p><a href="http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11%5FQUESTION%5FID:5773459616034" rel="nofollow">http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11%5FQUESTION%5FID:5773459616034</a></p> http://stackoverflow.com/questions/1244907/how-can-a-node-in-an-execution-plan-have-smaller-costs-than-its-child/1245218#1245218 0 Answer by cagcowboy for How can a node in an execution plan have smaller costs than its child? cagcowboy 2009-08-07T14:53:30Z 2009-08-07T14:53:30Z <p>Maybe try another tool (TOAD / SQL*Plus / etc) to see if the result is the same (ie to determine if it's a client-display or server issue)?</p> <p>Are all your tables ANALYZEd?</p> http://stackoverflow.com/questions/1241611/oracle-batching-ddl-statements-within-a-execute-immediate/1241630#1241630 1 Answer by cagcowboy for ORACLE Batching DDL statements within a Execute Immediate cagcowboy 2009-08-06T21:33:38Z 2009-08-06T21:33:38Z <p>Why do you need a single EXECUTE IMMEDIATE call? Surely just do it as 2 calls?</p> <p>Bear in mind that each DDL statement contains an implicit COMMIT, so there's no concurency benefit to doing it as a single call.</p> <p>Also, why not just set up the table correctly in the first call? You could do...</p> <p>CREATE TABLE TABLE1(VALUE VARCHAR2(50) NOT NULL, MYVAL2 NVARCHAR2(10))</p> <p>...instead of needing 2 calls.</p> <p>Also, have you looked at DBMS_METADATA... it can generate DDL for objects such as tables for you.</p> http://stackoverflow.com/questions/1235544/modeling-one-to-constant-relationship/1235830#1235830 3 Answer by cagcowboy for Modeling One-to-Constant Relationship cagcowboy 2009-08-05T21:22:52Z 2009-08-05T21:22:52Z <p>Building upon the earler "chicken + egg" points, you can create deferrable constraints which aren't validated until commit time... these might help?</p> <p>e.g.</p> <pre><code>ALTER TABLE AGREEMENTS ADD CONSTRAINT name FOREIGN KEY (column) REFERENCES table (column) DEFERRABLE INITIALLY DEFERRED; </code></pre> http://stackoverflow.com/questions/1233483/oracle-updates-to-certain-table-hang-indefinitely/1233531#1233531 4 Answer by cagcowboy for Oracle UPDATEs to Certain Table Hang Indefinitely cagcowboy 2009-08-05T14:13:30Z 2009-08-05T14:22:46Z <p>Chances are that another session has uncommited work (ie UPDATEs or DELETEs)</p> <p>You can find which session(s) this might be with...</p> <pre><code>select s1.username || '@' || s1.machine || ' ( SID=' || s1.sid || ' ) is blocking ' || s2.username || '@' || s2.machine || ' ( SID=' || s2.sid || ' ) ' AS blocking_status from v$lock l1, v$session s1, v$lock l2, v$session s2 where s1.sid=l1.sid and s2.sid=l2.sid and l1.BLOCK=1 and l2.request &gt; 0 and l1.id1 = l2.id1 and l2.id2 = l2.id2 </code></pre> <p>EDIT:</p> <p>Chances are you've got a rouge bit of code somewhere with a missing COMMIT.</p> <p>Check the offending session id in V$SESSION and see if you can figure out which code it could be.</p> <p>To help you find the rouge code (assuming that's what it is), you can find the last SQL command ran by a session by using...</p> <pre><code>select * from v_$sqltext, v_$session where v_$session.prev_hash_value = v_$sqltext.hash_value and [some filter on v_$session] </code></pre> http://stackoverflow.com/questions/1232166/how-can-i-tell-which-sessions-are-tracing-after-a-call-to-dbmsmonitor-sessiont 1 How can I tell which sessions are tracing (after a call to DBMS_MONITOR.SESSION_TRACE_ENABLE) cagcowboy 2009-08-05T09:38:27Z 2009-08-05T13:21:50Z <p>Is there a data-dictionary view or some other way of telling which (if any) sessions currently have tracing enabled (after a call to DBMS_MONITOR.SESSION_TRACE_ENABLE)?</p> <p>(At the minute I keep running an <code>ls</code> on the udump folder, but this isn't exactly foolproof)</p> http://stackoverflow.com/questions/1228827/resultset-getblob-exception/1228866#1228866 0 Answer by cagcowboy for ResultSet.getBlob() Exception cagcowboy 2009-08-04T17:29:12Z 2009-08-04T17:29:12Z <p>Try...</p> <pre><code> PreparedStatement stmt = connection.prepareStatement(query); ResultSet rs = stmt.executeQuery(); rs.next(); InputStream is = rs.getBlob(columnIndex).getBinaryStream(); </code></pre> <p>...instead?</p> http://stackoverflow.com/questions/1398685/can-oracles-default-object-lock-timeout-be-changed/1398770#1398770 Comment by cagcowboy on Can Oracle's default object lock timeout be changed? cagcowboy 2009-09-09T10:26:14Z 2009-09-09T10:26:14Z Thanks. Shame it's not in 10g. http://stackoverflow.com/questions/1388918/oracle-problem-with-constructing-jms-message/1389405#1389405 Comment by cagcowboy on Oracle: problem with constructing JMS message cagcowboy 2009-09-07T13:24:50Z 2009-09-07T13:24:50Z +1 Good spot. http://stackoverflow.com/questions/1378133/why-are-oracle-table-column-index-names-limited-to-30-characters/1378160#1378160 Comment by cagcowboy on Why are Oracle table/column/index names limited to 30 characters? cagcowboy 2009-09-04T10:37:34Z 2009-09-04T10:37:34Z I haven't read the F391 spec in detail, but I'm assuming (maybe incorrectly) that &quot;Long identifiers&quot; means an increase in identifier length from 30 to 128. So saying that you &quot;partially&quot; support this by allowing 30 characters is a bit cheeky. You don't support the new standard, you still support the old standard (albeit 25% of the way to the new standard) Did that make sense?!!? http://stackoverflow.com/questions/1378133/why-are-oracle-table-column-index-names-limited-to-30-characters/1378365#1378365 Comment by cagcowboy on Why are Oracle table/column/index names limited to 30 characters? cagcowboy 2009-09-04T10:33:33Z 2009-09-04T10:33:33Z +1 Am sure this is part of the reason. I'm sure I'll have coded VARCHAR2(30) somewhere... http://stackoverflow.com/questions/1368092/why-does-sqlplus-commit-on-exit/1370020#1370020 Comment by cagcowboy on Why does SQL*Plus commit on exit? cagcowboy 2009-09-02T21:11:25Z 2009-09-02T21:11:25Z Should be fixed any day then.... http://stackoverflow.com/questions/1368092/why-does-sqlplus-commit-on-exit/1368141#1368141 Comment by cagcowboy on Why does SQL*Plus commit on exit? cagcowboy 2009-09-02T15:41:53Z 2009-09-02T15:41:53Z I agree, It think the SQL*Plus behaviour is odd too! http://stackoverflow.com/questions/1346861/plw-06002-unreachable-code-when-using-null Comment by cagcowboy on PLW-06002 unreachable code when using NULL; cagcowboy 2009-08-28T13:53:52Z 2009-08-28T13:53:52Z Level 2. That could well be it in the case of an IF, but I'd still like to know if there's a workaround for other cases (e.g. ignoring certain errors in an EXCEPTION block) http://stackoverflow.com/questions/1346861/plw-06002-unreachable-code-when-using-null/1346951#1346951 Comment by cagcowboy on PLW-06002 unreachable code when using NULL; cagcowboy 2009-08-28T13:29:15Z 2009-08-28T13:29:15Z Actually, I believe the error occurs for any use of the NULL; statement. The IF was just an example (which I'm beginning to regret using!) http://stackoverflow.com/questions/1346861/plw-06002-unreachable-code-when-using-null/1346867#1346867 Comment by cagcowboy on PLW-06002 unreachable code when using NULL; cagcowboy 2009-08-28T13:21:47Z 2009-08-28T13:21:47Z I already said in the question that I knew I could do a NOT. I'm not saying that this is something I do often at all.... but in certain rare cases I do believe this is more readable. Do you have an answer to the question? http://stackoverflow.com/questions/1346861/plw-06002-unreachable-code-when-using-null/1346874#1346874 Comment by cagcowboy on PLW-06002 unreachable code when using NULL; cagcowboy 2009-08-28T13:14:05Z 2009-08-28T13:14:05Z I already said in the question that I knew I could do a NOT. I'm not saying that this is something I do often at all.... but in certain rare cases I do believe this is more readable. Do you have an answer to the question? http://stackoverflow.com/questions/1231133/how-to-write-content-into-pdf-use-itext Comment by cagcowboy on How to write content into pdf use iText ? cagcowboy 2009-08-27T21:06:14Z 2009-08-27T21:06:14Z What sort of &quot;content&quot; are you trying to add? http://stackoverflow.com/questions/1342291/randomize-time-portion-of-date-field/1342309#1342309 Comment by cagcowboy on Randomize Time Portion of Date Field cagcowboy 2009-08-27T16:57:53Z 2009-08-27T16:57:53Z UPDATE table_name SET column_ts = SYSDATE - 120 + MOD(ROWNUM, 35) + DBMS_RANDOM.value(0, 86400-1)/86400; http://stackoverflow.com/questions/1342291/randomize-time-portion-of-date-field/1342311#1342311 Comment by cagcowboy on Randomize Time Portion of Date Field cagcowboy 2009-08-27T16:50:20Z 2009-08-27T16:50:20Z If DBMS_RANDOM.VALUE returns more than 86400, this will potentially increase the day. This is probably unwanted. http://stackoverflow.com/questions/1326627/oracle-use-two-different-versions-of-exp-on-the-same-machine Comment by cagcowboy on Oracle : Use two different versions of EXP on the same machine ? cagcowboy 2009-08-25T07:43:33Z 2009-08-25T07:43:33Z Is your ORACLE_HOME set correctly? http://stackoverflow.com/questions/1299694/oracle-how-to-find-out-if-there-is-a-transaction-pending/1300513#1300513 Comment by cagcowboy on Oracle: How to find out if there is a transaction pending? cagcowboy 2009-08-19T18:33:48Z 2009-08-19T18:33:48Z :-) Different descriptions... &quot;uncommitted work&quot; vs &quot;pending transaction&quot;