User David Aldridge - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T08:19:00Zhttp://stackoverflow.com/feeds/user/6742http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1828916/data-correlation-in-large-databases/1856202#18562021Answer by David Aldridge for Data Correlation in large DatabasesDavid Aldridge2009-12-06T18:47:02Z2009-12-06T18:47:02Z<p>Oracle supports regular expression with the RegExp_Like() function and it ought to be fairly straightforward to automate the generation of the code you need based on system metadate (to find all text columns over a certain length, for example, and include them in a predicate againt that table to find the rows and values that match your regexp). Doesn't sound too challenging really. In theory you could check constrain columns to prevent the insertion of values that match a regexp but that might be overkill.</p>
http://stackoverflow.com/questions/1852855/get-value-from-oracle-stored-procedure/1856138#18561380Answer by David Aldridge for Get value from oracle stored procedureDavid Aldridge2009-12-06T18:25:29Z2009-12-06T18:25:29Z<p>"Type" may be a reserved word. Are you sure the procedure compiled and is valid?</p>
<p>Also are you catching any error messages there, and hiding them with the catch clause? That seems like bad practice.</p>
http://stackoverflow.com/questions/1849184/how-do-i-rename-primary-key-values-in-oracle/1851717#18517173Answer by David Aldridge for How do I rename primary key values in Oracle?David Aldridge2009-12-05T09:39:33Z2009-12-05T09:39:33Z<p>The problem is presumably with the foreign keys that reference the PK. You must define the foreign keys as "deferrable initially immediate", as described in this Tom Kyte article: <a href="http://www.oracle.com/technology/oramag/oracle/03-nov/o63asktom.html" rel="nofollow">http://www.oracle.com/technology/oramag/oracle/03-nov/o63asktom.html</a>
That lets you ...</p>
<ol>
<li>Defer the constraints</li>
<li>Modify the parent value</li>
<li>Modify the child values</li>
<li>Commit the change</li>
</ol>
<p>Simple.</p>
http://stackoverflow.com/questions/1846074/oracle-database-table-insertion/1846108#18461082Answer by David Aldridge for Oracle database table insertionDavid Aldridge2009-12-04T10:25:49Z2009-12-04T10:25:49Z<p>Do you want number.num to continually represent the number of rows iin the Entry table? If so you could just define it as a view:</p>
<pre><code>create view number_view
as
select count(*) from Entry
</code></pre>
http://stackoverflow.com/questions/1845727/what-is-the-way-to-get-the-timespan-between-two-dates-in-oracle-9i/1846096#18460962Answer by David Aldridge for What is the way to get the timespan between two dates in Oracle 9iDavid Aldridge2009-12-04T10:23:01Z2009-12-04T10:23:01Z<p>You can express the difference as a numeric number of days, or as an interval data type: <a href="http://download.oracle.com/docs/cd/B10501%5F01/server.920/a96540/expressions9a.htm#1033525" rel="nofollow">http://download.oracle.com/docs/cd/B10501%5F01/server.920/a96540/expressions9a.htm#1033525</a></p>
http://stackoverflow.com/questions/1840538/faster-alternative-in-oracle-to-select-count-from-sometable/1840705#18407053Answer by David Aldridge for Faster alternative in Oracle to SELECT COUNT(*) FROM sometableDavid Aldridge2009-12-03T15:36:30Z2009-12-03T15:36:30Z<p>Option 1: Have an index on a non-null column present that can be used for the scan. Or create a function-based index as:</p>
<pre><code>create index idx on t(0);
</code></pre>
<p>this can then be scanned to give the count.</p>
<p>Option 2: If you have monitoring turned on then check the monitoring view USER_TAB_MODIFICATIONS and add/subtract the relevant values to the table statistics.</p>
<p>Option 3: For a quick estimate on large tables invoke the SAMPLE clause ... for example ...</p>
<pre><code>SELECT 1000*COUNT(*) FROM sometable SAMPLE(0.1);
</code></pre>
<p>Option 4: Use a materialized view to maintain the count(*). Powerful medicine though.</p>
<p>um ...</p>
http://stackoverflow.com/questions/1840454/which-database-should-i-use-for-home-project-use/1840532#18405320Answer by David Aldridge for Which database should I use for home project use?David Aldridge2009-12-03T15:18:23Z2009-12-03T15:18:23Z<p>If you use SQL Server and oracle at work then I'd go for one of those. In fact, why not go for both? Installing the express edition of both (assuming they'll co-exist) and learn the pros and cons of each one sounds like a worthwhile approach.</p>
<p>You could even try developing for database independence as well as using the syntax and specific features of each one on their own. Sounds very educational to me.</p>
http://stackoverflow.com/questions/1834790/help-to-improve-a-migration-program/1838805#18388051Answer by David Aldridge for Help to improve a migration programDavid Aldridge2009-12-03T09:41:09Z2009-12-03T09:41:09Z<p>I think that I'd automate the building of views on top of those views, based as Adam says on the metadata. Make each view a single column by converting all the fields to text (using explicit conversion for dates) and concatanating the fields together, and just dump that single column to a text file.</p>
http://stackoverflow.com/questions/1835732/finding-terabytes-of-data-and-using-in-oracle-for-learning-purposes/1838784#18387840Answer by David Aldridge for Finding terabytes of data and using in oracle for learning purposesDavid Aldridge2009-12-03T09:36:41Z2009-12-03T09:36:41Z<blockquote>
<p>Someone on irc said if you cant handle few terabytes of data then you are still not good enough. </p>
</blockquote>
<p>"Handle" meaning what, though? </p>
<p>If it means "Design a backup and restore strategy" then it is much, much more important to understand the internals of Oracle redo, undo, RMAN, and recovery. That is the place to start, and you can work with very smalll data sets to make sure that you have that understanding. Read the documentation, read articles by reputable people, practice, practice, practice.</p>
<p>If it means "Design an indexing strategy" then work on understanding indexes and the cost based optimiser. Again, data volume is not critical here but a solid understanding of the internals will take you a very long way.</p>
<p>In fact whatever it means it is way more important as a DBA to understand the Oracle architecture and the internal workings. Once you have those then you'll be way ahead of 90% of other DBA's out there, and working with Terabytes will not be a challenge.</p>
http://stackoverflow.com/questions/1838048/equivalent-of-pic-s9-with-lenght-16-in-oracle/1838694#18386940Answer by David Aldridge for equivalent of PIC S9 with lenght 16 in oracleDavid Aldridge2009-12-03T09:19:18Z2009-12-03T09:19:18Z<p>If you want to store a date or a datetime with precision to seconds then use the DATE data type. If you need subsecond granularity then use the TIMESTAMP data type.</p>
<p>It's considered a very bad practice to store dates as a numeric or character representation in oracle as it makes date validation and date operations more complex, and can lead to poor query optimisation.</p>
http://stackoverflow.com/questions/1838094/force-index-use-in-oracle/1838339#18383392Answer by David Aldridge for Force index use in OracleDavid Aldridge2009-12-03T07:53:33Z2009-12-03T07:53:33Z<blockquote>
<p>If you think the performance of the query will be better using the index, how could you force the query to use the index?</p>
</blockquote>
<p>First you would of course verify that the index gave a better result for returning the complete data set, right?</p>
<p>The index hint is the key here, but the more up to date way of specifying it is with the column naming method rather than the index naming method. In your case you would use:</p>
<pre><code>select /*+ index(table_name (column_having_index)) */ *
from table_name
where column_having_index="some value";
</code></pre>
<p>In more complex cases you might ...</p>
<pre><code>select /*+ index(t (t.column_having_index)) */ *
from my_owner.table_name t,
...
where t.column_having_index="some value";
</code></pre>
http://stackoverflow.com/questions/1837974/oracles-default-date-format-is-yyyy-mm-dd-oh-dear-god-why/1838316#18383163Answer by David Aldridge for Oracle's default date format is YYYY-MM-DD, oh dear god, WHY???David Aldridge2009-12-03T07:47:20Z2009-12-03T07:47:20Z<p>It's never wise to rely on defaults being set to a particular value, IMHO, whether it's for date formats, currency formats, optimiser modes or whatever. You should always set the value of date format that you need, in the server, the client, or the application.</p>
<p>In particular, never rely on defaults when converting date or numeric data types for display purposes, because a single change to the database can break your application. Always use an explicit conversion format. For years I worked on Oracle systems where the out of the box default date display format was MM/DD/RR, which drove me nuts but at least forced me to always use an explicit conversion.</p>
http://stackoverflow.com/questions/1833489/materialized-view-fast-refresh-taking-a-long-time/1834197#18341970Answer by David Aldridge for Materialized View fast refresh taking a long timeDavid Aldridge2009-12-02T16:42:47Z2009-12-02T16:42:47Z<p>How do the estimated cardinalities look for the refresh query in comparison to the actual cardinalities? Maybe the MLOG$ table statistics are incorrect.</p>
<p>It might be better to have no statistics on the table and lock them in order to invoke dynamic sampling, which ought to give a reasonable estimation based on the multiple predicates in the query.</p>
http://stackoverflow.com/questions/1833542/sqlldr-and-skipunusableindexes/1834150#18341500Answer by David Aldridge for SQLLDR and skip_unusable_indexesDavid Aldridge2009-12-02T16:35:20Z2009-12-02T16:35:20Z<p>I think that you could replace the unique index with a non-unique index and then place a unique constraint on the same column(s). Then the constraint can be disabled and the index made unusable before the load, then the index rebuilt and the constraint re-enabled afterwards.</p>
http://stackoverflow.com/questions/1831723/tool-for-monitoring-sql-query-results-needed/1833487#18334872Answer by David Aldridge for Tool for monitoring SQL query results neededDavid Aldridge2009-12-02T15:08:35Z2009-12-02T15:08:35Z<p>How about using DBMS_Scheduler to run a stored procedure that queries the table and then uses UTL_Mail to send an email in case of a problem?</p>
http://stackoverflow.com/questions/1832822/how-oracle-uses-statistics-data/1833472#18334722Answer by David Aldridge for How Oracle uses statistics dataDavid Aldridge2009-12-02T15:06:19Z2009-12-02T15:06:19Z<p>Statistics are used by the oracle cost based optimizer (CBO) to calculate the relative costs of different ways of executing a query so that the most appropriate one can be chosen.</p>
<p>On the whole this works very well, and is being continually improved. For example in 11g you can gather multicolumn histograms that help greatly with queries having predicates on correlated columns (eg. strongly correlated like month of birth and star sign, or more weakly correlted like gender and height).</p>
<p>However it is not perfect. For example estimating the cardinality of the result set of a join between two tables is reasonably accurate, as is estimating the cardinality from a filter operation, but combining the two requires a lot of estimation that can easily be inaccurate. In some cases these issues can be worked around with hints, or with the use of global temporary tables for intermediate result sets.</p>
<p>Another problem of statistics is that changing them can change the execution plan, so there is more of a movement recently to either discourage continual gathering of statistics, or to analyse the impact of changes to statistics before implementing them. </p>
<p>Look for the Jonathan Lewis book -- it is a very thorough treatment of the subject.</p>
http://stackoverflow.com/questions/1821404/what-is-table-partitioning/1827798#18277980Answer by David Aldridge for What is table partitioning?David Aldridge2009-12-01T17:51:25Z2009-12-01T17:51:25Z<p>i) It is the subdivision of a single table into multiple segments, called partitions, each of which holds a subset of values.</p>
<p>ii) You should use it when you have read the documentation, run some test cases, fully understood the advantages and disadvantages of it, and found that it will be of benefit.</p>
<p>You are not going to get a complete answer on a forum. Go and read the documentation and come back when you have a manageable problem.</p>
http://stackoverflow.com/questions/1824654/oracle-move-column-to-the-first-position/1827327#18273270Answer by David Aldridge for Oracle move column to the first positionDavid Aldridge2009-12-01T16:30:08Z2009-12-01T16:30:08Z<p>You might like to access your table via a view, so you can painlessly rearrange the logical order if it's important to the application technology.</p>
http://stackoverflow.com/questions/1826760/oracle-how-to-avoid-writes-to-undo-redo-log/1827315#18273151Answer by David Aldridge for Oracle How to Avoid writes to UNDO / REDO log .David Aldridge2009-12-01T16:28:18Z2009-12-01T16:28:18Z<p>It is really a matter or reducing the amount of work that you are doing.</p>
<p>Table UNDO on a direct path insert is always small as the system just has to record that certain ranges of blocks should be removed from the segment. Indexes will still require substantial undo though. Nologging on a direct path insert minimises table REDO.</p>
http://stackoverflow.com/questions/1824572/how-to-shrink-temp-tablespace-in-oracle/1825426#18254260Answer by David Aldridge for How to shrink temp tablespace in oracle?David Aldridge2009-12-01T10:55:36Z2009-12-01T10:55:36Z<p>It will be increasing because you have a need for temporary storage space, possibly due to a cartesian product or a large sort operation.</p>
<p>The dynamic performance view <code>V$TEMPSEG_USAGE</code> will help diagnose the cause.</p>
http://stackoverflow.com/questions/1820725/how-does-oracle-manage-redo-logs/1821186#18211862Answer by David Aldridge for How does Oracle manage Redo logs?David Aldridge2009-11-30T17:27:47Z2009-11-30T17:27:47Z<p>A definitive answer from the documentation: <a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14231/onlineredo.htm#sthref850" rel="nofollow">http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14231/onlineredo.htm#sthref850</a></p>
http://stackoverflow.com/questions/1810200/overcoming-log-file-sync-by-design/1815147#18151471Answer by David Aldridge for overcoming 'log file sync' by design?David Aldridge2009-11-29T10:07:01Z2009-11-29T10:07:01Z<p>The most common cause of excessive log file syncs is too frequent commits, which are often deliberately coded in a mistaken attempt to reduce system load due to locking. You should commit only when your business transaction is complete.</p>
http://stackoverflow.com/questions/1808994/oracle-c-linux-and-more-weird-stuff/1809033#18090330Answer by David Aldridge for Oracle C++ linux and more weird stuffDavid Aldridge2009-11-27T14:16:27Z2009-11-27T14:16:27Z<p>Well i'm pretty sure that you'd need the windows version of the Oracle Client if you're running on a windows machine.</p>
http://stackoverflow.com/questions/1808669/delete-all-but-some-rows-oracle/1808834#18088347Answer by David Aldridge for Delete all but some rows - OracleDavid Aldridge2009-11-27T13:39:31Z2009-11-27T13:39:31Z<p>This will delete all rows for each unique combination of col1 and col2 other than the first five ordered by rowid</p>
<pre><code>delete from my_table
where rowid in
(
select rowid
from
(
select rowid,
row_number() over (partition by col1, col2 order by rowid) rownumber
from my_table
)
where rownumber > 5
)
/
</code></pre>
http://stackoverflow.com/questions/1808622/update-statement-optimization-functions-in-the-where-clause/1808793#18087932Answer by David Aldridge for Update statement optimization (functions in the where clause)David Aldridge2009-11-27T13:31:10Z2009-11-27T13:31:10Z<p>On a side note it might be more robust to:</p>
<p>UPDATE X
SET VALUE = LPAD(VALUE,3,'0')
WHERE LENGTH(VALUE) < 3</p>
<p>... just in case.</p>
http://stackoverflow.com/questions/1803318/pl-sql-procedure-and-a-crystal-report/1805095#18050950Answer by David Aldridge for PL/SQL Procedure and a crystal reportDavid Aldridge2009-11-26T18:28:33Z2009-11-26T18:28:33Z<p>Your code sucks.</p>
<p>Firstly, why are you using explicit cursors? Why wouldn't you just insert the rows into the tables?</p>
<p>Secondly, why delete when you could truncate much faster?</p>
<p>Thirdly, <code>to_char(date_entered,'MM/DD/YYYY')>=to_char(cdate,'MM/DD/YYYY')</code> applies a function to a column (so an index can't be used and the optimiser cannot get a good estimate of cardinality), <em>and</em> it converts the dates to a stupid character format with the month in the leading position so that it does not even do a correct comparison! 02-november-2009 sorts greater than 01-march-2010 in your logic.</p>
<p>Fourthly, why on earth are you using a stored procedure for this? Just run the damn queries and Union All them together if you need to.</p>
<p>This reminds me of all of the crap I saw from offshore report developers for two years at my previous job. Complete incompetence.</p>
http://stackoverflow.com/questions/1802492/100-billion-records-per-day-in-oracle-is-this-a-problem/1802547#18025471Answer by David Aldridge for 100 billion records per day in Oracle - is this a problem?David Aldridge2009-11-26T09:22:37Z2009-11-26T09:22:37Z<p>You may be in the realm of an Oracle Database Machine there: <a href="http://www.oracle.com/database/exadata.html" rel="nofollow">http://www.oracle.com/database/exadata.html</a></p>
http://stackoverflow.com/questions/1798046/how-can-i-tell-if-a-materialized-view-in-oracle-is-being-used/1802089#18020890Answer by David Aldridge for How can I tell if a Materialized View in Oracle is being used?David Aldridge2009-11-26T07:31:46Z2009-11-26T07:31:46Z<p>One method other than auditing would be to read the v$segment_statistics view after one refresh and before the next refresh to see if there have been any reads. You'd have to account for any automatic statistics collection jobs also.</p>
http://stackoverflow.com/questions/1796599/how-to-break-trigger-event/1797064#17970645Answer by David Aldridge for How to break trigger event?David Aldridge2009-11-25T13:56:24Z2009-11-25T13:56:24Z<p>I would try to do whatever I could to embed this logic in a check condition rather than a trigger.</p>
http://stackoverflow.com/questions/1795039/use-of-correlated-subquery/1795558#17955583Answer by David Aldridge for Use Of Correlated Subquery.David Aldridge2009-11-25T09:02:16Z2009-11-25T09:02:16Z<p>Well, firstly it doesn't have a performance issue. It is what it is, and it will be executed as well as possible given the performance constraints of the hardware and database structure.</p>
<p>As for what it is useful for, it is just a way of expressing particular logical conditions. </p>
http://stackoverflow.com/questions/1378133/why-are-oracle-table-column-index-names-limited-to-30-characters/1572389#1572389Comment by David Aldridge on Why are Oracle table/column/index names limited to 30 characters?David Aldridge2009-12-07T18:27:06Z2009-12-07T18:27:06ZI believe the first version of Oracle was written in Fortran, which I think has an identifier length limit of 31. Maybe that's relevant.http://stackoverflow.com/questions/1859565/encryption-inside-oracle/1859626#1859626Comment by David Aldridge on Encryption inside oracleDavid Aldridge2009-12-07T16:19:20Z2009-12-07T16:19:20ZNot really "encryption" of course since it's not very difficult to reverse-engineer, but safe from the casual viewer.http://stackoverflow.com/questions/1856414/cons-of-oracle-database/1856659#1856659Comment by David Aldridge on Cons of Oracle Database.David Aldridge2009-12-07T14:04:29Z2009-12-07T14:04:29ZWell IANADBA, but aside from sorting out package prerequisites on *nix the installation has always just been a matter of following instructions as far as I can tell.http://stackoverflow.com/questions/1856414/cons-of-oracle-database/1858184#1858184Comment by David Aldridge on Cons of Oracle Database.David Aldridge2009-12-07T10:58:12Z2009-12-07T10:58:12ZRef. Documentation, the oracle documentation is great though, and the forums are very active and helpful. There are maybe half a dozen books that will help get you through 99% of the rest.http://stackoverflow.com/questions/1856414/cons-of-oracle-database/1856426#1856426Comment by David Aldridge on Cons of Oracle Database.David Aldridge2009-12-07T10:56:49Z2009-12-07T10:56:49ZThere are a lot of companies with a vested interest in telling you that oracle is difficult to configure, and that indexes need regular rebuilding, and that you need to hire them in to help you. Buyer beware.http://stackoverflow.com/questions/1856414/cons-of-oracle-database/1856423#1856423Comment by David Aldridge on Cons of Oracle Database.David Aldridge2009-12-07T10:55:30Z2009-12-07T10:55:30ZRemember, only poor people pay retail ;)http://stackoverflow.com/questions/1841388/unique-constraint-on-multiple-columnsComment by David Aldridge on Unique constraint on multiple columnsDavid Aldridge2009-12-04T09:04:05Z2009-12-04T09:04:05ZIt seems to me that it is pretty trivial to find out the answer to this with a test. Can it possibly take more than a minute to do so?http://stackoverflow.com/questions/1841437/sql-optimization-question-oracle/1842729#1842729Comment by David Aldridge on SQL optimization question (oracle)David Aldridge2009-12-04T07:52:07Z2009-12-04T07:52:07ZWith the commit inside the cursor I wonder whether it might be best to intorduce an ORDER BY into the cursor select in order to make sure that all values have been read from the source table prior to commiting, hopefully reducing the chances of a snapshot too old error. you'd want to check the execution plan to make sure that a sort is being performed of course.http://stackoverflow.com/questions/1841437/sql-optimization-question-oracle/1841483#1841483Comment by David Aldridge on SQL optimization question (oracle)David Aldridge2009-12-04T00:13:16Z2009-12-04T00:13:16ZOracle does indeed support deletes against an inline view as long as it is key-preserved.http://stackoverflow.com/questions/1837974/oracles-default-date-format-is-yyyy-mm-dd-oh-dear-god-why/1838369#1838369Comment by David Aldridge on Oracle's default date format is YYYY-MM-DD, oh dear god, WHY???David Aldridge2009-12-03T17:15:31Z2009-12-03T17:15:31ZI think that the principle of not relying on defaults is universal and not tool dependent, so i didn;t think it was very relevant.http://stackoverflow.com/questions/1840538/faster-alternative-in-oracle-to-select-count-from-sometable/1840641#1840641Comment by David Aldridge on Faster alternative in Oracle to SELECT COUNT(*) FROM sometableDavid Aldridge2009-12-03T15:37:20Z2009-12-03T15:37:20ZIt can also choose to scan other indexes other than the PK though.http://stackoverflow.com/questions/1840538/faster-alternative-in-oracle-to-select-count-from-sometable/1840576#1840576Comment by David Aldridge on Faster alternative in Oracle to SELECT COUNT(*) FROM sometableDavid Aldridge2009-12-03T15:28:43Z2009-12-03T15:28:43Z-1: It will be optimised to a scan of the smallest segment anyway, whether that's the table, the PK index, or another non-null or bitmap index.http://stackoverflow.com/questions/1840454/which-database-should-i-use-for-home-project-use/1840465#1840465Comment by David Aldridge on Which database should I use for home project use?David Aldridge2009-12-03T15:22:34Z2009-12-03T15:22:34ZYou could dabble in Oracle's Application Express environment also, which is quite a nice little "throw it together quickly" way of doing things. The skills learned on Express Edition are generally transferrable right up to Enterprise Edition of course, so career-wise it could be a good choice.http://stackoverflow.com/questions/1840454/which-database-should-i-use-for-home-project-use/1840483#1840483Comment by David Aldridge on Which database should I use for home project use?David Aldridge2009-12-03T15:19:50Z2009-12-03T15:19:50ZThe Express Edition is an easy install and the higher the version then the easier it is run. http://stackoverflow.com/questions/1837974/oracles-default-date-format-is-yyyy-mm-dd-oh-dear-god-why/1838369#1838369Comment by David Aldridge on Oracle's default date format is YYYY-MM-DD, oh dear god, WHY???David Aldridge2009-12-03T09:56:31Z2009-12-03T09:56:31ZOh, version 1.5.5 that is.