User spencer7593 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:21:11Z http://stackoverflow.com/feeds/user/107744 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/988230/oracle-syntax-for-creating-database-link-owned-by-another-user/988646#988646 5 Answer by spencer7593 for Oracle Syntax for Creating Database Link Owned by Another User spencer7593 2009-06-12T19:38:19Z 2009-10-20T04:43:08Z <p>Sathya is correct, the syntax does not allow you to create a database link in another schema. Let's assume that you do have privilege to create a procedure in another schema, there is a workaround:</p> <pre> create procedure anotheruser."tmp_doit_200906121431" is begin execute immediate ' create database link remote_db_link connect to remote_user identified by remote_password using ''remote_db'' '; end; / begin anotheruser."tmp_doit_200906121431"; end; / drop procedure anotheruser."tmp_doit_200906121431" / </pre> <p>(This allows the "create database link" statement to be executed as the owner of the procedure.)</p> http://stackoverflow.com/questions/1244804/where-can-i-query-an-oracle-databases-case-sensitivity/1244909#1244909 0 Answer by spencer7593 for Where can I query an oracle databases' case-sensitivity? spencer7593 2009-08-07T14:08:30Z 2009-08-07T19:40:38Z <p>For Oracle 10gR2 (and later), the parameters are NLS_COMP and NLS_SORT.</p> <pre><code>select * from v$nls_parameters where parameter in ('NLS_COMP','NLS_SORT'); </code></pre> <p>(These parameters are set at the session level. The settings for a session are inherited from the database setting, unless overridden by setting an OS environment variable, or an ALTER SESSION statement.)</p> <p>If you want "case-insensitive" sorting and string matching, you can try these settings:</p> <pre><code>alter session set NLS_SORT=BINARY_CI; alter session set NLS_COMP=LINGUISTIC; </code></pre> <p>Those aren't the only settings for the parameters, of course. Oracle 10gR2 documentation:</p> <p><a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14225/ch5lingsort.htm#NLSPG005" rel="nofollow">10gR2 Linguistic Sorting and String Searching</a></p> http://stackoverflow.com/questions/1027775/is-one-of-my-db-fields-not-null/1034517#1034517 1 Answer by spencer7593 for Is one of my DB-fields NOT NULL? spencer7593 2009-06-23T19:05:55Z 2009-06-23T19:05:55Z <p>Here's a simple query:</p> <pre> SELECT TOP 1 1 as found FROM [dbo].[TEST_TABLE] t WHERE COALESCE(t.newFirstName,t.newLastName) IS NOT NULL AND t.refID = 1 </pre> <p>This query will return a single row if there are any proposed changes for a given <code>refID</code> (based on the example in your question.)</p> <p>For your actual table of course, you'd need to list each of the <code>'newValue'</code> columns as arguments in the COALESCE function. (In the coalesce list, I recommend explicitly casting any non-VARCHAR to VARCHAR, just to make it clear that every expression in the list is of the same data type. </p> <p>If you prefer to use a CASE expression rather than COALESCE:</p> <pre> SELECT TOP 1 1 as found FROM [dbo].[TEST_TABLE] t WHERE CASE WHEN t.newFirstName IS NOT NULL THEN 1 WHEN t.newLastName IS NOT NULL THEN 1 ELSE NULL END IS NOT NULL AND t.refID = 1 </pre> http://stackoverflow.com/questions/983296/oracle-lag-between-commit-and-select/983809#983809 0 Answer by spencer7593 for Oracle lag between commit and select spencer7593 2009-06-11T21:27:17Z 2009-06-11T22:03:38Z <p>This sounds like an issue with RAC, with connections to two different instances and the SCN is out of sync.</p> <p>As a workaround, consider not closing the database connection and getting a new one, but reuse the same connection.</p> <p>If that's not workable, then add a retry to the query that attempts to retrieve the inserted row. If the row is not returned, then sleep a bit, and retry the query again. Put that into a loop, after a specified number of retries, you can then fail.</p> <p>[ADDENDUM]</p> <p>In his answer, Steve Broberg (+1!) raises interesting ideas. I hadn't considered:</p> <ul> <li>the <code>COMMIT</code> might be anything other than <code>IMMEDIATE WAIT</code></li> <li>the transaction isolation level might be anything other than READ COMMITTED</li> </ul> <p>I did consider the possibility of flashback query, and dismissed that out of hand without mentioning it, as there's no apparent reason the OP would be using flashback query, and no evidence of such a thing in the code snippet.)</p> <p>[/ADDENDUM]</p> http://stackoverflow.com/questions/976669/how-to-check-if-a-date-is-in-a-given-range/976718#976718 7 Answer by spencer7593 for How to check if a date is in a given range? spencer7593 2009-06-10T16:25:33Z 2009-06-10T22:34:58Z <p>No, it's not necessary to convert to timestamp to do the comparison, given that the strings are validated as dates in 'YYYY-MM-DD' canonical format.</p> <p>This test will work:</p> <pre><code>( ( $date_from_user &gt;= $start_date ) &amp;&amp; ( $date_from_user &lt;= $end_date ) ) </code></pre> <p>given:</p> <pre><code>$start_date = '2009-06-17'; $end_date = '2009-09-05'; $date_from_user = '2009-08-28'; </code></pre> <p>NOTE: comparing strings allows for "non-valid" dates e.g. '2009-13-32' and for weirdly formatted strings '2009/3/3', such that the string comparison is not equivalent to a date or timestamp comparison.</p> <p>[ADDENDUM]</p> <p>If you do go for the php timestamp conversion, be aware of the limitations.</p> <p>On some platforms, php does not support timestamp values earlier than 1970-01-01 and/or later than 2038-01-19. (That's the nature of the unix timestamp 32-bit integer.) Later versions pf php (5.3?) are supposed to address that.</p> <p>The timezone can also be an issue, if you aren't careful to use the same timezone when converting from string to timestamp and from timestamp back to string.</p> <p>HTH</p> http://stackoverflow.com/questions/976449/sql-select-question/976518#976518 0 Answer by spencer7593 for SQL Select Question spencer7593 2009-06-10T15:56:46Z 2009-06-10T16:17:09Z <p><strong>answer not complete, working on it...</strong></p> <p>To restate the problem: the query is returning too many rows, you want ONLY six rows for each 'group' of distinct values for the <strike>seven</strike> first six columns listed in the ORDER BY clause.</p> <p>You've already got the date issue worked out. Contrary to popular opinion, it is NOT necessary to cast to a DATETIME to get this query to work. The problem is the same whether you're ordering on a DATETIME expression or VARCHAR expression. You just want the "lowest" n values for EACH GROUP.</p> <p>To get this result set in a single query, I think this is going to require a stopkey predicate with an inline view, does Access support common table expresssions?</p> <p>for example.</p> <pre><code>WITH cte AS ( SELECT ROW_NUMBER() OVER (PARTITION BY ... ORDER BY ...) AS ROWNUM , ... FROM COUPONS c ) SELECT ... FROM cte WHERE cte.ROWNUM &lt;= 6 </code></pre> <p>-or-</p> <pre><code>SELECT TOP 6 ... FROM ... GROUP BY ... </code></pre> <p><strong>answer not complete</strong></p> <p><hr /></p> <p>sample SQL statement from OP, reformatted to be "human readable": </p> <pre><code>SELECT c.DocType , c.PayTo , c.ContactName , c.ContactNumber , c.DocFooter , c.PQBName , c.LetterDate , c.RetireeFirstName , c.RetireeLastName , c.Address1 , c.Address2 , c.City , c.State , c.ZIP , c.PQBSSN , c.EmployerCode , c.AmountDue , c.DateDue , Right(c.[DateDue],4)+Left(c.[DateDue],2)+Mid(c.[DateDue],4,2) AS SORTDATE FROM COUPONS c ORDER BY c.DocType , c.PayTo , c.ContactName , c.ContactNumber , c.DocFooter , c.PQBName , c.LetterDate , Right(c.[DateDue],4)+Left(c.[DateDue],2)+Mid(c.[DateDue],4,2) </code></pre> http://stackoverflow.com/questions/970875/oracle-identifier-myschema-mytable-must-be-declared/971300#971300 1 Answer by spencer7593 for Oracle 'identifier myschema.mytable must be declared' spencer7593 2009-06-09T17:00:11Z 2009-06-09T17:00:11Z <p>The PLS-00201 exception seems a bit unusual to me, for the "privileges granted through a role not available in a stored procedure" problem. As Steve Broberg and Khb have already pointed out, granting privileges directly to a user will resolve exception</p> <pre><code>ORA-00942: table or view does not exist. </code></pre> <p>(That's the exception I normally see when compiling a stored procedure, when the statement works outside the stored procedure, and i find that privileges are granted through roles.)</p> <p>What's kind of peculiar is that the exception you are seeing is a <strong>PLS-00201</strong> (That has me puzzled.)</p> <p><hr /></p> <p>Another workaround to the ORA-942 "no privileges through roles" issue is to define the procedure with invoker rights and use dynamic SQL:</p> <pre><code>create procedure foo authid current_user is ln_cnt number; begin execute immediate 'select cnt(1) from schema.view' into ln_cnt; end; / </code></pre> <p>I don't think this is the best approach (it has its own issues) but it is a workaround.</p> <p><a href="http://download.oracle.com/docs/cd/B28359%5F01/appdev.111/b28370/dynamic.htm" rel="nofollow">http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28370/dynamic.htm</a></p> http://stackoverflow.com/questions/829805/how-accurate-is-oracles-explain-plan/870947#870947 2 Answer by spencer7593 for How accurate is Oracle's EXPLAIN PLAN? spencer7593 2009-05-15T21:29:00Z 2009-06-09T15:23:42Z <p><strong>Q:</strong> Are there any good ways to objectively measure a query's performance in Oracle 10g?</p> <ul> <li><p>Oracle tracing is the best way to measure performance. Execute the query and let Oracle instrument the execution. In the SQLPlus environment, it's very easy to use AUTOTRACE.</p> <p><a href="http://asktom.oracle.com/tkyte/article1/autotrace.html" rel="nofollow">http://asktom.oracle.com/tkyte/article1/autotrace.html</a></p></li> </ul> <p>And enabling Oracle trace in other environments isn't that difficult.</p> <p><strong>Q:</strong> There's one particular query that I've been tuning for a few days. I've gotten a version that seems to be running faster (at least based on my initial tests), but the EXPLAIN cost is roughly the same.</p> <ul> <li>The actual execution of the statement is what needs to be measured. EXPLAIN PLAN does a decent job of predicting the optimizer plan, but it doesn't actually <em>measure</em> the performance.</li> </ul> <p><strong>Q:</strong>> 1 . How likely is it that the EXPLAIN cost is missing something?</p> <ul> <li>Not very likely, but I have seen cases where EXPLAIN PLAN comes up with a different plan than the optimizer. </li> </ul> <p><strong>Q:</strong>> 2 . Are there any particular situations where the EXPLAIN cost is disproportionately different from the query's actual performance?</p> <ul> <li>The short answer is that I've not observed any. But then again, there's not really a direct correlation between the EXPLAIN PLAN cost and the actual observed performance. It's possible for EXPLAIN PLAN to give a really high number for cost, but to have the actual query run in less than a second. EXPLAIN PLAN does not measure the actual performance of the query, for that you need Oracle trace.</li> </ul> <p><strong>Q:</strong>> 3 . I used the first_rows hint on this query. Does this have an impact?</p> <ul> <li>Any hint (like <code>/*+ FIRST_ROWS */</code>) may influence which plan is selected by the optimizer.</li> </ul> <p><hr /></p> <p>The "cost" returned by the EXPLAIN PLAN is relative. It's an indication of performance, but not an accurate gauge of it. You can't translate a cost number into a number of disk operations or a number of CPU seconds or number of wait events.</p> <p>Normally, we find that a statement with an EXPLAIN PLAN cost shown as 1 is going to run "very quickly", and a statement with an EXPLAIN PLAN cost on the order of five or six digits is going to take more time to run. But not always.</p> <p>What the optimizer is doing is comparing a lot of possible execution plans (full table scan, using an index, nested loop join, etc.) The optimizer is assigning a number to each plan, then selecting the plan with the lowest number.</p> <p>I have seen cases where the optimizer plan shown by EXPLAIN PLAN does <em>NOT</em> match the actual plan used when the statement is executed. I saw that a decade ago with Oracle8, particularly when the statement involved bind variables, rather than literals.</p> <p>To get an actual cost for statement execution, turn on tracing for your statement. The easiest way to do this is with SQLPlus AUTOTRACE.</p> <pre><code>[http://asktom.oracle.com/tkyte/article1/autotrace.html][2] </code></pre> <p>Outside the SQLPlus environment, you can turn on Oracle tracing: </p> <pre> alter session set timed_statistics = true; alter session set tracefile_identifier = here_is_my_session; alter session set events '10046 trace name context forever, level 12' --alter session set events '10053 trace name context forever, level 1' select /*-- your_statement_here --*/ ... alter session set events '10046 trace name context off' --alter session set events '10053 trace name context off' </pre> <p>This puts a trace file into the user_dump_dest directory on the server. The tracefile produced will have the statement plan AND all of the wait events. (The assigned tracefile identifier is included in the filename, and makes it easier to find your file in the udump directory)</p> <pre> select value from v$parameter where name like 'user_dump_dest' </pre> <p>If you don't have access to the tracefile, you're going to need to get help from the dba to get you access. (The dba can create a simple shell script that developers can run against a .trc file to run tkprof, and change the permissions on the trace file and on the tkprof output. You can also use the newer trcanlzr. There are Oracle metalink notes on both.</p> http://stackoverflow.com/questions/951836/simplifying-aliasing-t-sql-case-statements-any-improvement-possible/951855#951855 9 Answer by spencer7593 for Simplifying (aliasing) T-SQL CASE statements. Any improvement possible? spencer7593 2009-06-04T17:06:00Z 2009-06-09T14:39:08Z <p><strong>Q:</strong> how to get an alias to use in the GROUP BY clause</p> <p>One approach is to use an inline view. [EDIT] The answer from Remus Rusanu (+1!) gives an example of a Common Table Expression to accomplish the same thing. [/EDIT]</p> <p>The inline view gets you a simple "alias" for the complex expression which you can then reference in a GROUP BY clause in an outer query:</p> <pre><code>select count(d.callid) , d.duration from (select callid , case when callDuration &gt;= 600 then 12 when callDuration &gt;= 540 then 11 when callDuration &gt;= 480 then 10 when callDuration &gt;= 420 then 9 when callDuration &gt;= 360 then 8 when callDuration &gt;= 300 then 7 when callDuration &gt;= 240 then 6 when callDuration &gt;= 180 then 5 when callDuration &gt;= 120 then 4 when callDuration &gt;= 60 then 3 when callDuration &gt;= 30 then 2 when callDuration &gt; 0 then 1 --else null end as duration from callmetatbl where programid = 1001 and callDuration &gt; 0 ) d group by d.duration </code></pre> <p>Let's unpack that.</p> <ul> <li>the inner (indented) query is called and <em>inline view</em> (we given it an alias <code>d</code>)</li> <li>in the outer query, we can reference the alias <code>duration</code> from <code>d</code></li> </ul> <p>That should be sufficient to answer your question. If you're looking for an equivalent replacement expression, the one from <strong>tekBlues</strong> (<strong>+1 !</strong>) is the right answer (it works on the boundary and for non-integers.)</p> <p>With the replacement expression from tekBlues (+1!): </p> <pre><code>select count(d.callid) , d.duration from (select callid , case when callduration &gt;=30 and callduration&lt;600 then floor(callduration/60)+2 when callduration&gt;0 and callduration&lt; 30 then 1 when callduration&gt;=600 then 12 end as duration from callmetatbl where programid = 1001 and callDuration &gt; 0 ) d group by d.duration </code></pre> <p>(This should be sufficient to answer your question.)</p> <p><hr /></p> <p>[UPDATE:] sample <strong>user defined function</strong> (a replacement for inline CASE expression)</p> <pre><code>CREATE FUNCTION [dev].[udf_duration](@cd FLOAT) RETURNS SMALLINT AS BEGIN DECLARE @bucket SMALLINT SET @bucket = CASE WHEN @cd &gt;= 600 THEN 12 WHEN @cd &gt;= 540 THEN 11 WHEN @cd &gt;= 480 THEN 10 WHEN @cd &gt;= 420 THEN 9 WHEN @cd &gt;= 360 THEN 8 WHEN @cd &gt;= 300 THEN 7 WHEN @cd &gt;= 240 THEN 6 WHEN @cd &gt;= 180 THEN 5 WHEN @cd &gt;= 120 THEN 4 WHEN @cd &gt;= 60 THEN 3 WHEN @cd &gt;= 30 THEN 2 WHEN @cd &gt; 0 THEN 1 --ELSE NULL END RETURN @bucket END select count(callid) , [dev].[udf_duration](callDuration) from callmetatbl where programid = 1001 and callDuration &gt; 0 group by [dev].[udf_duration](callDuration) </code></pre> <p><strong>NOTES:</strong> be aware that the user defined function will add overhead, and (of course) add a dependency on another database object.</p> <p>This example function is equivalent to the original expression. The OP CASE expression doesn't have any gaps, but it does reference each "breakpoint" twice, I prefer to test only the lower bound. (CASE returns when a condition is satisfied. Doing the tests in reverse lets the unhandled case (&lt;=0 or NULL) fall through without test, an <code>ELSE NULL</code> is not necessary, but could be added for completeness.</p> <p><strong>ADDITIONAL DETAILS</strong></p> <p>(Be sure to check the performance and the optimizer plan, to make sure it's the same as (or not significantly worse than) the original. In the past, I've had problems getting predicates pushed into the inline view, doesn't look like it will be a problem in your case.)</p> <p><strong>stored view</strong></p> <p>Note that the <em>inline</em> view could also be stored as view definition in the database. But there's no reason to do that, other than to "hide" the complex expression from your statement.</p> <p><strong>simplifying the complex expression</strong></p> <p>Another way to make a complex expression "simpler" is to use a user defined function. But a user defined function comes with its own set of issues (including degraded performance.)</p> <p><strong>add database "lookup" table</strong></p> <p>Some answers recommend adding a "lookup" table to the database. I don't see that this is really necessary. It could be done of course, and could make sense if you want to be able to derive different values for <code>duration</code> from <code>callDuration</code>, on the fly, <em>without</em> having to modify your query and <em>without</em> having to run any DDL statements (e.g. to alter a view definition, or modify a user defined function). </p> <p>With a join to a "lookup" table, one benefit is that you could make the query return different result sets by just performing DML operations on the "lookup" table.</p> <p>But that same advantage may actually be a drawback as well.</p> <p>Consider carefully if the benefit actually outweighs the downside. Consider the impact that new table will have on unit testing, how to verify the contents of the lookup table are valid and not changed (any overlaps? any gaps?), impact on ongoing maintenance to the code (due to the additional complexity).</p> <p><strong>some BIG assumptions</strong></p> <p>A lot of the answers given here seem to assume that <code>callDuration</code> is an INTEGER datatype. It seems they have overlooked the possibility that it's not an integer, but maybe I missed that nugget in the question.</p> <p>It's fairly simple test case to demonstrate that:</p> <pre><code>callDuration BETWEEN 0 AND 30 </code></pre> <p>is <em>NOT</em> equivalent to</p> <pre><code>callDuration &gt; 0 AND callDuration &lt; 30 </code></pre> http://stackoverflow.com/questions/917062/is-there-a-better-way-to-convert-sql-datetime-from-hhmmss-to-hhmmss/918014#918014 3 Answer by spencer7593 for Is there a better way to convert SQL datetime from hh:mm:ss to hhmmss? spencer7593 2009-05-27T21:07:24Z 2009-06-09T14:25:30Z <p><strong>NOTE:</strong></p> <p>UPDATED: My original answer used format style 20, ODBC canonical format for datetime. I've updated the answer to use the (more appropriate 8 (or 108) format style, which gets just time portion returned as 'hh:mi:ss' (24-hour clock). I'm just so used to using the ODBC style (20), it's the only one I have memorized.</p> <p>The question says that the column is of datatype <code>DATETIME</code>, not the newer (SQL Server 2008) <code>TIME</code> datatype.</p> <p><strong>UPDATED ANSWER:</strong></p> <pre><code> REPLACE(CONVERT(VARCHAR(8),timecolumn,8),':','') </code></pre> <p>Let's unpack that.</p> <p>First, <code>CONVERT</code> formats the time portion of the datetime into a varchar, in format 'hh:mi:ss' (24-hour clock), as specified by the format style value of 8.</p> <p>Next, the <code>REPLACE</code> function removes the colons, to get varchar in format <code>'hhmiss'</code>.</p> <p>That should be sufficient to get a usable string in the format you'd need.</p> <p><hr /></p> <p><strong>FOLLOW-UP QUESTION</strong> </p> <p>(asked by the OP question) </p> <p><strong>Is an inline expression faster/less server intensive than a user defined function?</strong></p> <p>The quick answer is yes. The longer answer is: it depends on several factors, and you really need to measure the performance to determine if that's actually true or not.</p> <p>I created and executed a rudimentary test case:</p> <pre> -- sample table create table tmp.dummy_datetimes (c1 datetime) -- populate with a row for every minute between two dates insert into tmp.dummy_datetimes select * from udfDateTimes('2007-01-01','2009-01-01',1,'minute') (1052641 row(s) affected) -- verify table contents select min(c1) as _max , max(c1) as _min , count(1) as _cnt from tmp.dummy_datetimes _cnt _min _max ------- ----------------------- ----------------------- 1052641 2007-01-01 00:00:00.000 2009-01-01 00:00:00.000 </pre> <p>(Note, the udfDateTimes function returns the set of all datetime values between two datetime values at the specified interval. In this case, I populated the dummy table with rows for each minute for two entire years. That's on the order of a million ( 2x365x24x60 ) rows.</p> <p>Now, user defined function that performs the same conversion as the inline expression, using identical syntax:</p> <pre> CREATE FUNCTION [tmp].[udfStrippedTime] (@ad DATETIME) RETURNS VARCHAR(6) BEGIN -- Purpose: format time portion of datetime argument to 'hhmiss' -- (for performance comparison to equivalent inline expression) -- Modified: -- 28-MAY-2009 spencer7593 RETURN replace(convert(varchar(8),@ad,8),':','') END </pre> <p>NOTE: I know the function is not defined to be <code>DETERMINISTIC</code>. (I think that requires the function be declared with schema binding and some other declaration, like the <code>PRAGMA</code> required Oracle.) But since every datetime value is unique in the table, that shouldn't matter. The function is going to have to executed for each distinct value, even if it were properly declared to be <code>DETERMINISTIC</code>.</p> <p>I'm not a SQL Server 'user defined function' guru here, so there may be something else I missed that will inadvertently and unnecessarily slow down the function.</p> <p>Okay.</p> <p>So for the test, I ran each of these queries alternately, first one, then the other, over and over in succession. The elapsed time of the first run was right in line with the subsequent runs. (Often that's not the case, and we want to throw out the time for first run.) SQL Server Management Studio reports query elapsed times to the nearest second, in format hh:mi:ss, so that's what I've reported here.</p> <pre> -- elapsed times for inline expression select replace(convert(varchar(8),c1,8),':','') from tmp.dummy_datetimes 00:00:10 00:00:11 00:00:10 -- elapsed times for equivalent user defined function select tmp.udfStrippedTime(c1) from tmp.dummy_datetimes 00:00:15 00:00:15 00:00:15 </pre> <p>For this test case, we observe that the user defined function is on the order of 45% slower than an equivalent inline expression.</p> <p>HTH</p> <p><hr /></p> <p><strong>REPLACE '00' hour with '24'</strong></p> <p><strike>...but <strong>aaarrrgh no</strong>... what possible reason is there to replace the <code>'00'</code> hour with <code>'24'</code>. (I mean, aside from how talented Jack Bauer is at thwarting terrorist attacks.) That's just crazy, it doesn't make sense. It's not going to sort or compare correctly. Seeing a time value displayed as '24', my brain is going to add 24 hours, roll it over to midnight of the next day. It's like we're adding 24 hours to the time value. <strong>aaarrrgh</strong> save me!</p> <p>Okay, to accomplish that, we're going to have to do the conversion two times, and handle the hour portion separately from the minutes and seconds. It's getting uglier...</p> <pre><code> REPLACE(CONVERT(VARCHAR(2),timecolumn,8),'00','24')+ REPLACE(SUBSTRING(CONVERT(VARCHAR(8),timecolumn,8),4,5),':','') </code></pre> <p><hr /></p> <p>If the timecolumn expression is the newer (SQL Server 2008) <code>TIME</code> datatype instead of <code>DATETIME</code>, the same type of expression will work. We'd just need to replace the style value of <code>8</code> to an appropriate style value applicable to a TIME datatype.</p> <p><hr /></p> <p>The original question didn't ask this, but hey, while we're at it, should we go ahead and display <code>60</code> for minutes if they are <code>00</code>. I mean, in case that would be needed? We could do the same for seconds, or would that be taking it too far?</p> <pre> REPLACE(CONVERT(VARCHAR(2),timecolumn,8),'00','24')+ REPLACE(SUBSTRING(CONVERT(VARCHAR(5),timecolumn,8),4,2),'00','60')+ REPLACE(SUBSTRING(CONVERT(VARCHAR(8),timecolumn,8),7,2),'00','60') </pre> <p></strike></p> http://stackoverflow.com/questions/955671/dealing-with-circular-reference-when-entering-data-in-sql/956818#956818 2 Answer by spencer7593 for Dealing with circular reference when entering data in SQL spencer7593 2009-06-05T16:23:56Z 2009-06-09T14:16:43Z <p><strong>Q:</strong> Do I have to disable constraints for the insert to happen?<br /> <strong>A:</strong> In Oracle, no, not if the foreign key constraints are <code>DEFERRABLE</code> (see example below)</p> <p>[EDIT] </p> <p><strong>A:</strong> In Microsoft SQL Server, you can't defer foreign key constraints like you can in Oracle. Disabling and re-enabling the foreign key constraint is an approach, but I shudder at the prospect of 1) performance impact (the foreign key constraint being checked for the ENTIRE table when the constraint is re-enabled), 2) handling the exception if (when?) the re-enable of the constraint fails.</p> <p>With SQL Server, a better approach is to remove the NOT NULL constraint, and allow for a NULL as temporary placeholder while rows are being inserted/updated.</p> <p><strong>For SQL Server:</strong></p> <pre> -- (with NOT NULL constraint removed from Departments.EmployeeID) insert into Departments values ('foo',NULL) go insert into Employees values ('bar','foo') go update Departments set EmployeeID = 'bar' where DepartmentID = 'foo' go </pre> <p>[/EDIT]</p> <p><strong>For Oracle:</strong></p> <pre> SET CONSTRAINTS ALL DEFERRED; INSERT INTO Departments values ('foo','dummy'); INSERT INTO Employees values ('bar','foo'); UPDATE Departments SET EmployeeID = 'bar' WHERE DepartmentID = 'foo'; COMMIT; </pre> <p>Let's unpack that:</p> <ul> <li>(autocommit must be off)</li> <li>defer enforcement of the foreign key constraint</li> <li>insert a row to Department table with a "dummy" value for the FK column</li> <li>insert a row to Employee table with FK reference to Department</li> <li>replace "dummy" value in Department FK with real reference</li> <li>re-enable enforcement of the constraints</li> </ul> <p>NOTES: disabling a foreign key constraint takes effect for ALL sessions, DEFERRING a constraint is at a transaction level (as in the example), or at the session level (<code>ALTER SESSION SET CONSTRAINTS=DEFERRED;</code>)</p> <p>Oracle has allowed for foreign key constraints to be defined as DEFERRABLE for at least a decade. I define all foreign key constraints (as a matter of course) to be DEFERRABLE INITIALLY IMMEDIATE. That keeps the default behavior as everyone expects, but allows for manipulation without requiring foreign keys to be disabled.</p> <p>see AskTom: <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></p> <p>see also: <a href="http://www.idevelopment.info/data/Oracle/DBA%5Ftips/Database%5FAdministration/DBA%5F12.shtml" rel="nofollow">http://www.idevelopment.info/data/Oracle/DBA_tips/Database_Administration/DBA_12.shtml</a></p> http://stackoverflow.com/questions/952149/in-oracle-is-there-a-function-that-calculates-the-difference-between-two-dates/953145#953145 0 Answer by spencer7593 for In Oracle, is there a function that calculates the difference between two Dates? spencer7593 2009-06-04T21:14:22Z 2009-06-05T19:18:38Z <p><b>Q:</b> In Oracle, is there a function that calculates the difference between two Dates?</p> <p>Just subtract one date expression from another to get the difference expressed as a number of days. The integer portion is the number of whole days, the fractional portion is the fraction of a day. Simple arithmetic after that, multiply by 24 to get hours.</p> <p><b>Q:</b> If not, is a way to display the difference between two dates in hours and minutes?</p> <p>It's just a matter of expressing the duration as whole hours and remainder minutes.</p> <p>We can go "old school" to get durations in hhhh:mi format using a combination of simple builtin functions:</p> <pre><code>SELECT decode(sign(t.maxst),-1,'-','')||to_char(floor(abs(t.maxst)/60))|| decode(t.maxst,null,'',':')||to_char(mod(abs(t.maxst),60),'FM00') as MaximumScheduleTime , decode(sign(t.minst),-1,'-','')||to_char(floor(abs(t.minst)/60))|| decode(t.minst,null,'',':')||to_char(mod(abs(t.minst),60),'FM00') as MinimumScheduleTime , decode(sign(t.avgst),-1,'-','')||to_char(floor(abs(t.avgst)/60)) decode(t.avgst,null,'',':')||to_char(mod(abs(t.avgst),60),'FM00') as AverageScheduleTime FROM ( SELECT round(max((EndDate - StartDate) *1440),0) as maxst , round(min((EndDate - StartDate) *1440),0) as minst , round(avg((EndDate - StartDate) *1440),0) as avgst FROM table1 ) t </code></pre> <p><hr /></p> <p>Yeah, it's fugly, but it's pretty fast. Here's a simpler case, that shows better what's going on:</p> <pre><code>select dur as "minutes" , abs(dur) as "unsigned_minutes" , floor(abs(dur)/60) as "unsigned_whole_hours" , to_char(floor(abs(dur)/60)) as "hhhh" , mod(abs(dur),60) as "unsigned_remainder_minutes" , to_char(mod(abs(dur),60),'FM00') as "mi" , decode(sign(dur),-1,'-','') as "leading_sign" , decode(dur,null,'',':') as "colon_separator" from (select round(( date_expr1 - date_expr2 )*24*60,0) as dur from ... ) </code></pre> <p>(replace <code>date_expr1</code> and <code>date_expr2</code> with date expressions)</p> <p>let's unpack this </p> <ul> <li><code>date_expr1 - date_expr2</code> returns difference in number of days</li> <li>multiply by 1440 (24*60) to get duration in minutes</li> <li><code>round</code> (or <code>floor</code>) to resolve fractional minutes into integer minutes</li> <li>divide by 60, integer quotient is hours, remainder is minutes</li> <li><code>abs</code> function to get absolute value (change negative values to positive)</li> <li><code>to_char</code> format model <code>FM00</code> give two digits (leading zeros)</li> <li>use <code>decode</code> function to format a negative sign and a colon (if needed) </li> </ul> <p><hr /></p> <p>The SQL statement could be made less ugly using a PL/SQL function, one that takes <del>two DATE arguments</del> a duration in (fractional) days and returns formatted hhhh:mi</p> <p>(<em>untested</em>)</p> <pre><code>create function hhhhmi(an_dur in number) return varchar2 deterministic is begin if an_dur is null then return null; end if; return decode(sign(an_dur),-1,'-','') || to_char(floor(abs(an_dur)*24)) ||':'||to_char(mod((abs(an_dur)*1440),60),'FM00'); end; </code></pre> <p>With the function defined:</p> <pre><code>SELECT hhhhmi(max(EndDate - StartDate)) as MaximumScheduleTime , hhhhmi(min(EndDate - StartDate)) as MinimumScheduleTime , hhhhmi(avg(EndDate - StartDate)) as AverageScheduleTime FROM table1 </code></pre> http://stackoverflow.com/questions/954686/sqlplus-queries/957205#957205 1 Answer by spencer7593 for SQLPLUS queries spencer7593 2009-06-05T17:52:30Z 2009-06-05T17:52:30Z <p>Here's an example, assuming the hostname is "nxgdev.ch.hibm.hsbc", the SID is D1PRO, and the listener is on default port 1521:</p> <pre> sqlplus -s BANKREC/password@"(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=nxgdev.ch.hibm.hsbc)(PORT=1521))(CONNECT_DATA=(SID=D1PRO)))" @/export/home/43279636/test.sql </pre> <p>This example assumes you are establishing a connection using TCP/IP, and you are not wanting to use Oracle names resolution.</p> <p><hr /></p> <p><strong>Additional notes:</strong></p> <p>I've not addressed Oracle name resolution here. But for starters, you'd be looking for a <code>sqlnet.ora</code> file <code>$ORACLE_HOME/network/admin</code>, and if <code>NAMES.DIRECTORY_PATH</code> refers to <code>TNSNAMES</code>, you'd be looking for a <code>tnsnames.ora</code> file in the same directory. (The <code>TNS_ADMIN</code> environment variable overrides the default directory, but I've already gotten too deep...)</p> <p>For increased security, I'd recommend you not provide the username and password on the command line, since that would be visible to other users e.g. from the output of "ps -ef".</p> <pre> sqlplus -s /NOLOG &lt;&lt;EOD! connect BANKREC/password@"(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=nxgdev.ch.hibm.hsbc)(PORT=1521))(CONNECT_DATA=(SID=D1PRO)))" @/export/home/43279636/test.sql exit EOD! </pre> http://stackoverflow.com/questions/936328/faster-select-distinct-thingid-thingname-from-table1-in-oracle/936372#936372 10 Answer by spencer7593 for Faster 'select distinct thing_id,thing_name from table1' in oracle spencer7593 2009-06-01T19:34:11Z 2009-06-04T16:55:54Z <p>[LATEST EDIT]</p> <p>My <strong>ORIGINAL ANSWER</strong> regarding creating the appropriate index on (name,id) to replace the index on (name) is below. (That wasn't an answer to the original question, which disallowed any database changes.)</p> <p>Here are statements that I have <em>not</em> yet tested. There's probably some obvious reason these won't work. I'd never actually <em>suggest</em> writing statements like this (at the risk of being drummed thoroughly for such ridiculous suggestion.)</p> <p>If these queries even return result sets, the ressult set will only resemble the result set from the OP query, almost <strong>by accident</strong>, taking advantage of a <strong>quirky guarantee</strong> about the data that Don has provided us. This statement is NOT equivalent to the original SQL, these statements are designed for the <strong>special case</strong> as described by Don.</p> <pre><code> select m1.id , m2.name from (select min(t1.rowid) as min_rowid , t1.id from table1 t1 where t1.id is not null group by t1.id ) m1 , (select min(t2.rowid) as min_rowid , t2.name from table1 t2 where t2.name is not null group by t2.name ) m2 where m1.min_rowid = m2.min_rowid order by m1.id </code></pre> <p>Let's unpack that:</p> <ul> <li><strong>m1</strong> is an inline view that gets us a list of distinct id values. </li> <li><strong>m2</strong> is an inline view that gets us a list of distinct name values.</li> <li>materialize the views <strong>m1</strong> and <strong>m2</strong> </li> <li>match the ROWID from <strong>m1</strong> and <strong>m2</strong> to match <code>id</code> with <code>name</code></li> </ul> <p>Someone else suggested the idea of an index merge. I had previously dismissed that idea, an optimizer plan to match 10s of millions of rowids without eliminating any of them.</p> <p>With sufficiently low cardinality for id and name, and with the right optimizer plan:</p> <pre><code> select m1.id , ( select m2.name from table1 m2 where m2.id = m1.id and rownum = 1 ) as name from (select t1.id from table1 t1 where t1.id is not null group by t1.id ) m1 order by m1.id </code></pre> <p>Let's unpack that</p> <ul> <li><strong>m1</strong> is an inline view that gets us a list of distinct id values. </li> <li>materialize the view <strong>m1</strong></li> <li>for each row in <strong>m1</strong>, query table1 to get the name value from a single row (stopkey)</li> </ul> <p><strong>IMPORTANT NOTE</strong></p> <p>These statements are FUNDAMENTALLY different that the OP query. They are designed to return a DIFFERENT result set than the OP query. The <em>happen</em> to return the desired result set because of a quirky guarantee about the data. Don has told us that a <code>name</code> is determined by <code>id</code>. (Is the converse true? Is <code>id</code> determined by <code>name</code>? Do we have a STATED GUARANTEE, not necessarily enforced by the database, but a guarantee that we can take advantage of?) For any <code>ID</code> value, every row with that <code>ID</code> value will have the same <code>NAME</code> value. (And we are also guaranteed the converse is true, that for any <code>NAME</code> value, every row with that <code>NAME</code> value will have the same <code>ID</code> value?)</p> <p>If so, maybe we can make use of that information. If <code>ID</code> and <code>NAME</code> appear in distinct pairs, we only need to find one particular row. The "pair" is going to have a matching ROWID, which conveniently happens to be available from each of the existing indexes. What if we get the minimum ROWID for each <code>ID</code>, and get the minimum ROWID for each <code>NAME</code>. Couldn't we then match the <code>ID</code> to the <code>NAME</code> based on the ROWID that contains the pair? I think it might work, given a low enough cardinality. (That is, if we're dealing with only hundreds of ROWIDs rather than 10s of millions.)</p> <p>[/LATEST EDIT]</p> <p>[EDIT]</p> <p>The question is now updated with information concerning the table, it shows that the <code>ID</code> column and the <code>NAME</code> column both allow for NULL values. If Don can live without any NULLs returned in the result set, then adding the IS NOT NULL predicate on both of those columns may enable an index to be used. (NOTE: in an Oracle (B-Tree) index, NULL values do NOT appear in the index.)</p> <p>[/EDIT]</p> <p><strong>ORIGINAL ANSWER:</strong></p> <p>create an appropriate index</p> <pre><code>create index table1_ix3 on table_1 (name,id) ... ; </code></pre> <p>Okay, that's <strong>not</strong> the answer to the <strong>question you asked</strong>, but it's the right answer to fixing the performance problem. (You specified no changes to the database, but in this case, changing the database is the right answer.)</p> <p>Note that if you have an index defined on <code>(name,id)</code>, then you (very likely) don't need an index on <code>(name)</code>, sine the optimizer will consider the leading <code>name</code> column in the other index.</p> <p>(UPDATE: as someone more astute than I pointed out, I hadn't even considered the possibility that the existing indexes were bitmap indexes and not B-tree indexes...)</p> <p><hr /></p> <p>Re-evaluate your need for the result set... do you need to return <code>id</code>, or would returning <code>name</code> be sufficient.</p> <pre><code>select distinct name from table1 order by name; </code></pre> <p>For a particular name, you could submit a second query to get the associated <code>id</code>, if and when you needed it...</p> <pre><code>select id from table1 where name = :b1 and rownum = 1; </code></pre> <p><hr /></p> <p>If you you really <em>need</em> the specified result set, you can try some alternatives to see if the performance is any better. I don't hold out much hope for any of these:</p> <pre><code>select /*+ FIRST_ROWS */ DISTINCT id, name from table1 order by id; </code></pre> <p>or </p> <pre><code>select /*+ FIRST_ROWS */ id, name from table1 group by id, name order by name; </code></pre> <p>or</p> <pre><code>select /*+ INDEX(table1) */ id, min(name) from table1 group by id order by id; </code></pre> <p>UPDATE: as others have astutely pointed out, with this approach we're testing and comparing performance of alternative queries, which is a sort of hit or miss approach. (I don't agree that it's random, but I would agree that it's hit or miss.)</p> <p>UPDATE: tom suggests the ALL_ROWS hint. I hadn't considered that, because I was really focused on getting a query plan using an INDEX. I suspect the OP query is doing a full table scan, and it's probably not the scan that's taking the time, it's the sort unique operation (&lt;10g) or hash operation (10gR2+) that takes the time. (Absent timed statistics and event 10046 trace, I'm just guessing here.) But then again, maybe it is the scan, who knows, the high water mark on the table could be way out in a vast expanse of empty blocks.</p> <p>It almost goes without saying that the statistics on the table should be up-to-date, and we should be using SQL*Plus AUTOTRACE, or at least EXPLAIN PLAN to look at the query plans.</p> <p>But none of the suggested alternative queries really address the performance issue.</p> <p>It's possible that hints will influence the optimizer to chooze a different plan, basically satisfying the ORDER BY from an index, but I'm not holding out much hope for that. (I don't think the FIRST_ROWS hint works with GROUP BY, the INDEX hint may.) I can see the potential for such an approach in a scenario where there's gobs of data blocks that are empty and sparsely populated, and ny accessing the data blocks via an index, it could actually be significantly fewer data blocks pulled into memory... but that scenario would be the exception rather than the norm.</p> <p><hr /></p> <p>UPDATE: As Rob van Wijk points out, making use of the Oracle trace facility is the most effective approach to identifying and resolving performance issues.</p> <p>Without the output of an EXPLAIN PLAN or SQL*Plus AUTOTRACE output, I'm just guessing here.</p> <p>I suspect the performance problem you have right now is that the table data blocks have to be referenced to get the specified result set.</p> <p>There's no getting around it, the query can not be satisfied from just an index, since there isn't an index that contains both the <code>NAME</code> and <code>ID</code> columns, with either the <code>ID</code> or <code>NAME</code> column as the leading column. The other two "fast" OP queries can be satisfied from index without need reference the row (data blocks).</p> <p>Even if the optimizer plan for the query was to use one of the indexes, it still has to retrieve the associated row from the data block, in order to get the value for the other column. And with no predicate (no WHERE clause), the optimizer is likely opting for a full table scan, and likely doing a sort operation (&lt;10g). (Again, an EXPLAIN PLAN would show the optimizer plan, as would AUTOTRACE.)</p> <p>I'm also assuming here (big assumption) that both columns are defined as NOT NULL.</p> <p>You might also consider defining the table as an index organized table (IOT), especially if these are the only two columns in the table. (An IOT isn't a panacea, it comes with it's own set of performance issues.)</p> <p><hr /></p> <p>You can try re-writing the query (unless that's a database change that is also verboten) In our database environments, we consider a query to be as much a part of the database as the tables and indexes.)</p> <p>Again, without a predicate, the optimizer will likely not use an index. There's a chance you could get the query plan to use one of the existing indexes to get the first rows returned quickly, by adding a hint, test a combination of:</p> <pre><code>select /*+ INDEX(table1) */ ... select /*+ FIRST_ROWS */ ... select /*+ ALL_ROWS */ ... distinct id, name from table1; distinct id, name from table1 order by id; distinct id, name from table1 order by name; id, name from table1 group by id, name order by id; id, min(name) from table1 group by id order by id; min(id), name from table1 group by name order by name; </code></pre> <p>With a hint, you may be able to influence the optimizer to use an index, and that may avoid the sort operation, but overall, it make take more time to return the entire result set.</p> <p>(UPDATE: someone else pointed out that the optimizer might choose to merge two indexes based on ROWID. That's a possibility, but without a predicate to eliminate some rows, that's likely going to be a much more expensive approach (matching 10s of millions ROWIDs) from two indexes, especially when none of the rows are going to be excluded on the basis of the match.)</p> <p>But all that theorizing doesn't amount to squat without some performance statistics.</p> <p><hr /></p> <p>Absent altering anything else in the database, the only other hope (I can think of) of you speeding up the query is to make sure the sort operation is tuned so that the (required) sort operation can be performed in memory, rather than on disk. But that's not really the right answer. The optimizer may not be doing a sort operation at all, it may be doing a hash operation (10gR2+) instead, in which case, that should be tuned. The sort operation is just a guess on my part, based on past experience with Oracle 7.3, 8, 8i, 9i.)</p> <p>A serious DBA is going to have more issue with you futzing with the <code>SORT_AREA_SIZE</code> and/or <code>HASH_AREA_SIZE</code> parameters for your session(s) than he will in creating the correct indexes. (And those session parameters are "old school" for versions prior to 10g automatic memory management magic.)</p> <p><strong>Show your DBA the specification for the result set, let the DBA tune it.</strong></p> http://stackoverflow.com/questions/942844/how-do-i-automatically-reset-a-sequences-value-to-0-every-year-in-oracle-10g/942869#942869 0 Answer by spencer7593 for How do I automatically reset a sequence's value to 0 every year in Oracle 10g? spencer7593 2009-06-03T02:58:59Z 2009-06-04T16:11:34Z <p>Sequences aren't really designed to be reset. But there are some cases where resetting a sequence is desirable, for example, when setting up test data, or merging production data back into a test environment. This type of activity is <em>not</em> normally done in production.</p> <p>IF this type of operation is going to be put into production, it needs to thoroughly tested. (What causes the most concern is the potential for the reset procedure to be accidentally performed at the wrong time, like, in the middle of the year.</p> <p>Dropping and recreating the sequence is one approach. As an operation, it's fairly straightforward as far as the SEQUENCE goes:</p> <pre> DROP SEQUENCE MY_SEQ; CREATE SEQUENCE MY_SEQ START WITH 1 INCREMENT BY 1 MINVALUE 0; </pre> <p>[EDIT] As Matthew Watson correctly points out, every DDL statement (such as a DROP, CREATE, ALTER) will cause an implicit commit. [/EDIT]</p> <p>But, any privileges granted on the SEQUENCE will be dropped, so those will need to be re-granted. Any objects that reference the sequence will be invalidated. To get this more generalized, you would need to save privileges (before dropping the sequence) and then re-grant them.</p> <p>A second approach is to ALTER an existing SEQUENCE, without dropping and recreating it. Resetting the sequence can be accomplished by changing the INCREMENT value to a negative value (the difference between the current value and 0), and then do exactly one .NEXTVAL to set the current value to 0, and then change the INCREMENT back to 1. I've used a this same approach before (manually, in a test environment), to set a sequence to a larger value as well.</p> <p>Of course, for this to work correctly, you need to <strong>insure</strong> no other sessions reference the sequence while this operation is being performed. An extra .NEXTVAL at the wrong instant will screw up the reset. (NOTE: achieving that on the database side is going to be difficult, if the application is connecting as the owner of the sequence, rather than as a separate user.)</p> <p>To have it happen every year, you'd need to schedule a job. The sequence reset will have to be coordinated with the reset of the YYYY portion of your identifier.</p> <p>Here's an example:</p> <p><a href="http://www.jaredstill.com/content/reset-sequence.html" rel="nofollow">http://www.jaredstill.com/content/reset-sequence.html</a></p> <p>[EDIT]</p> <p><strong>UNTESTED</strong> placeholder for one possible design of a PL/SQL block to reset sequence</p> <pre> declare pragma autonomous_transaction; ln_increment number; ln_curr_val number; ln_reset_increment number; ln_reset_val number; begin -- save the current INCREMENT value for the sequence select increment_by into ln_increment from user_sequences where sequence_name = 'MY_SEQ'; -- determine the increment value required to reset the sequence -- from the next fetched value to 0 select -1 - MY_SEQ.nextval into ln_reset_increment from dual; -- fetch the next value (to make it the current value) select MY_SEQ.nextval into ln_curr from dual; -- change the increment value of the sequence to EXECUTE IMMEDIATE 'alter sequence MY_SEQ increment by ' || ln_reset_increment ||' minvalue 0'; -- advance the sequence to set it to 0 select MY_SEQ.nextval into ln_reset_val from dual; -- set increment back to the previous(ly saved) value EXECUTE IMMEDIATE 'alter sequence MY_SEQ increment by ' || ln_increment ; end; / </pre> <p>NOTES:</p> <ul> <li>how to best protect the sequence from access while it's being reset, RENAME it?</li> <li>Several test cases to work through here.</li> <li>First pass, check normative cases of positive, ascending, increment 1 sequence.</li> <li>would a better approach be to create new SEQUENCE, add permissions, rename existing and new sequences, and then re-compile dependencies?</li> </ul> http://stackoverflow.com/questions/947732/saving-dates-in-sqlserver/947741#947741 6 Answer by spencer7593 for Saving Dates in SQLServer spencer7593 2009-06-03T23:02:15Z 2009-06-04T14:12:13Z <p>Format <code>YYYY-MM-DD</code> is unambiguous, meaning that SQL Server won't confuse the month and day when converting a string value to <code>DATETIME</code>. (I've never experienced a problem with an implicit conversion using that format using the four digit year.)</p> <p>The "safest" (and most convenient) way to store date values in SQL Server is to use DATETIME datatype.</p> <p>Use the <code>CONVERT</code> function to explicitly specify the input and output formats when converting between <code>DATETIME</code> and strings.</p> <p>SQL Server 2005 Documentation on CONVERT <strong><em>style</em></strong> argument values:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms187928%28SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms187928(SQL.90).aspx</a></p> <p>To convert a string representation to DATETIME datatype:</p> <pre><code>select CONVERT(datetime, '2009-06-03', 20) </code></pre> <p>The first argument is datatype to convert to, the second argument is the expression to be converted, the third argument is the <em>style</em>.</p> <p>(<em>style</em> 20 is ODBC Canonical format = <code>'YYYY-MM-DD HH:MI:SS'</code> (24 hour clock)</p> <p><hr /></p> <p>[FOLLOWUP]</p> <p>To convert a DATETIME expression (e.g. getdate() to VARCHAR in <code>'YYYY-MM-DD'</code> format:</p> <pre><code>select CONVERT(varchar(10), getdate(), 20) </code></pre> <p>Note that specifying varchar(10) gets you just the first 10 characters of the etnire <code>'YYYY-MM-DD HH:MM:SS'</code> format.</p> <p>[/FOLLOWUP]</p> <p><hr /></p> <p>As to what determines the default formats, that's going to be research. We avoid the issues caused by default formats by specifying the formats.</p> http://stackoverflow.com/questions/946899/oracle-8i-query-help/946945#946945 6 Answer by spencer7593 for Oracle 8i Query Help spencer7593 2009-06-03T20:12:53Z 2009-06-03T21:17:03Z <p>Here's one approach:</p> <pre><code>select t.type as "Type" , sum(case when t.status = 'A' then 1 else 0 end) as "Count A" , sum(case when t.status = 'I' then 1 else 0 end) as "Count I" , sum(case when t.status = 'F' then 1 else 0 end) as "Count F" from my_table t group by t.type order by t.type desc </code></pre> <p>This works if you have specific columns you want returned, and works for "counting" rows that meet more complex criteria set.</p> <p>[EDIT]</p> <p>(Added the DESC keyword to get the result set ordered as shown by OP, +1 good catch by Rob van Wijk!)</p> <p>(Andomar makes a good observation, with more and more columns in the result set, using this approach, the statement gets unweildy. There are other approaches to getting the same result set which work well if the only "test" is an equality comparison on a single column.)</p> <p>Oracle 8i does support the CASE expression, doesn't it? Oracle 8 didn't, if I recall correctly. We can go "old school" to do the same thing with the DECODE function:</p> <pre><code>select t.type as "Type" , sum(decode(t.status,'A',1,0)) as "Count A" , sum(decode(t.status,'I',1,0)) as "Count I" , sum(decode(t.status,'F',1,0)) as "Count F" from my_table t group by t.type order by t.type DESC </code></pre> <p>[/EDIT]</p> <p>Sometimes, we want to check more than one type condition, and include a row in more than one count. We can get a total </p> <pre><code>select t.type as "Type" , sum(case when t.status in ('A') then 1 else 0 end) as "Count A" , sum(case when t.status in ('I') then 1 else 0 end) as "Count I" , sum(case when t.status in ('F') then 1 else 0 end) as "Count F" , sum(case when t.status in ('A','I') then 1 else 0 end) as "#AI" , sum(decode(sign(t.foo-t.bar),1,1,0)) as "#foo&gt;bar" , sum(decode(sign(10.0-t.foo),1,1,0)) as "#foo&lt;10" from my_table t group by t.type order by t.type desc </code></pre> <p>(Just to point out, it's possible for a row to satisfy the specified criteria for multiple columns, and so it could be "counted" more than once. Sometimes, that's exactly what we want.)</p> http://stackoverflow.com/questions/947140/how-can-i-find-the-owner-of-an-object-in-oracle/947170#947170 3 Answer by spencer7593 for How can I find the OWNER of an object in Oracle? spencer7593 2009-06-03T20:51:37Z 2009-06-03T21:05:04Z <p>You can query the ALL_OBJECTS view:</p> <pre><code>select owner , object_name , object_type from ALL_OBJECTS where object_name = 'FOO' </code></pre> <p>To find synonyms:</p> <pre><code>select * from ALL_SYNONYMS where synonym_name = 'FOO' </code></pre> <p>Just to clarify, if a user references an object name with no schema qualification (e.g. 'FOO'), Oracle FIRST checks the user's schema for an object of that name (including synonyms in the user's schema. If it can't resolve the reference, Oracle then checks for a public synonym.</p> <p>If you are looking specifically for constraints on a particular table_name:</p> <pre><code>select c.* from all_constraints c where c.table_name = 'FOO' union all select cs.* from all_constraints cs join all_synonyms s on (s.table_name = cs.table_name and s.table_owner = cs.owner and s.synonym_name = 'FOO' ) </code></pre> <p>HTH</p> http://stackoverflow.com/questions/941034/is-it-possible-to-use-group-by-with-bind-variables/941183#941183 3 Answer by spencer7593 for Is it possible to use GROUP BY with bind variables? spencer7593 2009-06-02T18:38:55Z 2009-06-03T03:45:26Z <p>I suggest re-writing the statement so that there is only one bind argument. This approach is kind of ugly, but returns the result set:</p> <pre><code>select max(col1) , f_col2 from ( select col1 , f(? ,col2) as f_col2 from t ) group by f_col2 </code></pre> <p>This re-written statement has a reference to only a single bind argument, so now the DBMS sees the expressions in the GROUP BY clause and the SELECT list are identical.</p> <p>HTH</p> <p>[EDIT]</p> <p>(I wish there were a prettier way, this is why I prefer the named bind argument approach that Oracle uses. With the Perl DBI driver, positional arguments are converted to named arguments in the statement actually sent to Oracle.)</p> <p>I didn't see the problem at first, I didn't understand the original question. (Apparently, several other people missed it too.) But after running some test cases, it dawned on me what the problem was, what the question was working.</p> <p>Let me see if I can state the problem: how to get two separate (positional) bind arguments to be treated (by the DBMS) as if it were two references to the same (named) bind argument.</p> <p>The DBMS is expecting the expression in the GROUP BY to match the expression in the SELECT list. But the two expressions are considered DIFFERENT even when the expressions are identical, when the only difference is that each expression references a different bind variable. (We can demonstrate some test cases that at least some DBMS will allow, but there are more general cases that will raise an exception.)</p> <p>At this point the short answer is, that's got me stumped. The suggestion I have (which may not be an actual answer to the original question) is to restructure the query.</p> <p>[/EDIT]</p> <p>I can provide more details if this approach doesn't work, or if you have some other problem figuring it out. Or if there's a problem with performance (I can see the optimizer choosing a different plan for the re-written query, even though it returns the specified result set. For further testing, we'd really need to know what DBMS, what driver, statistics, etc.)</p> http://stackoverflow.com/questions/937434/relations-in-oracle-objects/937771#937771 2 Answer by spencer7593 for relations in oracle objects? spencer7593 2009-06-02T03:11:04Z 2009-06-02T18:18:39Z <p>[EDIT] I believe the question is referring to Oracle Objects for OLE (OO40) [/EDIT]</p> <p>For this example, consider a one-to-many relationship between order and line_item. (An order may have zero, one or more line_item, and a line_item is associate with exactly one order.) We're jumping past all of the modeling steps, and getting to a shell of what the definitions might look like.</p> <p>One option is to use a reference:</p> <pre><code>create type order_typ as object ( id integer , ... ); create table order_obj_table of order_type; create table line_item ( order_ref ref order_typ scope is order_obj_table , ... ); </code></pre> <p>Another alternative it to use a nested table (called a collection type):</p> <pre><code>create type line_item_typ as object ( id integer , ... ); create type line_item_collection_typ as table of line_item_typ; create type order_typ as object ( id integer , line_items line_item_collection_typ , ... ); </code></pre> <p><strong>[EDIT]</strong></p> <p>ADDENDUM:</p> <p>Tony Andrews asks (quite reasonably) why one would want to use "nested tables". Tony points out that the resulting database structures will be "harder to access", by which he means (I think) the required query constructs are "non-standard" SQL.</p> <p>Quite frankly, I can't think of a good reason that I would use a nested table, but I must at least acknowledge that OO4O does provide support for nested tables.</p> <p>Why would one choose to use OO4O at all? It provides (ostensibly) improved performance against an Oracle database, by virtue of a native driver that avoids the overhead incurred by ODBC or OLE. It's also a technology specifically for Oracle, writing an application against the OO4O interface means that the app will essentially be tied to an Oracle database, which may be okay if there's no requirement for the app to support multiple (interchangeable) database engines.</p> <p>More information and examples for OO4O are available from Oracle web site:</p> <p><a href="http://www.oracle.com/technology/tech/windows/ole/index.html" rel="nofollow">http://www.oracle.com/technology/tech/windows/ole/index.html</a></p> <p><strong>[/EDIT]</strong></p> http://stackoverflow.com/questions/915533/sql-server-query-syntax/918319#918319 0 Answer by spencer7593 for Sql Server query syntax spencer7593 2009-05-27T22:30:41Z 2009-05-30T05:40:26Z <p>You've already got a variety of answers, some of them more useful than others. But to answer your question directly:</p> <p>No, SQL Server will not allow you to reference the column alias (defined in the select list) in the predicate (the WHERE clause). I think that is sufficient to answer the question you asked.</p> <p><strong>Additional details:</strong></p> <p>(this discussion goes beyond the original question you asked.)</p> <p>As you noted, there are several workarounds available.</p> <p>Most problematic with the query you posted (as others have already pointed out) is that we aren't guaranteed that the subquery in the SELECT list returns only one row. If it does return more than one row, SQL Server will throw a "too many rows" exception:</p> <pre> Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, , >= or when the subquery is used as an expression. </pre> <p>For the following discussion, I'm going to assume that issue is already sufficiently addressed.</p> <p>Sometimes, the easiest way to make the alias available in the predicate is to use an inline view.</p> <pre><code>SELECT v.* FROM ( SELECT * , (SELECT Table1.Column FROM Table1 JOIN Table2 ON Table1.Table2Id = Table2.Id WHERE Table1.Column = 1 ) as tmp FROM Table2 ) v WHERE v.tmp = 1 </code></pre> <p>Note that SQL Server won't push the predicate for the outer query (<code>WHERE v.tmp = 1</code>) into the subquery in the inline view. So you need to push that in yourself, by including the <code>WHERE Table1.Column = 1</code> predicate in the subquery, particularly if you're depending on that to make the subquery return only one value.</p> <p>That's just one approach to working around the problem, there are others. I suspect that query plan for this SQL Server query is not going to be optimal, for performance, you probably want to go with a JOIN or an EXISTS predicate.</p> <p>NOTE: I'm not an expert on using MySQL. I'm not all that familiar with MySQL support for subqueries. I do know (from painful experience) that subqueries weren't supported in MySQL 3.23, which made migrating an application from Oracle 8 to MySQL 3.23 particularly painful.</p> <p>Oh and btw... of no interest to anyone in particular, the Teradata DBMS engine <em>DOES</em> have an extension that allows for the NAMED keyword in place of the AS keyword, and a NAMED expression <em>CAN</em> be referenced elsewhere in the QUERY, including the WHERE clause, the GROUP BY clause and the ORDER BY clause. <em>Shuh-weeeet</em></p> http://stackoverflow.com/questions/337704/parameterizing-a-sql-in-clause/928523#928523 9 Answer by spencer7593 for Parameterizing a SQL IN clause? spencer7593 2009-05-29T23:18:15Z 2009-05-30T04:44:19Z <p>The original question was <strong>"How do I paramaterize a query ..."</strong></p> <p>Let me state right here, that this is <strong>not an answer</strong> to the original question. There are already some demonstrations of that in other good answers.</p> <p>With that said, go ahead and flag this answer, downvote it, mark it as not an answer... do whatever you believe is right.</p> <p><strong>selected answer</strong></p> <p>What I want to address here is the approach given in Joel's answer, the answer "selected" as the right answer.</p> <p>Joel's approach is clever. And it works reasonably, it's going to exhibit predictable behavior and predictable performance, given "normal" values, and with the normative edge cases, such as NULL and the empty string. And it may be sufficient for a particular application.</p> <p>But in terms generalizing this approach, let's also consider the more obscure corner cases, like when the <code>Name</code> column contains a wildcard character (as recognized by the LIKE predicate.) The wildcard character I see most commonly used is <code>%</code> (a percent sign.). So let's deal with that here now, and later go on to other cases.</p> <p><strong>some problems with % character</strong></p> <p>Consider a Name value of <code>'pe%ter'</code>. (For the examples here, I use a literal string value in place of the column name.) A row with a Name value of `'pe%ter' would be returned by a query of the form:</p> <pre><code>select ... where '|peanut|butter|' like '%|' + 'pe%ter' + '|%' </code></pre> <p>but that same row will <strong>not</strong> be returned if the order of the search terms is reversed:</p> <pre><code>select ... where '|butter|peanut|' like '%|' + 'pe%ter' + '|%' </code></pre> <p>The behavior we observe is kind of odd. Changing the order of the search terms in the list changes the result set.</p> <p>It almost goes without saying that we might not want <code>pe%ter</code> to match peanut butter, no matter how much he likes it.</p> <p><strong>obscure corner case</strong></p> <p>(Yes, I will agree that this is an obscure case. Probably one that is not likely to be tested. We wouldn't expect a wildcard in a column value. We may assume that the application prevents such a value from being stored. But in my experience, I've rarely seen a database constraint that specifically disallowed characters or patterns that would be considered wildcards on the right side of a <code>LIKE</code> comparison operator.</p> <p><strong>patching a hole</strong></p> <p>One approach to patching this hole is to escape the <code>%</code> wildcard character. (For anyone not familiar with the escape clause on the operator, here's a link to the <a href="http://msdn.microsoft.com/en-us/library/aa933232%28SQL.80%29.aspx" rel="nofollow">SQL Server documentation</a>.</p> <pre><code>select ... where '|peanut|butter|' like '%|' + 'pe\%ter' + '|%' escape '\' </code></pre> <p>Now we can match the literal %. Of course, when we have a column name, we're going to need to dynamically escape the wildcard. We can use the <code>REPLACE</code> function to find occurrences of the <code>% </code>character and insert a backslash character in front of each one, like this:</p> <pre><code>select ... where '|pe%ter|' like '%|' + REPLACE( 'pe%ter' ,'%','\%') + '|%' escape '\' </code></pre> <p>So that solves the problem with the % wildcard. Almost.</p> <p><strong>escape the escape</strong></p> <p>We recognize that our solution has introduced another problem. The escape character. We see that we're also going to need to escape any occurrences of escape character itself. This time, we use the ! as the escape character:</p> <pre><code>select ... where '|pe%t!r|' like '%|' + REPLACE(REPLACE( 'pe%t!r' ,'!','!!'),'%','!%') + '|%' escape '!' </code></pre> <p><strong>the underscore too</strong></p> <p>Now that we're on a roll, we can add another <code>REPLACE</code> handle the underscore wildcard. And just for fun, this time, we'll use $ as the escape character.</p> <pre><code>select ... where '|p_%t!r|' like '%|' + REPLACE(REPLACE(REPLACE( 'p_%t!r' ,'$','$$'),'%','$%'),'_','$_') + '|%' escape '$' </code></pre> <p>I prefer this approach to escaping because it works in Oracle and MySQL as well as SQL Server. (I usually use the \ backslash as the escape character, since that's the character we use in regular expresssions. But why be constrained by convention! </p> <p><strong>those pesky brackets</strong></p> <p>SQL Server also allows for wildcard characters to be treated as literals by enclosing them in brackets <code>[]</code>. So we're not done fixing yet, at least for SQL Server. Since pairs of brackets have special meaning, we'll need to escape those as well. If we manage to properly escape the brackets, then at least we won't have to bother with the hyphen <code>-</code> and the carat <code>^</code> within the brackets. And we can leave any <code>% </code>and <code>_</code> characters inside the brackets escaped, since we'll have basically disabled the special meaning of the brackets.</p> <p>Finding matching pairs of brackets shouldn't be that hard. It's a little more difficult than handling the occurrences of singleton % and _. (Note that it's not sufficient to just escape all occurrences of brackets, because a singleton bracket is considered to be a literal, and doesn't need to be escaped. The logic is getting a little fuzzier than I can handle without running more test cases.)</p> <p><strong>inline expression gets messy</strong></p> <p>That inline expression in the SQL is getting longer and uglier. We can probably make it work, but heaven help the poor soul that comes behind and has to decipher it. As much of a fan I am for inline expressions, I'm inclined not use one here, mainly because I don't want to have to leave a comment explaining the reason for the mess, and apologizing for it.</p> <p><strong>a function where ?</strong></p> <p>Okay, so, if we don't handle that as an inline expression in the SQL, the closest alternative we have is a user defined function. And we know that won't speed things up any (unless we can define an index on it, like we could with Oracle.) If we've got to create a function, we might better do that in the code that calls the SQL statement.</p> <p>And that function may have some differences in behavior, dependent on the DBMS and version. (A shout out to all you Java developers so keen on being able to use any database engine interchangeably.)</p> <p><strong>domain knowledge</strong></p> <p>We may have specialized knowledge of the domain for the column, (that is, the set of allowable values enforced for the column. We may know <em>a priori</em> that the values stored in the column will never contain a percent sign, an underscore, or bracket pairs. In that case, we just include a quick comment that those cases are covered.</p> <p>The values stored in the column may allow for % or _ characters, but a constraint may require those values to be escaped, perhaps using a defined character, such that the values are LIKE comparison "safe". Again, a quick comment about the allowed set of values, and in particular which character is used as an escape character, and go with Joel's approach.</p> <p>But, absent the specialized knowledge and a guarantee, it's important for us to at least consider handling those obscure corner cases, and consider whether the behavior is reasonable and "per the specification"</p> <p><hr /></p> <p><strong>other issues recap</strong></p> <p>I believe others have already sufficiently pointed out some of the other commonly considered areas of concern:</p> <ul> <li><p>SQL injection (taking what would appear to be user supplied information, and including that in the SQL text rather than supplying them through bind variables. Using bind variables isn't required, it's just one convenient approach to thwart with SQL injection. There are other ways to deal </p></li> <li><p>optimizer plan using index scan rather than index seeks, possible need for an expression or function for escaping wildcards (possible index on expression or function)</p></li> <li><p>using literal values in place of bind variables impacts scalability</p></li> </ul> <p><hr /></p> <p><strong>conclusion</strong></p> <p>I like Joel's approach. It's clever. And it works.</p> <p>But as soon as I saw it, I immediately saw a potential problem with it, and it's not my nature to let it slide. I don't mean to be critical of the efforts of others. I know many developers take their work very personally, because they invest so much into it and they care so much about it. So please understand, this is not a personal attack. What I'm identifying here is the type of problem that crops up in production rather than testing.</p> <p>Yes, I've gone far afield from the original question. But where else to leave this note concerning what I consider to be an important issue with the "selected" answer for a question.</p> <p>My hope is that someone will find this post to be of some use.</p> <p><hr /></p> <p><strong>apology</strong></p> <p>Again, I do apologize for my failure to abide rules and conventions of stackoverflow, posting here what is clearly <strong>not an answer</strong> to the OP question.</p> http://stackoverflow.com/questions/893518/fastest-way-to-check-date-range/900698#900698 0 Answer by spencer7593 for Fastest way to check date range... spencer7593 2009-05-23T02:16:19Z 2009-05-29T02:27:40Z <p>I think this T-SQL is equivalent to the code you have:</p> <pre> -- set time portion of @DateStart back to midnight SET @DateStart = CONVERT(DATETIME,CONVERT(VARCHAR(10),@DateStart,20),20) -- advance time portion of @DateEnd to last instant before next midnight SET @DateEnd = CONVERT(DATETIME,CONVERT(VARCHAR(11),@DateEnd,20)+'23:59:59.997',21) </pre> <p>The <code>CONVERT</code> function will handle NULLS, so there's no need for a separate test for a NULL value (unless, of course, you are doing some special handling other than what you are showing, and are not passing the NULL values through to query predicate (i.e. WHERE clause). Or, perhaps you are expecting a lot of the arguments to be NULL, and you want to avoid the overhead of the calls to CONVERT.</p> <p>However, I concur with Tom H.'s recommendation, and avoid messing with subtracting milliseconds, and instead set the @DateEnd to midnight of the following day e.g.</p> <pre> -- advance @DateEnd to midnight of following day SET @DateEnd = DATEADD(day,1,CONVERT(DATETIME,CONVERT(VARCHAR(10),@DateEnd,20),20)) </pre> <p>and change the predicate to do a range test like this:</p> <pre><code>WHERE (EventDate &gt;= @DateStart AND EventDate &lt; @DateEnd) </code></pre> <p><hr /></p> <p>You can avoid the separate SET statements, and move the expressions straight into the query, but I don't expect that will improve performance any, and make the SQL statement harder to read, you'd definitely want to keep the comments ...</p> WHERE (EventDate >= CONVERT(DATETIME,CONVERT(VARCHAR(10),@DateStart,20),20) AND EventDate http://stackoverflow.com/questions/858829/how-do-i-clear-oracle-execution-plan-cache-for-benchmarking/917516#917516 0 Answer by spencer7593 for how do i clear oracle execution plan cache for benchmarking? spencer7593 2009-05-27T19:13:03Z 2009-05-28T20:33:45Z <p>Peter gave you the answer to the question you asked:</p> <pre><code>alter system flush shared_pool; </code></pre> <p>That is the statement you would use to [sic] delete prepared statements from the cache. (Prepared statements aren't the only objects flushed from the shared pool, the statement does more than that.) As I indicated in my earlier comment (on your question), v$sql is not a table. It's a dynamic performance view, a convenient representation of Oracle's internal memory structures. You only have SELECT privilege on the view, you can't delete rows from it.</p> <p><hr /></p> <p><strong>flush the shared pool and buffer cache?</strong></p> <p>The following doesn't answer your question directly. Instead, it answers a fundamentally different (and maybe more important) question:</p> <p>Should we normally flush the shared pool and/or the buffer cache to measure the performance of a query?</p> <p>In short, the answer is no.</p> <p>I think Tom Kyte addresses this pretty well:</p> <p><a href="http://www.oracle.com/technology/oramag/oracle/03-jul/o43asktom.html" rel="nofollow">http://www.oracle.com/technology/oramag/oracle/03-jul/o43asktom.html</a></p> <p>&lt;excerpt&gt;</p> <p>Actually, it is important that a tuning tool not do that. It is important to run the test, ignore the results, and then run it two or three times and average out those results. In the real world, the buffer cache will never be devoid of results. Never. When you tune, your goal is to reduce the logical I/O (LIO), because then the physical I/O (PIO) will take care of itself.</p> <p>Consider this: Flushing the shared pool and buffer cache is even more artificial than not flushing them. Most people seem skeptical of this, I suspect, because it flies in the face of conventional wisdom. I'll show you how to do this, but not so you can use it for testing. Rather, I'll use it to demonstrate why it is an exercise in futility and totally artificial (and therefore leads to wrong assumptions). I've just started my PC, and I've run this query against a big table. I "flush" the buffer cache and run it again: </p> <p>&lt;/excerpt&gt;</p> <p><hr /></p> <p><strong>hard parse performance bottleneck</strong></p> <p>With that out of the way, let's move forward to address your concern with performance.</p> <p>You tell us that you've observed that the first execution of a query takes significantly longer (~28 seconds) compared to subsequent executions (~5 seconds), even when flushing (all of the index and data blocks from) the buffer cache.</p> <p>To me, that suggests that the <strong>hard parse</strong> is doing some heavy lifting. It's either a lot of work, or its encountering a lot of waits. This can be investigated and tuned.</p> <p><strong>tangentially related anecdotal story</strong></p> <p>A few years back, I did see one query that had elapsed times in terms of MINUTES on first execution, subsequent executions in terms of seconds. What we found was that most of the first executing time was spent on the hard parse. This was a query written by a CrystalReports developer who innocently (naively?) joined two humongous reporting views. One of the views was a join of 62 tables, the other view was a join of 42 tables. The query used Cost Based Optimizer. And tracing revealed it wasn't wait time, it was CPU time spent evaluating possible join paths. Each of the vendor supplied "reporting" views wasn't too bad by itself, but when two of them were joined, it was painfully slow. The problem was the sheer number of join permutations that the optimizer was considering. There is an instance parameter that limits the number of permutations considered by the optimizer, but our fix was to re-write the query, to join only the dozen or so tables that were actually needed by the query.</p> <p>(To be honest here, an initial immediate short-term "band aid" was to schedule an earlier morning run of the same query run by the report. That was sufficient. The subsequent user-initiated report run found the prepared statement, and avoided the hard parse. (Of course that wasn't a "fix" for the problem, it just moved the problem earlier in the morning, when it wasn't noticed.)</p> <p>Our next step would have (probably) been to go with a stored outline, to get a stable query plan.</p> <p>Of course, statement reuse (avoiding the hard parse, using bind variables) is the normative pattern in Oracle, improves performance and scalability, yada, yada, yada.</p> <p>This anecdotal incident may be entirely different than the problem you are observing.</p> <p><hr /></p> <p><strong>hard parse performance bottleneck</strong> (continued)</p> <p>Back to your performance issue.</p> <p>I'm wondering if perhaps statistics are non-existent, and the optimizer is spending a lot of time gathering statistics before it prepares a query plan. That's one of the first things I would check, that statistics are collected on all of the referenced tables, indexes and indexed columns.</p> <p>If your query joins a large number of tables, the CBO may be considering a huge number of permutations for join order.</p> <p>A discussion of Oracle tracing is beyond the scope of this answer, but it's the next step.</p> <p>I'm thinking you are probably going to want to trace events 10053 and 10046.</p> <p>Here's a link to an "event 10053" discussion by Tom Kyte you may find useful:</p> <p><a href="http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11%5FQUESTION%5FID:63445044804318" rel="nofollow">http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:63445044804318</a></p> <p>HTH</p> http://stackoverflow.com/questions/869214/where-x-in-5-vs-where-x-5-why-use-in/869326#869326 1 Answer by spencer7593 for WHERE x IN (5) vs WHERE x = 5 ... why use IN? spencer7593 2009-05-15T15:21:55Z 2009-05-28T17:35:59Z <p>No, it's not a trick. The two statements:</p> <pre><code>SELECT * FROM pages WHERE is_visible IN ($visibility) SELECT * FROM pages WHERE is_visible = $visibility </code></pre> <p>are nearly equivalent. We observe that the two statements are equivalent in the trivial case, for example, when <code>$visibility</code> is a scalar with a value of 1.</p> <p>But the statements are <strong>not</strong> equivalent in the non-trivial cases when <code>$visibility</code> contains something else. We can observe a significant difference in behavior of the two forms. Consider what happens with each form when <code>$visibility</code> is a string containing these example values:</p> <pre> '1,2,3' '1 OR 1=1' 'select v.val from vals v' </pre> <p>We observe a significant difference in the resultant SQL statements generated from the two forms:</p> <pre> SELECT * FROM pages WHERE is_visible IN (1,2,3) SELECT * FROM pages WHERE is_visible = 1,2,3 </pre> <pre> SELECT * FROM pages WHERE is_visible IN (1 OR 1=1 ) SELECT * FROM pages WHERE is_visible = 1 OR 1=1 </pre> <p><hr /></p> <p>A large concern here, with either form of the statement, is the potential for SQL injection. If <code>$visibility</code> is intended to be a scalar value, then using a bind variable in the statement is a more secure approach, since it avoids anyone from sliding 'extra' SQL syntax into the statement. (Of course, using bind variables doesn't prevent all SQL injection, but it is suitable approach to closing one hole. Using a bind variable will also improve scalability, at least on some DBMS platforms such as Oracle.)</p> <p>Consider what happens when we use a bind variable (placeholder), which we know will <em>NOT</em> be interpreted as SQL syntax. We observe that the two statements <strong>ARE</strong> indeed equivalent:</p> <pre> SELECT * FROM pages WHERE is_visible IN ( ? ) SELECT * FROM pages WHERE is_visible = ? </pre> <p>for any value supplied for the bind variable.</p> <p>HTH</p> http://stackoverflow.com/questions/912513/how-do-i-use-t-sqls-exists-keyword/912825#912825 3 Answer by spencer7593 for How do I use T-SQL's Exists keyword? spencer7593 2009-05-26T21:21:44Z 2009-05-28T14:36:25Z <p>To answer your question about using the <strong>EXISTS</strong> keyword, here is an example query that uses an EXISTS predicate, based on the query as currently given in your question.</p> <pre> SELECT t.* FROM tblTransaction t WHERE EXISTS ( SELECT 1 FROM tblTenantTransCode ttc JOIN tblCheckbookCode cc ON (cc.ID = ttc.CheckbookCode AND cc.Description='Rent Income') WHERE ttc.ID = t.TransactionCode ) </pre> <p><hr /></p> <p><strong>Additional Details:</strong> </p> <p>We all recognize that there are a variety of SQL statements that will return the result set that meets the specified requirements. And there are likely going to be differences in the observed performance of those queries. Performance is particularly dependent on the DBMS, the optimizer mode, the query plan, and the statistics (number of rows and data value distribution).</p> <p>The <code>EXISTS</code> makes it clear we aren't interested returning expressions from tables in the subquery. It logically separates the subquery from the outer query, in a way that a <code>JOIN</code> does not.</p> <p>Another advantage of using <code>EXISTS</code> is that avoids returning duplicate rows that would be (might be) returned if you were to instead use a <code>JOIN</code>.</p> <p>An <code>EXISTS</code> predicate can be used to test for the existence of any related row in a child table, without requiring a join. For example, the following query returns a set of all orders that have at least one associated line_item:</p> <pre> SELECT o.* FROM order o WHERE EXISTS ( SELECT 1 FROM line_item li WHERE li.order_id = o.id ) </pre> <p>Note that the subquery doesn't need to find ALL matching line items, it only needs to find one row in order to satisfy the condition.</p> <p>A <code>NOT EXISTS</code> predicate is also useful, for example, to return a set of orders that do <strong>not</strong> have any associated line_items.</p> <pre> SELECT o.* FROM order o WHERE NOT EXISTS ( SELECT 1 FROM line_item li WHERE li.order_id = o.id ) </pre> <p>Of course, <code>NOT EXISTS</code> is just one alternative. An equivalent result set could be obtained using an OUTER join and an IS NULL test (assuming we have at least one expression available from the line_item table that is NOT NULL)</p> <pre> SELECT o.* FROM order o LEFT JOIN line_item li ON (li.order_id = o.id) WHERE li.id IS NULL </pre> <p>There is a lot of discussion (relating to answers to the original question) about needing to use an <code>IN</code> predicate, or needing to use an <code>INNER JOIN</code>. It's not really a matter that those constructs are needed. Actually, the query could be written without an <code>IN</code> and without an <code>INNER JOIN</code>. It could be written using just the <code>EXISTS</code> predicate. (Note that the title of the OP question did ask about how to use the EXISTS keyword.)</p> <p>This is not my first choice for how to write the query, but the result set returned does satisfy the specified requirements:</p> <pre> SELECT t.* FROM tblTransaction t WHERE EXISTS ( SELECT 1 FROM tblTenantTransCode ttc WHERE ttc.ID = t.TransactionCode AND EXISTS ( SELECT 1 FROM tblCheckbookCode cc WHERE cc.ID = ttc.CheckbookCode AND cc.Description = 'Rent Income' ) ) </pre> <p>Of primary importance, the query should return a correct result set, one that satisfies the specified requirements, given all possible sets of conditions. Some of the queries presented as answers here do <em>NOT</em> return the requested result set, or if they do, they happen to do so by accident. Some of the queries will work if we pre-assume something about the data, such that some columns are <code>UNIQUE</code> and <code>NOT NULL</code>.</p> <p><strong>Performance differences</strong></p> <p>Sometimes a query with an <code>EXISTS</code> predicate will not perform as well as a query with a <code>JOIN</code> or an <code>IN</code> predicate. In some cases, it may perform better. (With the <code>EXISTS</code> predicate, the subquery only has to find one row that satisfies the condition, rather than finding ALL matching rows, as would be required by a <code>JOIN</code>.)</p> <p>Performance of various query options is best gauged by observation.</p> http://stackoverflow.com/questions/905188/creating-another/916885#916885 0 Answer by spencer7593 for Creating another spencer7593 2009-05-27T16:58:52Z 2009-05-27T16:58:52Z <p>Let me take a quick guess here. The problem you are having is that the object names are case sensitive. The quick fix is to enclose the object names in double quotes, like this.</p> <pre><code>GRANT EXECUTE ON SYS."/1005bd30_LnkdConstant" TO mynewpublicrole; </code></pre> <p>You indicate that you "couldn't grant [EXECUTE ON] SYS./1005bd30_LnkdConstant" to a role.<br /> I take that to mean that when you ran the GRANT statement, Oracle raised an exception, most likely, </p> <pre><code> ORA-00903: invalid table name </code></pre> <p>Enclosing the objectname in double quotes (as shown in the example) should fix that problem.</p> <p>It's not possible to answer the question whether your new role needs EXECUTE privilege on those objects or not. Well, the role doesn't necessarily need them. The question is whether the user needs them or not (whether granted directly, or granted indirectly through roles.) That can be determined through thorough testing.</p> <p><hr /></p> <p>Some other comments.</p> <p>If your intention is to create a new role and grant that role to all users, I don't see that security is changed or improved. So, I'm going to assume that is not the case. </p> <p>It would appear you are trying to apply the principle of "least privilege". I applaud that effort.</p> <p>One of the most common patterns I see application developers follow is to have the application connect to the database as the owner of the schema objects. What that means is that the application has all sorts of privileges it probably doesn't need, e.g. DROP TABLE, ALTER PROCEDURE, etc.</p> <p>The pattern we use is to have an "OWNER" user that owns the schema objects, and a separate "APP" user that has specific privileges it needs on the "OWNER" objects, and synonyms for the "OWNER" objects. (The synonyms allow the OWNER.object to be referenced without being qualified with the OWNER.) It almost goes without saying, we do not grant privileges to PUBLIC, we grant to roles where needed.</p> <p>I mention this because it's a pattern we use for implementing the principle of "least privilege".</p> <p><hr /></p> <p>For other security concerns, I recommend you review the "Oracle Security Checklist" white paper:</p> <p><a href="http://www.oracle.com/technology/deploy/security/database-security/pdf/twp%5Fsecurity%5Fchecklist%5Fdatabase.pdf" rel="nofollow">http://www.oracle.com/technology/deploy/security/database-security/pdf/twp_security_checklist_database.pdf</a></p> <p><hr /></p> <p>Some other possible exceptions you may have encountered when executing the GRANT statement: </p> <pre><code> ORA-01031: insufficient privileges </code></pre> <p>or</p> <pre><code> ORA-04042: procedure, function, package, or package body does not exist. </code></pre> <p>In either of those cases, make sure you connect to the database as SYS (SYSDBA) to grant the privileges. We almost always grant privileges as the owner of the object, rather than have some other user as the GRANTEE. I almost never use the "WITH GRANT OPTION" on object privileges. It's a simpler model, and avoids any potential problem with dependency trees.</p> http://stackoverflow.com/questions/843748/is-this-good-membership-payment-database-schema/870777#870777 2 Answer by spencer7593 for Is this good membership payment database schema? spencer7593 2009-05-15T20:42:43Z 2009-05-15T20:48:37Z <p>I concur with the previous answers from jtyost2 and Yishai.</p> <p>One other note, our convention is to name Entity tables in the singular, matching the class name. That is, we name one row (we name one instance of the class) rather than naming the set. The question we ask is, one row in this table represents one what? And we use that singular name for the class and for the table. (Anticipating the objections, yes, I do recognize that other developers and other frameworks follow the 'pluralize the table name' convention. Rails is even smart enough at pluralization to generate a "people" table from a Person class.)</p> <p>But when table names start getting pluralized, I notice that often only some of the table names get pluralized, and it ends up being a mix of singular and pluralized names.</p> <pre><code>`partner_id` `order_id` </code></pre> <p>Your foreign key columns are named exactly the way we would name them. The convention we follow for a foreign key column is to use the name the parent table, followed by _id. For multiple relationships to the same table, we use the name of the role in addition to or in place of the table name.</p> <p>I would also suggest adding the foreign key constraint definitions in the database, even if the MyISAM engine doesn't enforce them.</p> <p>Add a primary key constraint on the ID column on each table (it seems to be missing from the <code>partner</code> table.</p> <p>Identify natural keys with a unqiue index.</p> <p>It seems to me there are two models for payments:</p> <ul> <li>one payment in full for each order</li> </ul> <p>This is the model that Amazon seems to use. There may bonus coupons and credits applied to an order, but when it comes down to the payment, I make exactly one payment for the order.</p> <ul> <li>payments made to an account balance</li> </ul> <p>The other model is to use an account, and to apply charges, credits and payments to the account. This is the model commonly used by utilities like the telephone company. This allows for concepts like current balance and amount due. </p> <p>Your design seems unconventional in that respect. There's no notion of a customer account. Yet, it seems like there will be multiple payments for one order.</p> http://stackoverflow.com/questions/865215/constituents-of-a-good-relational-database-design/870467#870467 3 Answer by spencer7593 for Constituents of a good relational database design spencer7593 2009-05-15T19:41:20Z 2009-05-15T19:57:46Z <p>For an OLTP system, the primary key for all Entity tables should be defined as:</p> <ul> <li>simple (single column, basic datatype)</li> <li>anonymous (meaningless, carries no semantic meaning)</li> <li>immutable (value will never be changed once assigned)</li> <li>unique (no duplicate values allowed)</li> <li>not null (no nulls allowed)</li> <li>enforced by declarative constraint(s)</li> </ul> <p>Some authors refer to these qualifications amounting to a "surrogate" or an "artificial" primary key.</p> <p>I've not been burned by following these guidelines for a primary key for all "Entity" tables managed by an application.</p> <p>I have witnessed application users and developers burned by not following these guidelines. Just as one example, I was called in to assist in a rewrite of a "pension" system which used social security number as a primary key for a pension. Payees receiving two or more pension payments had "dummy" social security numbers assigned. The users added handwritten note of the 'real' social security number on printed reports, and manual corrections were made when reporting to the IRS.</p> <p>The database had to be modified, and a whole bunch of application code had to be changed, because the database and application had been designed around a "natural key" which was <em>almost</em> unique.</p> <p><hr /></p> <p>My personal preference is to give the column name "ID" to the primary key column of each table. I also prefer for the primary key values to be unique within the schema.</p> <p>For a non-Entity table (that is, a relationship table, that resolves a many-to-many relationship between entity tables, and that has no attributes of its own and no possibility of child tables, then I will consider using the combination of the two foreign keys as a primary key. Such as "relationship" table is not mapped to an object in the application. Often however, I find that the relationship itself may have some attributes of its own, or there is a possibility that it will be a parent to another table. So, it doesn't hurt to go ahead and add a single column "ID" to the table, as well as the unique constraint on the combination of two foreign keys.</p> <p><hr /></p> <p>Of course, most Entity tables will also have a "natural key", which will consist of one or more columns or expressions. The individual columns and/or expressions that compose the natural key should be NOT NULL and the combination should be UNIQUE, and those constraints should be enforced by declarative constraints in the database.</p> http://stackoverflow.com/questions/869055/oracle-how-to-have-an-out-ref-cursor-parameter-in-a-stored-procedure/869129#869129 0 Answer by spencer7593 for Oracle - How to have an out ref cursor parameter in a stored procedure? spencer7593 2009-05-15T14:45:18Z 2009-05-15T17:09:49Z <p>I don't like to answer a question with a question. But your question has raised two questions:</p> <p>1) You say it "doesn't work". I take that to mean that Oracle is returning an exception when you execute the statement. What is the error message Oracle is returning? It should start with ORA-nnnnn and be followed by some text.</p> <p>2) What purpose would be served by moving a PROCEDURE out of a PACKAGE? There are a few more lines of code with the package, the procedure signature repeated in both the package spec and the package body, but having the procedure within a package provides several important benefits.</p> <p><hr /></p> <p>To answer your question more directly:</p> <pre><code>CREATE OR REPLACE PROCEDURE get_info(o_cursor OUT sys_refcursor) IS BEGIN OPEN o_cursor FOR SELECT * FROM dual; END; / </code></pre> http://stackoverflow.com/questions/1244907/how-can-a-node-in-an-execution-plan-have-smaller-costs-than-its-child Comment by spencer7593 on How can a node in an execution plan have smaller costs than its child? spencer7593 2009-08-07T19:51:25Z 2009-08-07T19:51:25Z This is expected behavior. It's a limitation of EXPLAIN PLAN, it's not a problem. If you need to see detailed information about the actual performance of the statement and how the optimizer is selecting the plan, trace events 10046 and 10053. http://stackoverflow.com/questions/912513/how-do-i-use-t-sqls-exists-keyword/912768#912768 Comment by spencer7593 on How do I use T-SQL's Exists keyword? spencer7593 2009-06-24T14:45:57Z 2009-06-24T14:45:57Z +1 @Eric, now the statement looks like it will return the specified result set. But note what happens with the result set if there happen to be TWO (or more) rows in tblCheckbookCode with 'Rent Income' as Description, the JOIN query will return &quot;duplicate&quot; rows, using an EXISTS predicate avoids that problem. http://stackoverflow.com/questions/998231/how-can-i-optimize-a-dynamic-search-query-in-oracle/1001324#1001324 Comment by spencer7593 on How can I optimize a dynamic search query in Oracle spencer7593 2009-06-16T14:03:23Z 2009-06-16T14:03:23Z +1 this is the same approach I use, I favor developing a single STATIC sql statement that takes parameters, using a NULL value for a parameter such that the predicate evaluates to true. The benefit is that I have ONE statement I need to test, and ONE statement in the shared pool, rather than a whole herd of variations to try to tune. The next step, as Mac points out, is to cull out the &quot;popular&quot; cases, and have those static as well. It's not a silver bullet, but it is a VALID approach. http://stackoverflow.com/questions/995841/referential-integrity-constraint-is-automatically-disabling-in-oracle Comment by spencer7593 on referential integrity constraint is automatically disabling in oracle. spencer7593 2009-06-15T16:19:13Z 2009-06-15T16:19:13Z add the REENABLE clause in the control file see: <a href="http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/ldr_modes.htm#sthref1622" rel="nofollow">download.oracle.com/docs/cd/&hellip;</a> http://stackoverflow.com/questions/982819/sql-query-doubt-removing-prefix-characters/982821#982821 Comment by spencer7593 on SQL query doubt :removing prefix characters spencer7593 2009-06-11T22:16:29Z 2009-06-11T22:16:29Z if you're going to run an UPDATE, make sure you don't run it more than once... http://stackoverflow.com/questions/983862/sql-server-operator/983965#983965 Comment by spencer7593 on SQL Server *= Operator? spencer7593 2009-06-11T22:09:00Z 2009-06-11T22:09:00Z Actually, the syntax was ANSI-89 standard compliant. But as you point out, the syntax is now superseded and deprecated. http://stackoverflow.com/questions/983296/oracle-lag-between-commit-and-select/983551#983551 Comment by spencer7593 on Oracle lag between commit and select spencer7593 2009-06-11T21:55:43Z 2009-06-11T21:55:43Z +1 !!! I hadn't even considered COMMIT might other than IMMEDIATE WAIT or that transaction isolation level was other than READ COMMITTED. http://stackoverflow.com/questions/979868/sql-decode-on-column4-but-only-when-column5-is-distinct/979901#979901 Comment by spencer7593 on SQL decode on column4 but only when column5 is distinct spencer7593 2009-06-11T16:56:25Z 2009-06-11T16:56:25Z +1 As much as I like the SUM(DECODE(x,y,1,0)) construct, Vincent has the right approach here, http://stackoverflow.com/questions/981938/what-is-your-preferred-syntax-for-sql-aliases/981953#981953 Comment by spencer7593 on What is your preferred syntax for SQL aliases? spencer7593 2009-06-11T16:01:05Z 2009-06-11T16:01:05Z being able to read (and decipher) the SQL is A MUCH MORE IMPORTANT consideration than saving three keystrokes for an alias. (Don't use an alias if it's not needed, I'm fine with saving keystrokes... http://stackoverflow.com/questions/976449/sql-select-question/976518#976518 Comment by spencer7593 on SQL Select Question spencer7593 2009-06-10T16:52:34Z 2009-06-10T16:52:34Z @Scott: my answer is attracting negative votes. If i get more, I will be a &quot;good citizen&quot; and remove my answer. Maybe I will join the crowd and post an answer to the question you didn't ask &quot;How do I convert a formatted string into a datetime?&quot; http://stackoverflow.com/questions/976449/sql-select-question/976497#976497 Comment by spencer7593 on SQL Select Question spencer7593 2009-06-10T16:08:05Z 2009-06-10T16:08:05Z OP wants oldest six rows from EACH GROUP http://stackoverflow.com/questions/976449/sql-select-question/976502#976502 Comment by spencer7593 on SQL Select Question spencer7593 2009-06-10T16:07:26Z 2009-06-10T16:07:26Z OP wants oldest six record from EACH GROUP, not within a date range. http://stackoverflow.com/questions/976449/sql-select-question/976545#976545 Comment by spencer7593 on SQL Select Question spencer7593 2009-06-10T16:06:42Z 2009-06-10T16:06:42Z OP needs oldest 6 rows from EACH GROUP, not just oldest six records. http://stackoverflow.com/questions/781895/checking-for-time-range-overlap-the-watchman-problem-sql Comment by spencer7593 on Checking for time range overlap, the watchman problem [SQL] spencer7593 2009-06-10T15:36:01Z 2009-06-10T15:36:01Z +1 - i'm working on a similar problem, identifying disjoints AND overlaps http://stackoverflow.com/questions/970500/sql-stored-procedures-design-issue/970528#970528 Comment by spencer7593 on SQL stored procedures design issue spencer7593 2009-06-09T17:34:47Z 2009-06-09T17:34:47Z +1! tekBlues identifies what's &quot;bad&quot; about the approach, it's hard coding values into the stored procedure, whether it's id=3 or key='beer', when those values can change. (the primary key should be immutable, that is, once assigned, it should not change.)