User Gary - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T18:29:48Zhttp://stackoverflow.com/feeds/user/25714http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1733273/supporting-both-oracle-and-mysql-how-similar-is-their-sql-syntax/1737180#17371800Answer by Gary for Supporting both Oracle and MySQL: how similar is their SQL syntax?Gary2009-11-15T10:22:55Z2009-11-15T10:22:55Z<p>Oracle treats empty strings as nulls. MySQL treats empty strings as empty strings and null strings as null strings.</p>
http://stackoverflow.com/questions/1733504/how-to-get-the-list-of-java-processes-along-with-their-pidprocess-id-that-are-r/1737172#17371720Answer by Gary for How to get the list of java processes along with their PID(process id) that are running on UAT server under a specfic account?Gary2009-11-15T10:20:14Z2009-11-15T10:20:14Z<p>Have you tried <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Process Explorer</a>
"Ever wondered which program has a particular file or directory open? Now you can find out. Process Explorer shows you information about which handles and DLLs processes have opened or loaded."
Doesn't just work for java processes.</p>
http://stackoverflow.com/questions/1734368/why-would-oracle-ignore-a-perfect-index/1737164#17371641Answer by Gary for Why would Oracle ignore a "perfect" index?Gary2009-11-15T10:16:50Z2009-11-15T10:16:50Z<p>"The next morning, Oracle suddenly liked the index (probably slept over it)"
Probably a DBMS_STATS is running overnight.</p>
<p>Generally I would see one of three reasons for a FULL TABLE SCAN over an index. The first is that the optimizer thinks the table is empty, or at least very small. I suspect this was the initial problem. In that case it would be quicker to full scan a table consisting of only a handful of blocks rather than use an index.</p>
<p>The second is when the query is such that an index cannot be practically used.</p>
<pre><code>"select * from demo where key = 1 and type = '003' and state = 'NEW'"
</code></pre>
<p>Are you actually using literals hard-coded in the query. If not, your variable datatypes may be incorrect (eg key being character). That would require the numeric key be converted to character for comparison, which would make the index nearly useless.</p>
<p>The third reason is where it thinks the query will process a large proportion of the rows in the table. Type and State seem pretty low cardinality. Do you perhaps have a large number of a specific 'key' value ?</p>
http://stackoverflow.com/questions/1580534/how-to-know-if-between-2-dates-it-past-5-days-oracle-10g/1581222#15812221Answer by Gary for how to know if between 2 date's it past 5 days - Oracle 10g ?Gary2009-10-17T02:17:13Z2009-10-17T02:17:13Z<p>First decide whether your date format is DD/MM/YYYY or MM/DD/YYYY</p>
http://stackoverflow.com/questions/1580408/how-to-renumber-pages-in-an-oracle-apex-application/1581025#15810253Answer by Gary for How to renumber pages in an Oracle APEX application?Gary2009-10-17T00:28:49Z2009-10-17T00:28:49Z<p>Numbers are arbitrary. Don't go to the hassle of renumbering everything, as you'll need to test all the branches, tabs, breadcrumbs....</p>
http://stackoverflow.com/questions/1503803/select-from-table-in-oracle-with-multiple-sessions/1508737#15087370Answer by Gary for Select from table in Oracle with multiple sessionsGary2009-10-02T10:15:32Z2009-10-02T10:15:32Z<p>If you have 11g, look at <a href="http://download.oracle.com/docs/cd/B28359%5F01/server.111/b28286/statements%5F10002.htm#sthref9498" rel="nofollow">SKIP LOCKED</a>
It is there, but undocumented (and therefore unsupported and maybe buggy) in 10g.
That way, when Session A locks the row, Session B can skip it and process the next.</p>
http://stackoverflow.com/questions/1494099/can-a-rowid-be-invalidated-right-after-being-inserted-in-oracle/1497070#14970702Answer by Gary for Can a rowid be invalidated right after being inserted in Oracle?Gary2009-09-30T09:39:26Z2009-09-30T09:39:26Z<p>A couple of other things may be happening.
Firstly, the INSERT may be failing. Are you checking for errors/exceptions ? If not, maybe the value in the variable is junk.</p>
<p>Secondly, you could be inserting something that you can select. Virtual Private Database / Row Level Security could be responsible.</p>
<p>Thirdly, if you commit in between the insert and select, a deferred constraint may force a rollback of the insert.</p>
<p>Fourthly, maybe you are doing a rollback.</p>
http://stackoverflow.com/questions/1496650/sql-command-not-properly-ended/1497028#14970281Answer by Gary for SQL Command not properly endedGary2009-09-30T09:30:00Z2009-09-30T09:30:00Z<p>In a similar situation I created a view over the destination table that had the columns in the appropriate order.</p>
<p>For example</p>
<pre><code>Table A has columns (A, B, C)
Table B has columns (B, C, A)
</code></pre>
<p>You create a view like </p>
<pre><code>CREATE VIEW A_V AS SELECT B,C,A FROM A;
</code></pre>
<p>Then you can do an <code>insert into a_v select * from b;</code></p>
<p>The advantage is that, even if columns are added to table a but not to table b then, as long as they are nullable or have a default, the insert via the view still works.</p>
<p>I created the CREATE VIEW scripts automatically, looking up against USER_TAB_COLUMNS for table B.</p>
http://stackoverflow.com/questions/1378133/why-are-oracle-table-column-index-names-limited-to-30-characters/1381972#13819721Answer by Gary for Why are Oracle table/column/index names limited to 30 characters?Gary2009-09-04T23:43:28Z2009-09-04T23:43:28Z<p>Constraint violations get reported in SQLERRM which is limited to 255 characters, and which most clients use to make errors visible. I suspect increasing the allowable size of constraint names significantly would impact the ability to report on the violations (especially where a constraint violation has been bubbled up through a few layers of PL/SQL code).</p>
http://stackoverflow.com/questions/1341855/how-to-show-result-when-table-is-my-type-in-oracle/1346232#13462321Answer by Gary for How to show result when table is my type in OracleGary2009-08-28T10:41:12Z2009-08-28T10:41:12Z<p>You can also do</p>
<pre><code>select * from table(my_function(30))
</code></pre>
http://stackoverflow.com/questions/1306419/query-to-linked-server-never-stops-executing/1314356#13143561Answer by Gary for Query to Linked Server never stops executingGary2009-08-21T21:41:27Z2009-08-21T21:41:27Z<p>Look on the Oracle server, querying v$session. See if you can see the remote connection, and what the Oracle session is doing. You can even do a trace on the Oracle side (set off by a login trigger) to record everything that happens (eg parse of query, returned errors etc).</p>
http://stackoverflow.com/questions/1310957/is-there-any-way-to-impersonate-a-specific-database-engine-while-running-another/1314351#13143510Answer by Gary for Is there any way to impersonate a specific database engine while running another one?Gary2009-08-21T21:39:50Z2009-08-21T21:39:50Z<p>The closest I've heard is EnterpriseDB where they have built a layer on top of Postgres so it looks more like Oracle. </p>
<p>But remember these databases have features covered by patents and copyright so there's a limit on how closely a competitor product can imitate the real thing.</p>
<p>It would probably be easier to imitate 'down' than up. For example, MS-Access wouldn't be able to imitate much of the functionality for Oracle or SQL Server, whereas there's a much better chance of SQL Server imitating a simpler DB like Access.</p>
http://stackoverflow.com/questions/1313212/oracle-get-stored-procedure-last-modified-date/1314308#13143081Answer by Gary for Oracle get stored procedure last modified dateGary2009-08-21T21:26:18Z2009-08-21T21:26:18Z<p>If you are interested in actual changes to the code, look into the AUDIT statement or a <a href="http://download.oracle.com/docs/cd/B28359%5F01/appdev.111/b28370/create%5Ftrigger.htm#BABIEBHC" rel="nofollow">DDL trigger</a></p>
http://stackoverflow.com/questions/1290520/how-can-i-use-oracle-preprocessor-for-external-tables-to-consume-this-type-of-for/1291412#12914120Answer by Gary for How can I use Oracle Preprocessor for External Tables to consume this type of format?Gary2009-08-18T01:58:09Z2009-08-18T01:58:09Z<blockquote>
<p>"If I map three tables to the same
file, how will this affect
performance? (Access is mostly or all
reads, few or no writes"</p>
</blockquote>
<p>There should be little or no difference between three sessions accessing the same file through one external table definition or three external table definitions.
External tables aren't cached by the database (might be by the file system or disk), so any access is purely physical reads.
Depending on the pre-processor program, there might be some level of serialization there (or you may use a pre-processor program to impose serialization). </p>
<p>Performance-wise, you'd be better for a single session to scan the external file/table and load it into one or more database tables. The other sessions read it from there and it is cached in the SGA. Also, you can index a database table so you don't have to read it all.</p>
<p>You may be able to use <a href="http://download.oracle.com/docs/cd/B28359%5F01/server.111/b28286/statements%5F9014.htm#i2095116" rel="nofollow">multi-table inserts</a> to load multiple database tables from a single external table definition in a single pass.</p>
<blockquote>
<p>"what format does the standard output
of my preprocessor have to be? Must it
be CSV, or are there ways to configure
the external table driver?"</p>
</blockquote>
<p>It pretty much follows SQL*Loader, and both are in the <a href="http://download.oracle.com/docs/cd/B28359%5F01/server.111/b28319/et%5Fparams.htm#i1009499" rel="nofollow">Utilities manual</a>. You can use fixed format or other delimiters. </p>
<blockquote>
<p>Would I need to define N external
tables, each referencing a different
program?</p>
</blockquote>
<p>Depends on how the data is interleaved. Ignoring pre-processors, you can have different external tables pulling different columns from the same file or use the <a href="http://download.oracle.com/docs/cd/B28359%5F01/server.111/b28319/et%5Fparams.htm#sthref1741" rel="nofollow">LOAD WHEN</a> clause to determine which records to include or exclude. </p>
http://stackoverflow.com/questions/1278524/string-matching-in-oracle-10g-where-either-side-can-have-wildcards/1285709#12857090Answer by Gary for String matching in Oracle 10g where either side can have wildcardsGary2009-08-17T00:09:53Z2009-08-17T23:56:08Z<p>Next suggestions.
Simple option : The _ is the single character match for LIKE, so the simple solution is</p>
<pre><code>SELECT * FROM tmp WHERE vals LIKE v_param OR v_param LIKE vals;
</code></pre>
<p>It will be a full table scan each time, but saves the switching between SQL and PL/SQL layers</p>
<p>Complex option
Bitmap indexes on substr for each individual character. That sort of multi-index tuff is what bitmaps are good at. Bitmaps are a bugger for columns with heavy updates or tables with lots of small inserts though.</p>
<p>I've built a test test. Firstly I've loaded 10,000 values into TMP, pretty much randomly generated. Not sure how big your data set will be, or the proportion of entries with no wildcards, one wildcard or multiple wildcards. That would have a big effect on the results.</p>
<pre><code>create table tmp ( vals varchar(8), mask varchar(8));
insert into tmp
select new_val, translate(new_val,'0123456789','__________')
from
(select case
when rn_3 is not null then translate(val,'34','__')
when rn_5 is not null then translate(val,'2','_')
when rn_7 is not null then translate(val,'78','__')
when rn_11 is not null then translate(val,'12345','_____')
else val end new_val
from
(select lpad(trunc(dbms_random.value(1,99999999)),8,'0') val,
decode(mod(rownum,3),0,1) rn_3, decode(mod(rownum,5),0,1) rn_5,
decode(mod(rownum,7),0,1) rn_7, decode(mod(rownum,11),0,1) rn_11
from dual connect by level < 10000)
)
declare
cursor c_1 is
select case
when rn_3 is not null then translate(val,'34','__')
when rn_5 is not null then translate(val,'2','_')
when rn_7 is not null then translate(val,'78','__')
when rn_11 is not null then translate(val,'12345','_____')
else val end try_val
from
(select lpad(trunc(dbms_random.value(1,99999999)),8,'0') val,
decode(mod(rownum,3),0,1) rn_3, decode(mod(rownum,5),0,1) rn_5,
decode(mod(rownum,7),0,1) rn_7, decode(mod(rownum,11),0,1) rn_11
from dual connect by level < 1000);
v_cnt number;
v_start number;
v_end number;
begin
v_start := dbms_utility.get_time;
for c_rec in c_1 loop
select count(*) into v_cnt
from tmp
where (c_rec.try_val like vals or vals like c_rec.try_val);
end loop;
v_end := dbms_utility.get_time;
dbms_output.put_line('Meth 1 :'||(v_end - v_start));
v_start := dbms_utility.get_time;
for c_rec in c_1 loop
select count(*) into v_cnt from
(select * from (select * from tmp where mask = ' ') v1
where vals like c_rec.try_val
union all
select * from (select * from tmp where mask > ' ') v2
where vals like maskmerge(mask,c_rec.try_val));
end loop;
v_end := dbms_utility.get_time;
dbms_output.put_line('Meth 2 :'||(v_end - v_start));
end;
/
</code></pre>
<p>I've compared the 'double headed LIKE' against mask merge. In the test, the LIKE typically got around 200-250 (hundreths of a second), while the maskmerge took around ten times longer. As I said, it will very much depend on the data distribution.</p>
http://stackoverflow.com/questions/1289651/how-to-fetch-named-column-from-row-parameter-dynamically-in-oracle-pl-sql/1290918#12909181Answer by Gary for How to fetch named column from row parameter dynamically in Oracle PL/SQL?Gary2009-08-17T22:47:23Z2009-08-17T22:47:23Z<p>What's wrong with a IF/ELSIF </p>
<pre><code>IF p_field_name = 'COL1' THEN v_value := p_record.col1
ELSIF p_field_name = 'COL2' THEN v_value := p_record.col2
...
END IF;
</code></pre>
<p>You could event generate that from a SELECT from ALL_TAB_COLUMNS. It may not be pretty but it would work.</p>
http://stackoverflow.com/questions/1278524/string-matching-in-oracle-10g-where-either-side-can-have-wildcards/1282950#12829500Answer by Gary for String matching in Oracle 10g where either side can have wildcardsGary2009-08-15T21:50:50Z2009-08-15T21:50:50Z<p>Is the mask only a single character ?
If so you can limit the possibilities by something like</p>
<pre><code>select VALS from tmp
where specialmatch(vals,'12945678')
and (substr(vals,1,4) = substr('12945678',1,4)
or substr(vals,5) = substr('12945678',5));
</code></pre>
<p>Then you have function-based indexes on substr(vals,1,4) and substr(vals,5).
I seem to recall reading that there may be an issue with FBIs not getting the best plan for these, so an alternative SQL would be</p>
<pre><code> select VALS from tmp
where specialmatch(vals,'12945678')
and substr(vals,1,4) = substr('12945678',1,4)
union
select VALS from tmp
where specialmatch(vals,'12945678')
substr(vals,5) = substr('12945678',5));
</code></pre>
http://stackoverflow.com/questions/578272/ora-00939-error-in-reporting-services-ssrs/1252516#12525160Answer by Gary for ora-00939 error in reporting services, SSRSGary2009-08-09T22:46:04Z2009-08-09T22:46:04Z<p>The <a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14200/functions134.htm#i78608" rel="nofollow">REPLACE</a> function takes three string parameters, the last being optional. </p>
<p>The <a href="http://msdn.microsoft.com/en-us/library/aa337292.aspx" rel="nofollow">MS documentation</a> says a multi-valued parameter has the following restriction
"The query must use an IN clause to specify the parameter."</p>
<p>If you don't actually need to do the REPLACE to get rid of spaces, you should be able to do something like</p>
<pre><code>WHERE scg.group_abbreviation in (:PI_REGION_LIST)
</code></pre>
http://stackoverflow.com/questions/1232950/perl-dbi-run-sql-script-with-multiple-statements/1236184#12361842Answer by Gary for Perl DBI - run SQL Script with multiple statementsGary2009-08-05T22:53:58Z2009-08-05T22:53:58Z<p>Oracle can run multiple SQL statements in one prepare using an anonymous PL/SQL block.</p>
<p>eg</p>
<pre><code>$dbh->do("
BEGIN
UPDATE table_1 SET col_a = col_a -1;
DELETE FROM table_2 where id in (select id from table_1 where col_a = 0);
END;
");
</code></pre>
<p>DDL (creating or dropping objects) is more complicated, mostly because it is something you shouldn't be doing on an ad-hoc basis. </p>
http://stackoverflow.com/questions/1204372/why-oracle-does-not-have-autoincrement-feature-for-primary-keys/1204514#12045144Answer by Gary for Why oracle does not have autoincrement feature for primary keys?Gary2009-07-30T04:56:48Z2009-07-30T04:56:48Z<p>It may just be terminology.
'AUTOINCREMENT' implies that that record '103' will get created between records '102' and '104'. In clustered environments, that isn't necessarily the case for sequences. One node may insert '100','101','102' while the other node is inserting '110','111','112', so the records are 'out of order'. [Of course, the term 'sequence' has the same implication.]</p>
<p>If you choose not to follow the sequence model, then you introduce locking and serialization issues. Do you force an insert to wait for the commit/rollback of another insert before determining what the next value is, or do you accept that, if a transaction rolls back, you get gaps in the keys.</p>
<p>Then there's the issue about what you do if someone wants to insert a row into the table with a specific value for that field (ie is it allowed, or does it work like a DEFAULT) or if someone tries to update it. If someone inserts '101', does the autoincrement 'jump' to '102' or do you risk attempted duplicate values.</p>
<p>It can have implications for their IMP utilities and direct path writes and backwards compatibility. </p>
<p>I'm not saying it couldn't be done. But I suspect in the end someone has looked at it and decided that they can spend the development time better elsewhere.</p>
http://stackoverflow.com/questions/1198162/workaround-for-oracle-9i-outputting-crlf-when-using-utlfile-putraw-for-blobs/1203491#12034910Answer by Gary for Workaround for Oracle 9i outputting CRLF when using utl_file.putraw() for BLOBs?Gary2009-07-29T22:40:44Z2009-07-29T22:40:44Z<p>Given what you are doing with the data (ie trying to remove it from the database) what is the feasibility of copying the table (as BLOBs) to a later database version (or a linux or other non-windows version).
Then you can run the extract from there.</p>
http://stackoverflow.com/questions/1197687/database-naming-of-columns-with-pii-and-sensitive-information/1197962#11979621Answer by Gary for Database naming of columns with PII and sensitive informationGary2009-07-29T03:53:22Z2009-07-29T03:53:22Z<p>I would have separate views (eg table PERSON with PERSON_BASIC having no PII columns and PERSON_PII with the PII columns). That way, if it is later decided that a column is sensitive (eg Date of Birth), then you can easily recreate the views to remove the column from the basic view rather than some massive data restructuring exercise which you would get with separate tables. </p>
<p>Also, the optimizer is getting better at correlation between columns on the same table (and you'd expect that to improve over time). Once you start joining non-PII tables to PII tables, you've just made it more complicated.</p>
<p>If you do go for separate tables, and think they'll need to be joined often, look into clusters so that the records for the same person are on the same block.</p>
<p>Consider using a <a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14200/statements%5F6012.htm#i2066772" rel="nofollow">role</a> secured by a password or through a package to control access to the PII view/columns.</p>
<p><a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14200/statements%5F5002.htm#i2060927" rel="nofollow">CONTEXT</a> can do this too. They are forced to call the package to set the context before they see the columns.
The view could be</p>
<pre><code>SELECT name, date_of_birth,
case when SYS_CONTEXT('SEC','xxx') ='ALLOW' THEN ssn END
from ...
</code></pre>
http://stackoverflow.com/questions/1194195/arabic-characters-not-accepted-in-oracle-db/1197163#11971630Answer by Gary for Arabic characters not accepted in Oracle DBGary2009-07-28T22:44:33Z2009-07-28T22:44:33Z<p>Can you enter Arabic characters direct to the database (eg SQLLDR or even a standard insert statement in SQL*Plus) ?
What is the characterset of the database (query NLS_DATABASE_PARAMETERS)</p>
http://stackoverflow.com/questions/1176162/oracle-analytics-inside-cursor/1177414#11774140Answer by Gary for Oracle Analytics inside CursorGary2009-07-24T12:42:41Z2009-07-24T12:42:41Z<p>The SQL you can use in Forms hasn't progressed in over a decade.
Dynamic SQL is the best answer. I think you should look at <a href="http://fdegrelle.over-blog.com/article-11899896.html" rel="nofollow">EXEC_SQL</a></p>
http://stackoverflow.com/questions/1150431/how-can-i-batch-download-data-from-oracle/1150997#11509970Answer by Gary for How can I "batch download" data from Oracle?Gary2009-07-19T21:56:07Z2009-07-19T21:56:07Z<p>Where is the data going ?
If you want an Oracle compatible 'backup' to load into another database, then look at exp or expdp.</p>
http://stackoverflow.com/questions/1148169/invalid-cursor-state-when-attempt-to-close/1148737#11487370Answer by Gary for Invalid cursor state when attempt to closeGary2009-07-18T22:19:25Z2009-07-18T22:19:25Z<p>Inserts do use a cursor. If you are doing lots of inserts, you should be reusing the cursor.
The pattern should be</p>
<pre><code>OPEN cursor
start loop
BIND variables
EXECUTE CURSOR
end loop
CLOSE cursor
</code></pre>
<p>In your case, I don't see an explicit open cursor, so I'd guess you are relying on c++ to manage that implicitly, and it doesn't seem to be doing a good job. Judging by the code <a href="http://forums.oracle.com/forums/thread.jspa?threadID=696060&tstart=0" rel="nofollow">here</a> you need to fit SQLPrepare into the logic.</p>
http://stackoverflow.com/questions/126188/sql-server-and-oracle-which-one-is-better-in-terms-of-scalability/1146083#11460830Answer by Gary for SQL Server and Oracle, which one is better in terms of scalability?Gary2009-07-17T23:10:20Z2009-07-17T23:10:20Z<p>When you are talking 500TB, that is (a) big and (b) specialized.
I'd be going to a consultancy firm with appropriate specialists to look at the existing skill sets, integration with existing technology stacks, expected usage, backup/recovery/DR requirements....</p>
<p>In short, it's not the sort of project I'd be heading into based on opinions from stackoverflow. No offence intended, but there's simply too many factors to take into account, a lot of which would be business confidential.</p>
http://stackoverflow.com/questions/1080178/sql-how-do-i-find-if-the-contents-of-a-varchar-column-are-numeric/1081398#10813981Answer by Gary for SQL: how do I find if the contents of a varchar column are numeric ?Gary2009-07-04T03:04:56Z2009-07-04T03:04:56Z<p>You may need to decide for yourself what is numeric.
Oracle will happily convert character strings in scientific notation (eg '1e10') to numbers, but it will baulk at something like '1,000' (because of the comma).</p>
http://stackoverflow.com/questions/1049291/how-to-handle-line-breaks-in-data-for-importing-with-sql-loader/1051789#10517892Answer by Gary for How to handle line breaks in data for importing with SQL LoaderGary2009-06-27T00:21:40Z2009-06-27T00:21:40Z<p>I'd look at EXPDP and IMPDP ahead of a text file. In 10g, you can read/write to external tables using datapump. See <a href="http://blogs.oracle.com/datawarehousing/2009/06/unloading%5Fdata%5Fusing%5Fexternal.html" rel="nofollow">here</a>. Your export becomes as simple as</p>
<pre><code>SQL> CREATE TABLE EMP_50
2 ORGANIZATION EXTERNAL
3 ( TYPE oracle_datapump
4 DEFAULT DIRECTORY dmp_dir
5 LOCATION (‘emp_50.dmp'))
6 )
7 AS SELECT * FROM EMPLOYEES WHERE DEPARTMENT_ID = 50
8 ;
</code></pre>
<p>You don't have to worry about any exotic characters, date or number conversion/formatting, even raw binary data.</p>
http://stackoverflow.com/questions/1050180/pl-sql-stored-procedure-where-does-the-execution-time-go/1051764#10517640Answer by Gary for pl/sql Stored procedure... where does the execution time go?Gary2009-06-27T00:08:00Z2009-06-27T00:08:00Z<p>What does the procedure do ?
One possible explanation may be DBMS_OUTPUT.
If, on SQL*Plus, you do a SET SERVEROUTPUT ON, after a statement has executed, the client does a 'behind-the-scenes' fetch of any information that has been buffered using DBMS_OUTPUT.PUT_LINE. I'd guess SQL Developer does the same.</p>
<p>So if a lot of stuff has been pushed to DBMS_OUTPUT, then the execution of the procedure could be quick, but the behind-the-scenes collection of that could be taking up the time (especially if it is a slow network).</p>
<p>Another trick in SQL*Plus is you can
SET TIMING ON (which will automatically show the elapsed time of the statement)
and
SET TIME ON (which shows the time in the SQL prompt).</p>
<p>So try</p>
<pre><code>SET SERVEROUTPUT OFF
SET TIMING ON
SET TIME ON
DBMS_MONITOR.DATABASE_TRACE_ENABLE(TRUE);
exec stored_proc;
disconn
</code></pre>
<p>And see the results. I wouldn't expect to see any time unaccounted for. That is, the client should report the full two minutes.
Assuming it does, I'd be using the trace (the DBMS_MONITOR command) and run a tkprof on the result to see what accounts for those 2 minutes.</p>
http://stackoverflow.com/questions/1580534/how-to-know-if-between-2-dates-it-past-5-days-oracle-10g/1581058#1581058Comment by Gary on how to know if between 2 date's it past 5 days - Oracle 10g ?Gary2009-10-17T02:18:06Z2009-10-17T02:18:06ZWhy MONTHS_BETWEEN for days ? http://stackoverflow.com/questions/1514526/can-i-substitute-savepoints-for-starting-new-transactions-in-oracleComment by Gary on Can I substitute savepoints for starting new transactions in Oracle?Gary2009-10-03T22:32:35Z2009-10-03T22:32:35ZIt would be useful if you put in your current value for UNDO_RETENTION and the time taken for the entire script to run and the processing of each set.http://stackoverflow.com/questions/1514526/can-i-substitute-savepoints-for-starting-new-transactions-in-oracle/1514637#1514637Comment by Gary on Can I substitute savepoints for starting new transactions in Oracle?Gary2009-10-03T22:17:41Z2009-10-03T22:17:41ZDCookie. Smaller chunks would probably be completely the wrong way to go. It is the committing that ALLOWS the undo to be overwritten because you are saying "I don't need it anymore". http://stackoverflow.com/questions/1514526/can-i-substitute-savepoints-for-starting-new-transactions-in-oracle/1514865#1514865Comment by Gary on Can I substitute savepoints for starting new transactions in Oracle?Gary2009-10-03T22:13:10Z2009-10-03T22:13:10ZThe advantage of savepoints would be, by not committing Oracle would be forced to retain information in UNDO longer. I suspect your outline is missing a step 0 of "Open a cursor". In the original method, it can lose the undo each time it hits step 3, so the cursor from step 0 can raise 1555. In the new method, it has to keep the undo all the way to the end of the script.http://stackoverflow.com/questions/1494099/can-a-rowid-be-invalidated-right-after-being-inserted-in-oracle/1494512#1494512Comment by Gary on Can a rowid be invalidated right after being inserted in Oracle?Gary2009-09-30T09:42:16Z2009-09-30T09:42:16ZAdd to this that ALTER TABLE MOVE isn't the only way to move a table, and it requires a table lock anyway. Online table redefinition would be more likely to exhibit this behaviour as new inserts are could well move from between the 'old' and 'new' segments.http://stackoverflow.com/questions/1459467/automatically-update-field-in-database/1459529#1459529Comment by Gary on Automatically Update Field in DatabaseGary2009-09-22T20:41:06Z2009-09-22T20:41:06ZIt can fail on mutating table with multi-table inserts and updates through join views, and maybe get deadlock issues when dealing with concurrent non-single row inserts/updates. Look into having tmp_ponylist in a separate on commit materialized view.http://stackoverflow.com/questions/1378133/why-are-oracle-table-column-index-names-limited-to-30-characters/1381972#1381972Comment by Gary on Why are Oracle table/column/index names limited to 30 characters?Gary2009-09-08T10:51:53Z2009-09-08T10:51:53ZIt isn't a table, but how client software actually gets errors from the database.http://stackoverflow.com/questions/1320848/before-insert-or-update-trigger-plsql/1320911#1320911Comment by Gary on before INSERT or Update trigger plsqlGary2009-08-24T12:30:28Z2009-08-24T12:30:28ZWorth adding that there is a NOVALIDATE caluse for check constraints to, so that the constraint is enforced for new inserts, but existing 'invalid' data can remain in the table (eg if you have closed the Chicago office, the historic data can stay, but you won't get any new data)http://stackoverflow.com/questions/1320848/before-insert-or-update-trigger-plsql/1320911#1320911Comment by Gary on before INSERT or Update trigger plsqlGary2009-08-24T12:28:56Z2009-08-24T12:28:56ZThe disadvantage of a trigger is that you'd have to fail the statement. With a check constraint, the developer has the option of of using a LOG ERRORS clause so that valid data gets inserted and the invalid data gets put into an exception table. Very useful for bulk data loads.http://stackoverflow.com/questions/1312662/oracle-string-replacement/1312726#1312726Comment by Gary on Oracle string replacementGary2009-08-21T21:32:16Z2009-08-21T21:32:16ZJust beware if the CSV stuff has quoted strings containing commas
'"Smith,John", 123,2009-12-31'
http://stackoverflow.com/questions/1312608/what-fields-can-i-update-in-oracleComment by Gary on What fields can I update in oracle?Gary2009-08-21T21:29:30Z2009-08-21T21:29:30ZIf you don't have specific column level privileges, then the table level privileges will apply.http://stackoverflow.com/questions/1290520/how-can-i-use-oracle-preprocessor-for-external-tables-to-consume-this-type-of-forComment by Gary on How can I use Oracle Preprocessor for External Tables to consume this type of format?Gary2009-08-18T01:33:30Z2009-08-18T01:33:30Z"But suppose for space and resource constraints, I can't store all of this in the tablespace." Is this XE, with the 4GB limit ?http://stackoverflow.com/questions/1279828/procedure-problemComment by Gary on procedure problem Gary2009-08-15T21:43:14Z2009-08-15T21:43:14ZAs a hint, the CREATE OR REPLACE bit doesn't count when determining which line an error is being reported for.http://stackoverflow.com/questions/1232969/oracle-broken-sequence/1233000#1233000Comment by Gary on Oracle Broken Sequence Gary2009-08-05T23:00:41Z2009-08-05T23:00:41ZIf it is a very slowly incrementing sequence (eg only use three of four values a week), then setting NOCACHE wouldn't impact performance.http://stackoverflow.com/questions/1233254/how-to-populate-a-timestamp-field-with-current-timestamp-using-oracle-sql-loader/1233549#1233549Comment by Gary on How to populate a timestamp field with current timestamp using Oracle Sql LoaderGary2009-08-05T22:57:41Z2009-08-05T22:57:41ZSYSDATE returns a DATE data type (but that includes hours minutes and seconds). CURRENT_TIMESTAMP returns a TIMESTAMP data type which goes down to fractional seconds (<a href="http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/sql_elements001.htm#i53219" rel="nofollow">download.oracle.com/docs/cd/…</a>).
Both these have internal representations (eg DATE is held as 7 bytes) and the client chooses how to display them.