User Mike McAllister - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:48:11Z http://stackoverflow.com/feeds/user/16247 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement 2 How do I troubleshoot performance problems with an Oracle SQL statement Mike McAllister 2008-09-19T17:51:09Z 2009-04-30T11:56:47Z <p>I have two insert statements, almost exactly the same, which run in two different schemas on the same Oracle instance. What the insert statement looks like doesn't matter - I'm looking for a troubleshooting strategy here.</p> <p>Both schemas have 99% the same structure. A few columns have slightly different names, other than that they're the same. The insert statements are almost exactly the same. The explain plan on one gives a cost of 6, the explain plan on the other gives a cost of 7. The tables involved in both sets of insert statements have exactly the same indexes. Statistics have been gathered for both schemas.</p> <p>One insert statement inserts 12,000 records in 5 seconds.</p> <p>The other insert statement inserts 25,000 records in 4 minutes 19 seconds.</p> <p>The number of records being insert is correct. It's the vast disparity in execution times that confuses me. Given that nothing stands out in the explain plan, how would you go about determining what's causing this disparity in runtimes?</p> <p>(I am using Oracle 10.2.0.4 on a Windows box).</p> <p><strong>Edit:</strong> The problem ended up being an inefficient query plan, involving a cartesian merge which didn't need to be done. Judicious use of index hints and a hash join hint solved the problem. It now takes 10 seconds. Sql Trace / TKProf gave me the direction, as I it showed me how many seconds each step in the plan took, and how many rows were being generated. Thus TKPROF showed me:-</p> <pre><code>Rows Row Source Operation ------- --------------------------------------------------- 23690 NESTED LOOPS OUTER (cr=3310466 pr=17 pw=0 time=174881374 us) 23690 NESTED LOOPS (cr=3310464 pr=17 pw=0 time=174478629 us) 2160900 MERGE JOIN CARTESIAN (cr=102 pr=0 pw=0 time=6491451 us) 1470 TABLE ACCESS BY INDEX ROWID TBL1 (cr=57 pr=0 pw=0 time=23978 us) 8820 INDEX RANGE SCAN XIF5TBL1 (cr=16 pr=0 pw=0 time=8859 us)(object id 272041) 2160900 BUFFER SORT (cr=45 pr=0 pw=0 time=4334777 us) 1470 TABLE ACCESS BY INDEX ROWID TBL1 (cr=45 pr=0 pw=0 time=2956 us) 8820 INDEX RANGE SCAN XIF5TBL1 (cr=10 pr=0 pw=0 time=8830 us)(object id 272041) 23690 MAT_VIEW ACCESS BY INDEX ROWID TBL2 (cr=3310362 pr=17 pw=0 time=235116546 us) 96565 INDEX RANGE SCAN XPK_TBL2 (cr=3219374 pr=3 pw=0 time=217869652 us)(object id 272084) 0 TABLE ACCESS BY INDEX ROWID TBL3 (cr=2 pr=0 pw=0 time=293390 us) 0 INDEX RANGE SCAN XIF1TBL3 (cr=2 pr=0 pw=0 time=180345 us)(object id 271983) </code></pre> <p>Notice the rows where the operations are MERGE JOIN CARTESIAN and BUFFER SORT. Things that keyed me into looking at this were the number of rows generated (over 2 million!), and the amount of time spent on each operation (compare to other operations).</p> http://stackoverflow.com/questions/148798/how-to-deploy-complex-sql-solutions-through-an-installer/149589#149589 0 Answer by Mike McAllister for How to deploy complex SQL solutions through an installer? Mike McAllister 2008-09-29T16:50:33Z 2008-09-29T16:50:33Z <p>You never throw a users data out. One possible option is to try and create the unique index. If the index creation fails, let them know it failed, tell them what they need to research, and provide them a script they can run if they find they have a data error that they choose to fix up.</p> http://stackoverflow.com/questions/140178/getting-the-boss-to-pay-for-training/142194#142194 0 Answer by Mike McAllister for Getting the Boss to pay for training? Mike McAllister 2008-09-26T21:50:02Z 2008-09-26T21:50:02Z <p>One strategy is to negotiate a training budget as part of your salary. You'll still have to justify the training when you request it, but you'll know in advance how much money you have to play with.</p> http://stackoverflow.com/questions/141232/how-many-database-indexes-is-too-many/142156#142156 4 Answer by Mike McAllister for How many database indexes is too many? Mike McAllister 2008-09-26T21:41:10Z 2008-09-26T21:41:10Z <p>Everyone else has been giving you great advice. I have an added suggestion for you as you move forward. At some point you have to make a decision as to your best indexing strategy. In the end though, the best PLANNED indexing strategy can still end up creating indexes that don't end up getting used. One strategy that lets you find indexes that aren't used is to monitor index usage. You do this as follows:-</p> <pre><code>alter index my_index_name monitoring usage; </code></pre> <p>You can then monitor whether the index is used or not from that point forward by querying v$object_usage. Information on this can be found in the <a href="http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/indexes.htm#sthref2563" rel="nofollow">Oracle® Database Administrator's Guide</a>.</p> <p>Just remember that if you have a warehousing strategy of dropping indexes before updating a table, then recreating them, you will have to set the index up for monitoring again, and you'll lose any monitoring history for that index.</p> http://stackoverflow.com/questions/128623/disable-all-table-constraints-in-oracle/128786#128786 3 Answer by Mike McAllister for Disable all table constraints in Oracle Mike McAllister 2008-09-24T18:03:59Z 2008-09-24T18:03:59Z <p>It's not a single command, but here's how I do it. The following script has been designed to run in SQL*Plus. Note, I've purposely written this to only work within the current schema.</p> <pre><code>set heading off spool drop_constraints.out select 'alter table ' || owner || '.' || table_name || ' drop constraint ' || constraint_name || ';' from user_constraints; spool off set heading on @drop_constraints.out </code></pre> <p>To restrict what you drop, filter add a where clause to the select statement:-</p> <ul> <li>filter on constraint_type to drop only particular types of constraints</li> <li>filter on table_name to do it only for one or a few tables.</li> </ul> <p>To run on more than the current schema, modify the select statement to select from all_constraints rather than user_constraints.</p> <p><strong>Note</strong> - for some reason I can't get the underscore to NOT act like an italicization in the previous paragraph. If someone knows how to fix it, please feel free to edit this answer.</p> http://stackoverflow.com/questions/128412/sql-query-question-select-from-view-or-select-col1-col2-from-view/128429#128429 0 Answer by Mike McAllister for SQL Query Question - Select * from view or Select col1,col2.....from view Mike McAllister 2008-09-24T17:12:05Z 2008-09-24T17:12:05Z <p>Always do select col1, col2 etc from view. There's no efficieny difference between the two methods that I know of, but using "select *" can be dangerous. If you modify your view definition adding new columns, you can break a program using "select *", whereas selecting a predefined set of columns (even all of them, named), will still work.</p> http://stackoverflow.com/questions/126720/how-to-avoid-storing-credentials-to-connect-to-oracle-with-jdbc/126982#126982 2 Answer by Mike McAllister for How to avoid storing credentials to connect to Oracle with JDBC? Mike McAllister 2008-09-24T13:02:14Z 2008-09-24T13:02:14Z <p>I'd suggest you look into proxy authentication. This is documented in the <a href="http://download.oracle.com/docs/cd/B19306_01/network.102/b14266/apdvprxy.htm#i1010326" rel="nofollow">Oracle® Database Security Guide</a>, as well as the <a href="http://download.oracle.com/docs/cd/B19306_01/java.102/b14355/proxya.htm#CHDHHAAD" rel="nofollow">Oracle® Database JDBC Developer's Guide and Reference</a>. Essentially what this allows you to do is have a user in the database that ONLY has connect privileges. The users real database accounts are configured to be able connect as the proxy user. Your application connecting through JDBC then stores the proxy username and password, and when connecting provides these credentials, PLUS the username of the real database user in the connect string. Oracle connects as the proxy user, and then mimics the real database user, inheriting the database privileges of the real user.</p> http://stackoverflow.com/questions/123489/weird-output-on-sql-replace/123498#123498 0 Answer by Mike McAllister for Weird Output on SQL REPLACE Mike McAllister 2008-09-23T20:04:44Z 2008-09-23T20:04:44Z <p>Try using NULL rather than an empty string. i.e. REPLACE(RCAPIN, ' ', NULL)</p> http://stackoverflow.com/questions/122736/explain-plan-for-query-in-a-stored-procedure/122817#122817 3 Answer by Mike McAllister for Explain Plan for Query in a Stored Procedure Mike McAllister 2008-09-23T18:26:21Z 2008-09-23T19:11:38Z <p>Use <a href="http://68.142.116.68/docs/cd/B19306_01/server.102/b14211/sqltrace.htm#i4640" rel="nofollow">SQL Trace and TKPROF</a>. For example, open SQL*Plus, and then issue the following code:-</p> <pre><code>alter session set tracefile_identifier = 'something-unique' alter session set sql_trace = true; alter session set events '10046 trace name context forever, level 8'; select 'right-before-my-sp' from dual; exec your_stored_procedure alter session set sql_trace = false; </code></pre> <p>Once this has been done, go look in your database's UDUMP directory for a TRC file with "something-unique" in the filename. Format this TRC file with TKPROF, and then open the formatted file and search for the string "right-before-my-sp". The SQL command issued by your stored procedure should be shortly after this section, and immediately under that SQL statement will be the plan for the SQL statement.</p> <p><strong>Edit:</strong> For the purposes of full disclosure, I should thank all those who gave me answers on <a href="http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement">this thread</a> last week that helped me learn how to do this.</p> http://stackoverflow.com/questions/122990/how-to-determine-if-a-record-in-every-source-represents-the-same-person/123050#123050 3 Answer by Mike McAllister for how to determine if a record in every source, represents the same person Mike McAllister 2008-09-23T19:00:10Z 2008-09-23T19:00:10Z <p>This sounds like a <a href="http://en.wikipedia.org/wiki/Customer_Data_Integration" rel="nofollow">Customer Data Integration</a> problem. Search on that term and you might find some more information. Also, have a poke around inside <a href="http://www.tdwi.org/" rel="nofollow">The Data Warehousing Institude</a>, and you might find some answers there as well.</p> <p><strong>Edit:</strong> In addition, <a href="http://www.javalobby.org/java/forums/t16936.html" rel="nofollow">here's</a> an article that might interest you on spanish phonetic matching.</p> http://stackoverflow.com/questions/122942/how-to-return-multiple-values-in-one-column-t-sql/122996#122996 1 Answer by Mike McAllister for How to return multiple values in one column (T-SQL)? Mike McAllister 2008-09-23T18:52:27Z 2008-09-23T18:52:27Z <p>Have a look at <a href="http://stackoverflow.com/questions/102317/how-to-get-multiple-records-against-one-record-based-on-relation">this thread already on StackOverflow</a>, it conveniently gives you a T-SQL example.</p> http://stackoverflow.com/questions/121105/multi-select-in-the-prompt-is-not-working-properly-in-cognos-8-1/121129#121129 4 Answer by Mike McAllister for Multi-select in the prompt is not working properly in Cognos 8.1 Mike McAllister 2008-09-23T13:53:09Z 2008-09-23T15:08:46Z <p>Look at the parameter associated with the prompt. Now go look and see how you use that parameter to filter the queries in your report. If you have the filter set as:-</p> <p>[namespace].[table].[column] = ?MyParameter?</p> <p>... then it doesn't matter that your prompt is a multi-select prompt, it will still run as a single selection prompt. Modify your filters so they are of the form:-</p> <p>[namespace].[table].[column] in ?MyParameter?</p> <p>This tells Cognos that your parameter can contain multiple values, and it will display the prompt accordingly.</p> http://stackoverflow.com/questions/120900/how-to-check-if-a-trigger-is-invalid/120942#120942 0 Answer by Mike McAllister for How to check if a trigger is invalid? Mike McAllister 2008-09-23T13:22:36Z 2008-09-23T13:22:36Z <p>Have a look at SYS.OBJ$, specifically the STATUS column. </p> http://stackoverflow.com/questions/117512/joining-other-tables-in-oracle-tree-queries/117578#117578 1 Answer by Mike McAllister for Joining other tables in oracle tree queries Mike McAllister 2008-09-22T20:53:44Z 2008-09-22T20:53:44Z <p>In your query, replace T2 with a subquery that joins T1 and T2, and returns parent, child and child description. Then in the sys_connect_by_path function, reference the child description from your subquery.</p> http://stackoverflow.com/questions/117301/how-does-including-a-sql-index-hint-affect-query-performance/117402#117402 2 Answer by Mike McAllister for How does including a SQL index hint affect query performance? Mike McAllister 2008-09-22T20:27:24Z 2008-09-22T20:27:24Z <p>The index hint will only come into play where your query involves joining tables, and where the columns being used to join to the other table matches more than one index. In that case the database engine may choose to use one index to make the join, and from investigation you may know that if it uses another index the query will perform better. In that case you provide the index hint telling the database engine which index to use.</p> http://stackoverflow.com/questions/57152/whats-the-best-way-to-handle-one-to-one-relationships-in-sql/86025#86025 0 Answer by Mike McAllister for What's the best way to handle one-to-one relationships in SQL? Mike McAllister 2008-09-17T18:13:16Z 2008-09-22T20:20:29Z <p>I would create a supertype / subtype relationship.</p> <pre><code> THINGS ------ PK ThingId ALPHAS ------ FK ThingId (not null, identifying, exported from THINGS) AlphaCol1 AlphaCol2 AlphaCol3 BRAVOS ------ FK ThingId (not null, identifying, exported from THINGS) BravoCol1 BravoCol2 BravoCol3 CHARLIES -------- FK ThingId (not null, identifying, exported from THINGS) CharlieCol1 CharlieCol2 CharlieCol3 </code></pre> <p>So, for example, an alpha that has a charlie but not a bravo:-</p> <pre><code>insert into things values (1); insert into alphas values (1,'alpha col 1',5,'blue'); insert into charlies values (1,'charlie col 1',17,'Y'); </code></pre> <p>Note, you can't create more than one charlie for the alpha, as if you tried to create a two charlies with a ThingId of 1 the second insert would get a unique index/constraint violation.</p> http://stackoverflow.com/questions/116888/like-in-case-statement-not-evaluating-as-expected/117265#117265 0 Answer by Mike McAllister for Like in CASE statement not evaluating as expected Mike McAllister 2008-09-22T20:08:23Z 2008-09-22T20:08:23Z <p>I am an Oracle person, not a SQL*Server person, but it seems to me you should be either:-</p> <pre><code>SELECT CASE WHEN fldField like '%YYY%' THEN 'OTH' ELSE 'XXX' END AS newField FROM tmpTable </code></pre> <p>or ...</p> <pre><code>SELECT CASE WHEN fldField = 'YYY' THEN 'OTH' ELSE 'XXX' END AS newField FROM tmpTable </code></pre> <p>The second is the direction I'd go in, as at least in Oracle equality resolves quicker than like.</p> http://stackoverflow.com/questions/110032/star-schema-design/110091#110091 4 Answer by Mike McAllister for Star-Schema Design Mike McAllister 2008-09-21T02:48:07Z 2008-09-21T02:48:07Z <p>Star schemas are used to enable high speed access to large volumes of data. The high performance is enabled by reducing the amount of joins needed to satsify any query that may be made against the subject area. This is done by allowing data redundancy in dimension tables.</p> <p>You have to remember that the star schema is a pattern for the top layer for the warehouse. All models also involve staging schemas at the bottom of the warehouse stack, and some also include a persistant transformed merged staging area where all source systems are merged into a 3NF modelled schema. The various subject areas sit above this.</p> <p>Alternatives to star schemas at the top level include a variation, which is a snowflake schema. A new method that may bear out some investigation as well is <a href="http://www.danlinstedt.com/" rel="nofollow">Data Vault Modelling</a> proposed by Dan Linstedt.</p> http://stackoverflow.com/questions/105836/perl-join-like-behavior-in-oracle/109988#109988 0 Answer by Mike McAllister for perl JOIN-like behavior in Oracle? Mike McAllister 2008-09-21T01:53:33Z 2008-09-21T01:53:33Z <p>The short answer is to use a PL/SQL function. For more details, have a look in <a href="http://stackoverflow.com/questions/102317/how-to-get-multiple-records-against-one-record-based-on-relation">this</a> post.</p> http://stackoverflow.com/questions/104971/sql-query-help-selecting-rows-that-appear-a-certain-number-of-times/104997#104997 1 Answer by Mike McAllister for SQL Query Help: Selecting Rows That Appear A Certain Number Of Times Mike McAllister 2008-09-19T19:55:10Z 2008-09-19T19:55:10Z <p>Assuming you are using Oracle, and k = 5:-</p> <pre><code>select date_col,count(*) from your_table group by date_col having count(*) &lt; 5; </code></pre> <p>If your date column has time filled out as well, and you want to ignore it, modify the query so it looks as follows:-</p> <pre><code>select trunc(date_col) as date_col,count(*) from your_table group by trunc(date_col) having count(*) &lt; 5; </code></pre> http://stackoverflow.com/questions/104330/sql-query-help-transforming-dates-in-a-non-trivial-way/104369#104369 0 Answer by Mike McAllister for SQL Query Help: Transforming Dates In A Non-Trivial Way Mike McAllister 2008-09-19T18:35:00Z 2008-09-19T18:35:00Z <p>Can you use a case statement?</p> http://stackoverflow.com/questions/102278/active-flag-or-not/102333#102333 6 Answer by Mike McAllister for `active' flag or not? Mike McAllister 2008-09-19T14:36:08Z 2008-09-19T17:14:39Z <p>You partition the table on the active flag, so that active records are in one partition, and inactive records are in the other partition. Then you create an active view for each table which automatically has the active filter on it. The database query engine automatically restricts the query to the partition that has the active records in it, which is much faster than even using an index on that flag.</p> <p>Here is an example of how to create a partitioned table in Oracle. Oracle doesn't have boolean column types, so I've modified your table structure for Oracle purposes.</p> <pre><code>CREATE TABLE people ( id NUMBER(10), name VARCHAR2(100), active NUMBER(1) ) PARTITION BY LIST(active) ( PARTITION active_records VALUES (0) PARTITION inactive_records VALUES (1) ); </code></pre> <p>If you wanted to you could put each partition in different tablespaces. You can also partition your indexes as well.</p> <p>Incidentally, this seems a repeat of <a href="http://stackoverflow.com/questions/68323/what-is-the-best-way-to-implement-soft-deletion">this</a> question, as a newbie I need to ask, what's the procedure on dealing with unintended duplicates?</p> <p><strong>Edit:</strong> As requested in comments, provided an example for creating a partitioned table in Oracle</p> http://stackoverflow.com/questions/102759/database-safety-intermediary-tobedeleted-column-table/102938#102938 2 Answer by Mike McAllister for Database safety: Intermediary "to_be_deleted" column/table? Mike McAllister 2008-09-19T15:33:29Z 2008-09-19T15:33:29Z <p>It looks like you're describing three cases here.</p> <ol> <li><p>Case 1 - maintenance scripts. Risk can be minimized by developing them and testing them in an environment other than your production box. For quick maintenance, do the maintenance in a single transaction, and check everything before committing. If you made a mistake, issue the rollback command. For more serious maintenance that you can't necessarily wait around for, or do in a single transaction, consider taking a backup directly before running the maintenance job, so that you can always restore back to the point before you ran your script if you encounter serious problems.</p></li> <li><p>Case 2 - SQL Injection. This is an architecture issue. Your application shouldn't pass SQL into the database, access should be controlled through packages / stored procedures / functions, and values that are going to come from the UI and be used in a DDL statement should be applied using bind variables, rather than by creating dynamic SQL by appending strings together.</p></li> <li><p>Case 3 - Regular batch jobs. These should have been tested before being deployed to production. If you delete too much, you have a bug, and are going to have to rely on your backup strategy.</p></li> </ol> http://stackoverflow.com/questions/102523/where-can-i-get-toad-syntax-coloring-schemes/102650#102650 1 Answer by Mike McAllister for Where can I get Toad syntax coloring schemes? Mike McAllister 2008-09-19T15:11:34Z 2008-09-19T15:11:34Z <p>You might want to poke around in <a href="http://www.toadworld.com/" rel="nofollow">TOADWorld</a>, and also the <a href="http://asktoad.com/DWiki/doku.php?id=faq:questions" rel="nofollow">TOAD Wiki</a>. Another place where you can specifically ask questions is the Yahoo Users Group for TOAD - send an email to toad-subscribe@yahoogroups.com</p> <p>Hope this helps!</p> <p>Mike</p> http://stackoverflow.com/questions/102317/how-to-get-multiple-records-against-one-record-based-on-relation/102361#102361 0 Answer by Mike McAllister for How to get multiple records against one record based on relation? Mike McAllister 2008-09-19T14:39:38Z 2008-09-19T14:39:38Z <p>If you use Oracle you can create a PL/SQL function you can use in your query that accepts an organization_id as input, and returns the first name of all employees belonging to that org as a string. For example:-</p> <pre><code>select o.org_id, o.org_address, o.org_otherdetails, org_employees( o.org_id ) as org_employees from organization o </code></pre> http://stackoverflow.com/questions/69923/stored-procedures-reverse-engineering/86288#86288 1 Answer by Mike McAllister for Stored procedures reverse engineering Mike McAllister 2008-09-17T18:46:07Z 2008-09-19T13:02:18Z <p>What database are the stored procedures in? Oracle, SQL Server, something else?</p> <p><strong>Edit based on comment:</strong> Given you're using Oracle then, have a look at <a href="http://www.quest.com/toad-for-oracle/" rel="nofollow">TOAD</a>. I use a feature in it called the Code Roadmap, which allows you to graphically display PL/SQL interdependancies within the database. It can run in Code Only mode, showing runtime call stack dependancies, or Code Plus Data mode, where it also shows you database objects (tables, views, triggers) that are touched by your code.</p> <p><em>(Note - I am a TOAD user, and gain no benefit from referring it)</em></p> http://stackoverflow.com/questions/93539/what-is-the-difference-between-views-and-materialized-views-in-oracle/94124#94124 9 Answer by Mike McAllister for What is the difference between Views and Materialized Views in Oracle? Mike McAllister 2008-09-18T16:23:58Z 2008-09-19T12:21:16Z <p>Views evaluate the data in the tables underlying the view definition at the time the view is queried. It is a logical view of your tables, with no data stored anywhere else. The upside of a view is that it will always return the latest data to you. The downside of a view is that its performance depends on how good a select statement the view is based on. If the select statement used by the view joins many tables, or uses joins based on non-indexed columns, the view could perform poorly.</p> <p>Materialized views are similar to regular views, in that they are a logical view of your data (based on a select statement), however, the underlying query resultset has been saved to a table. The upside of this is that when you query a materialized view, you are querying a table, which may also be indexed. In addition, because all the joins have been resolved at materialized view refresh time, you pay the price of the join once (or as often as you refresh your materialized view), rather than each time you select from the materialized view. In addition, with query rewrite enabled, Oracle can optimize a query that selects from the source of your materialized view in such a way that it instead reads from your materialized view. In situations where you create materialized views as forms of aggregate tables, or as copies of frequently executed queries, this can greatly speed up the response time of your end user application. The downside though is that the data you get back from the materialized view is only as up to date as the last time the materialized view has been refreshed.</p> <p>Materialized views can be set to refresh manually, on a set schedule, or based on the database detecting a change in data from one of the underlying tables. Materialized views can be incrementally updated by combining them with materialized view logs, which act as change data capture sources on the underlying tables.</p> <p>Materialized views are most often used in data warehousing / business intelligence applications where querying large fact tables with thousands of millions of rows would result in query response times that resulted in an unusable application.</p> http://stackoverflow.com/questions/91784/how-can-i-delete-duplicate-rows-in-a-table/93493#93493 0 Answer by Mike McAllister for How can I delete duplicate rows in a table Mike McAllister 2008-09-18T15:17:17Z 2008-09-18T15:17:17Z <p>Manrico Corazzi - I specialize in Oracle, not MS SQL, so you'll have to tell me if this is possible as a performance boost:-</p> <ol> <li>Leave the same as your first step - insert distinct values into TABLE2 from TABLE1.</li> <li>Drop TABLE1. (Drop should be faster than delete I assume, much as truncate is faster than delete).</li> <li>Rename TABLE2 as TABLE1 (saves you time, as you're renaming an object rather than copying data from one table to another).</li> </ol> http://stackoverflow.com/questions/87679/advice-on-handling-large-data-volumes/92791#92791 0 Answer by Mike McAllister for Advice on handling large data volumes. Mike McAllister 2008-09-18T14:00:46Z 2008-09-18T14:00:46Z <p>If at all possible, get the data into a database. Then you can leverage all the indexing, caching, memory pinning, and other functionality available to you there.</p> http://stackoverflow.com/questions/5802/inheritance-in-database/86661#86661 0 Answer by Mike McAllister for Inheritance in database? Mike McAllister 2008-09-17T19:25:58Z 2008-09-17T19:25:58Z <p>Ramesh - I would implement this using supertype and subtype relationships in my E-R model. There are a few different physical options you have of implementing the relationships as well.</p> http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement Comment by Mike McAllister on How do I troubleshoot performance problems with an Oracle SQL statement Mike McAllister 2009-02-13T14:57:14Z 2009-02-13T14:57:14Z Mark - the insert statements were on two different schemas with exactly the same tables, with a few columns named differently. Data types were the same. The insert statement used the same tables, the same join strategy, etc. http://stackoverflow.com/questions/128623/disable-all-table-constraints-in-oracle/128786#128786 Comment by Mike McAllister on Disable all table constraints in Oracle Mike McAllister 2008-09-25T12:41:44Z 2008-09-25T12:41:44Z Yes, that's a good suggestion - in the future, feel free to edit the post to add this information. That's why I have my posts as community wiki editable. http://stackoverflow.com/questions/128099/what-is-the-longest-human-name-you-can-expect/128131#128131 Comment by Mike McAllister on What is the longest human name you can expect? Mike McAllister 2008-09-24T16:24:10Z 2008-09-24T16:24:10Z Unless you have the case of one-upmanship. Someone may name their child purposely to have a name longer than 802 characters to get into the Guinness Book of World Records. And then someone may want to one-up that. And so on. http://stackoverflow.com/questions/126720/how-to-avoid-storing-credentials-to-connect-to-oracle-with-jdbc/126982#126982 Comment by Mike McAllister on How to avoid storing credentials to connect to Oracle with JDBC? Mike McAllister 2008-09-24T14:18:39Z 2008-09-24T14:18:39Z I'm not 100% sure, but this section of the documentation is your best bet at checking that out -&gt; <a href="http://download.oracle.com/docs/cd/B19306_01/java.102/b14355/sslthin.htm#BABHAFCF" rel="nofollow">download.oracle.com/docs/cd/&hellip;</a> http://stackoverflow.com/questions/126720/how-to-avoid-storing-credentials-to-connect-to-oracle-with-jdbc/126982#126982 Comment by Mike McAllister on How to avoid storing credentials to connect to Oracle with JDBC? Mike McAllister 2008-09-24T13:42:19Z 2008-09-24T13:42:19Z You still need to secure the proxy username and password. But what it lets you do is control which users the middle tiers can connect as, and also the roles the middle tiers can assume for the user. http://stackoverflow.com/questions/126188/sql-server-and-oracle-which-one-is-better-in-terms-of-scalability/126267#126267 Comment by Mike McAllister on SQL Server and Oracle, which one is better in terms of scalability? Mike McAllister 2008-09-24T13:09:33Z 2008-09-24T13:09:33Z Very good summary! http://stackoverflow.com/questions/123489/weird-output-on-sql-replace/123498#123498 Comment by Mike McAllister on Weird Output on SQL REPLACE Mike McAllister 2008-09-23T20:14:43Z 2008-09-23T20:14:43Z What DB are you using? http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement/123031#123031 Comment by Mike McAllister on How do I troubleshoot performance problems with an Oracle SQL statement Mike McAllister 2008-09-23T19:16:50Z 2008-09-23T19:16:50Z Fair enough, although wouldn't that be a situation where you could work with a DBA to get this done for you? FWIW, I made sure all tables/indexes in the schema had statistics and all columns had histograms. I'd also read the explain plan, and couldn't narrow things down. http://stackoverflow.com/questions/122736/explain-plan-for-query-in-a-stored-procedure/122817#122817 Comment by Mike McAllister on Explain Plan for Query in a Stored Procedure Mike McAllister 2008-09-23T18:55:07Z 2008-09-23T18:55:07Z I gotta pass it on to others on the group here, they got me started on SQL Trace and TKPROF just last week. http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121435#121435 Comment by Mike McAllister on SQL - fetch the row which has the Max value for a column Mike McAllister 2008-09-23T15:14:09Z 2008-09-23T15:14:09Z What about using analytical sql extensions for Oracle? http://stackoverflow.com/questions/117512/joining-other-tables-in-oracle-tree-queries/119726#119726 Comment by Mike McAllister on Joining other tables in oracle tree queries Mike McAllister 2008-09-23T12:39:00Z 2008-09-23T12:39:00Z Great stuff, thanks for putting your solution up here. I wish more people would do that, it helps the next person who comes to StackOverflow looking for this answer. http://stackoverflow.com/questions/120504/optimising-a-select-query-that-runs-slow-on-oracle-which-runs-quickly-on-sql-serv/120558#120558 Comment by Mike McAllister on Optimising a SELECT query that runs slow on Oracle which runs quickly on SQL Server Mike McAllister 2008-09-23T12:30:25Z 2008-09-23T12:30:25Z Yes, be careful, the minus statement uses alot of memory http://stackoverflow.com/questions/57152/whats-the-best-way-to-handle-one-to-one-relationships-in-sql/86025#86025 Comment by Mike McAllister on What's the best way to handle one-to-one relationships in SQL? Mike McAllister 2008-09-22T20:22:18Z 2008-09-22T20:22:18Z @olavk - I've provided an answer showing why I don't think you can have an alpha with multiple bravos. Yes, you can have a bravo without an alpha, the original spec said &quot;I've got Alpha things that may OR MAY NOT BE related to Bravo or Charlie things&quot;. http://stackoverflow.com/questions/57152/whats-the-best-way-to-handle-one-to-one-relationships-in-sql/86025#86025 Comment by Mike McAllister on What's the best way to handle one-to-one relationships in SQL? Mike McAllister 2008-09-22T20:13:59Z 2008-09-22T20:13:59Z I should have been clearer, the FK keys in ALPHAS, BRAVOS and CHARLIES are identifying relationships, with a not null. Not sure how you think an Alpha could have three bravos, etc. http://stackoverflow.com/questions/110088/is-there-set-division-in-sql Comment by Mike McAllister on Is there set division in SQL? Mike McAllister 2008-09-21T03:01:39Z 2008-09-21T03:01:39Z Also, are you talking about ANSI SQL, or a particular vendor's implementation of SQL?