User WW - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T06:44:06Zhttp://stackoverflow.com/feeds/user/14663http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/703730/what-is-the-name-of-this-anti-pattern4What is the name of this anti-pattern?WW2009-04-01T01:39:23Z2009-12-11T03:47:37Z
<p>Surely some of you have dealt with this one. It tends to happen when programmers get a bit too taken by OO and forget about performance and having a database.</p>
<p>For an example, lets say we have an Email table and they need to be sent by this program. At start-up, it looks for anything that needs to be sent as follows:</p>
<pre><code>Emails = find_every_damn_email_in_the_database();
FOR Email in Emails
IF !Email.IsSent() THEN Email.Send()
</code></pre>
<p>This is a good from a do-not-repeat-yourself perspective, but sometimes it's unavoidable and it should be:</p>
<pre><code>Emails = find_unsent_emails();
FOR Email in Emails
Email.Send()
</code></pre>
<p>Is there a name of this one?</p>
http://stackoverflow.com/questions/1868417/oracle-bug-select-returns-no-dupes-insert-from-select-has-duplicate-rows/1870883#18708830Answer by WW for Oracle bug? SELECT returns no dupes, INSERT from SELECT has duplicate rowsWW2009-12-09T00:34:57Z2009-12-09T00:34:57Z<p>I would suggest getting a plan on the query you are running and looking for a CARTESIAN JOIN in there. This could indicate a missing condition that is causing duplicated rows.</p>
http://stackoverflow.com/questions/1844221/currency-modeling-in-database/1844275#18442751Answer by WW for Currency modeling in databaseWW2009-12-04T01:19:20Z2009-12-04T01:19:20Z<p>You will need to use two columns. I would store the monetary amount in one column and the alpha currency code in another column. In some cases, you will have multiple amounts on a single row. e.g. shipping amount and tax amount may both be on the invoice record. You will need to decide if these will share the same currency or if you need two columns.</p>
<p>You should use the <a href="http://www.iso.org/iso/support/currency%5Fcodes%5Flist-1.htm" rel="nofollow">ISO standard</a> currency codes.</p>
http://stackoverflow.com/questions/1801636/law-of-demeter-violation-proves-useful-am-i-missing-something1Law of Demeter violation proves useful. Am I missing something?WW2009-11-26T05:04:37Z2009-11-26T13:38:00Z
<p>I have some code like this in my application. It writes out some XML:-</p>
<pre><code>public void doStuff( Business b, XMLElement x)
{
Foo f = b.getFoo();
// Code doing stuff with f
// b is not mentioned again.
}
</code></pre>
<p>As I understand it, the Law of Dementer would say this is bad. "Code Complete" says this is increasing coupling. This method should take "f" in the first place. </p>
<pre><code>public void doStuff( Foo f, XMLElement x)
{
// Code doing stuff with f
}
</code></pre>
<p>However, now I have come to change this code, and I do actually need to access a different method on <code>b</code>.</p>
<pre><code>public void doStuff( Business b, XMLElement x)
{
Foo f = b.getFoo();
// Code doing stuff with f
// A different method is called on b.
}
</code></pre>
<p>This interface has made life easier as the change is entirely inside the method. I do not have to worry about the many places it is called from around the application.</p>
<p>This suggests to me that the original design was correct. Do you agree? What am I missing?</p>
<p>PS. I do not think the behaviour belongs in b itself, as domain objects do not know about the external representation as XML in this system.</p>
http://stackoverflow.com/questions/1737103/sql-optimizing-query-to-have-few-io-operations/1737113#17371135Answer by WW for SQL : Optimizing query to have few IO operationsWW2009-11-15T09:48:27Z2009-11-15T09:48:27Z<pre><code>where
Flag like '%N%'
</code></pre>
<p>The above like makes it difficult for the database to answer this query efficiently. It has to look at every value of the "Flag" column and check for an "N" within the string.</p>
<p>Could this be changed to just <code>Flag = 'N'</code>?</p>
<p>If the answer is no, then the database is designed incorrectly. You should store one thing in a column, not multiple. Search for "database normalization".</p>
<p>You should consider re-writing the query as a join between the three tables rather than using the sub-select in the query list as you have.</p>
http://stackoverflow.com/questions/1729091/unit-test-a-method-that-creates-an-object/1736939#17369391Answer by WW for unit test a method that creates an objectWW2009-11-15T07:57:54Z2009-11-15T07:57:54Z<p>You might find <a href="http://misko.hevery.com/2008/08/29/my-main-method-is-better-than-yours/" rel="nofollow">this article</a> handy.</p>
<p>It discusses how object creation should be separated from the actual running of the application.</p>
http://stackoverflow.com/questions/1712562/isnt-there-a-point-where-encapsulation-gets-ridiculous/1712620#17126202Answer by WW for Isn't there a point where encapsulation gets ridiculous?WW2009-11-11T02:25:40Z2009-11-12T02:29:34Z<p>Maybe both options are a bit wrong, because neither version of the class has any behaviour. It's hard to comment further without more context.</p>
<p>See <a href="http://www.pragprog.com/articles/tell-dont-ask" rel="nofollow">http://www.pragprog.com/articles/tell-dont-ask</a></p>
<p>Now lets imagine that your <code>FeedItem</code> class has become wonderfully popular and is being used by projects all over the place. You decide you need (as other answers have suggested) validate the URL that has been provided.</p>
<p>Happy days, you have written a setter for the URL. You edit this, validate the URL and throw an exception if it is invalid. You release your new version of the class and everyone one using it is happy. (Let's ignored checked vs unchecked exceptions to keep this on-track).</p>
<p>Except, then you get a call from an angry developer. They were reading a list of feeditems from a file when their application starts up. And now, if someone makes a little mistake in the configuration file your new exception is thrown and the whole system doesn't start up, just because one frigging feed item was wrong!</p>
<p>You may have kept the method signature the same, but you have changed the semantics of the interface and so it breaks dependant code. Now, you can either take the high-ground and tell them to re-write their program right or you humbly add <code>setURLAndValidate</code>.</p>
http://stackoverflow.com/questions/1713248/index-on-date-type-column-in-oracle-not-used-when-query-is-run-from-java/1713380#17133802Answer by WW for Index on date type column in oracle not used when query is run from java WW2009-11-11T06:12:22Z2009-11-11T09:42:36Z<p>The difference may because of bind variables vs. literal values. You are not comparing the same things.</p>
<p>Try this in SQL*Plus:-</p>
<pre><code>explain plan for
select * from table1 where created_ts >= :1 and created_ts <= :2;
set markup html preformat on
set linesize 100
set pagesize 0
select plan_table_output
from table(dbms_xplan.display('plan_table',null,'serial'));
</code></pre>
<p>This will show you the plan Oracle will pick when using bind variables. In this scenario, Oracle has to make up a plan before you have provided values for your date range. It does not know if you are selecting only a small fraction of the data or all of it. If this has the same plan (full scan?) as your plan from java, at least you konw what is happening.</p>
<p>Then, you could consider:-</p>
<ol>
<li>Enabling bind peeking (but only after testing this does not cause anything else to go bad)</li>
<li>Carefully binding literal values from java in a way that does not allow SQL injection</li>
<li>Putting a hint in the statement to indicate it should use the index you want it to.</li>
</ol>
http://stackoverflow.com/questions/1392242/what-can-cause-a-materialized-view-in-oracle-10g-to-stop-fast-refreshing0What can cause a materialized view in Oracle 10g to stop fast refreshing?WW2009-09-08T06:03:09Z2009-11-06T10:09:29Z
<p>If I have materialized view in Oracle which is defined as <code>REFRESH FAST ON COMMIT</code> every 15 minutes. It works when initially created and refreshes happily. What can cause it to stop fast refreshing?</p>
<p>I can see that it has stopped refreshing based on this:</p>
<pre><code>select mview_name, last_refresh_date from all_mviews;
</code></pre>
http://stackoverflow.com/questions/1664701/how-do-you-stay-user-oriented-when-it-comes-to-your-long-term-project/1664842#16648423Answer by WW for How do you stay user-oriented when it comes to your long-term project?WW2009-11-03T02:15:38Z2009-11-03T02:15:38Z<p>I would suggest:-</p>
<ol>
<li>Sit with your users for a day as they use your application. You will see them doing all sorts of things, and immediately have a long list of ideas for improvement.</li>
<li>Talk to them about their problems, not their proposed solutions for your application. You should be better at software design than them; they should be better at understanding their problems.</li>
<li>Consider what you can do for your customer's customer to make their life easier.</li>
</ol>
http://stackoverflow.com/questions/1652995/in-oracle-is-it-possible-to-insert-or-update-a-record-through-a-view/1653080#16530807Answer by WW for In Oracle, is it possible to INSERT or UPDATE a record through a view?WW2009-10-31T01:22:18Z2009-11-01T22:36:37Z<p>Oracle has two different ways of making views updatable:-</p>
<ol>
<li>The view is "key preserved" with respect to what you are trying to update. This means the primary key of the underlying table is in the view and the row appears only once in the view. This means Oracle can figure out exactly which underlying table row to update OR</li>
<li>You write an instead of trigger.</li>
</ol>
<p>I would stay away from instead-of triggers and get your code to update the underlying tables directly rather than through the view.</p>
http://stackoverflow.com/questions/1536479/asking-for-opinions-one-sequence-for-all-tables/1636684#16366840Answer by WW for Asking for opinions : One sequence for all tablesWW2009-10-28T11:29:57Z2009-10-28T11:29:57Z<p>There are a couple of disadvantages of using a single sequence:-</p>
<ul>
<li>reduced concurrency. Handing out the next sequence value involves synchronisation. In practice, I do not think this is likely to be a big problem</li>
<li>Oracle has special code when maintaining btree indexes to detect monotonically increasing values and balance the tree approriately</li>
<li>The CBO might have a better time estimating range queries on the index (if you ever did this) if most values were filled in</li>
</ul>
<p>An advantage might be that you can determine the order of inserts amongst different tables.</p>
http://stackoverflow.com/questions/1603648/how-to-convince-a-client-that-all-next-projects-enhancements-should-be-done-via-t/1610726#16107261Answer by WW for How to convince a client that all next projects/enhancements should be done via TDD (with some agile practices)?WW2009-10-23T00:06:44Z2009-10-23T00:06:44Z<p>How you run your project internally is your business. Don't involve them in this decision. They are not experts in software development processes. Ask them about business requirements and things they know about.</p>
<p>Sound like you are doing this to improve project quality. Do you think it will cost more to do TDD? Why work to convince them of something and then ask their approval? Did you ask if you could do waterfall on the last project?</p>
http://stackoverflow.com/questions/1553909/is-there-any-difference-between-class-imports-and-package-imports-in-java/1553929#15539295Answer by WW for Is there any difference between class imports and package imports in Java?WW2009-10-12T10:58:33Z2009-10-12T10:58:33Z<p>The imports you choose to use only make a compile-time difference when resolving class names.</p>
<p>So the only advantages/disadvantages apply to readability.</p>
<p>Only importing the minimum you require seems better because someone can look at what you actually are using. That said, the IDE probably handles this and it's a moot point.</p>
http://stackoverflow.com/questions/1552096/noob-oracle-security-question/1552391#15523913Answer by WW for Noob Oracle Security questionWW2009-10-12T02:11:19Z2009-10-12T02:11:19Z<p>To access the code of stored procedures, you need to select from ALL_SOURCE:-</p>
<pre><code>SELECT owner, name, text
FROM all_source
WHERE owner = '<your schema name>'
ORDER BY owner, name, text, type, line;
</code></pre>
<p>If you have access to run something, you can see it in ALL_SOURCE. So you could login with the same username/password as the application and run the above select.</p>
http://stackoverflow.com/questions/152435/code-coverage-for-pl-sql/1512447#15124470Answer by WW for Code coverage for PL/SQLWW2009-10-03T00:46:45Z2009-10-03T00:46:45Z<p>There is a package you can install called <a href="http://download.oracle.com/docs/cd/B10500%5F01/appdev.920/a96612/d%5Fprofil.htm" rel="nofollow">DBMS_profiler</a>. With this, you can start a profile and Oracle will store data in special tables. Then stop the profile and report from those tables.</p>
http://stackoverflow.com/questions/1462854/read-committed-database-isolation-level-in-oracle/1462990#14629903Answer by WW for READ COMMITTED database isolation level in oracleWW2009-09-22T22:33:52Z2009-09-22T22:33:52Z<p>You could consider using a unique, function based index to let Oracle handle the constraint of only having a one row with activated flag set to 1.</p>
<pre><code>CREATE UNIQUE INDEX MODEL_IX ON MODEL ( DECODE(ACTIVATED, 1, 1, NULL));
</code></pre>
<p>This would stop more than one row having the flag set to 1, but does not mean that there is always one row with the flag set to 1.</p>
http://stackoverflow.com/questions/552053/how-to-sort-and-display-mixed-lists-of-alphas-and-numbers-as-the-users-expect3How to sort and display mixed lists of alphas and numbers as the users expect?WW2009-02-16T02:09:37Z2009-09-19T22:32:45Z
<p>Our application has a <code>CustomerNumber</code> field. We have hundreds of different people using the system (each has their own login and their own list of <code>CustomerNumber</code>s). An individual user might have at most 100,000 customers. Many have less than 100.</p>
<p>Some people only put actual numbers into their customer number fields, while others use a mixture of things. The system allows 20 characters which can be A-Z, 0-9 or a dash, and stores these in a VARCHAR2(20). Anything lowercase is made uppercase before being stored.</p>
<p>Now, let's say we have a simple report that lists all the customers for a particular user, sorted by Customer Number. e.g.</p>
<pre><code>SELECT CustomerNumber,CustomerName
FROM Customer
WHERE User = ?
ORDER BY CustomerNumber;
</code></pre>
<p>This is a naive solution as the people that only ever use numbers do not want to see a plain alphabetic sort (where "10" comes before "9").</p>
<p>I do not wish to ask the user any unnecessary questions about their data.</p>
<p>I'm using Oracle, but I think it would be interesting to see some solutions for other databases. Please include which database your answer works on.</p>
<p>What do you think the best way to implement this is?</p>
http://stackoverflow.com/questions/139411/is-a-gantt-chart-larger-than-a-single-page-ever-useful2Is a Gantt Chart larger than a single page ever useful?WW2008-09-26T13:10:56Z2009-09-14T07:32:39Z
<p>I've worked on a few projects managed through the use of a Gantt chart. Some of these have has a massive number of tasks and the project manager spends all their time wrestling with MS Project instead of making good choices.</p>
<p>I can see the point if there are a number of separate teams working towards something (e.g. legal, IT, marketing) to manage a project overall.</p>
<p>Has anyone participated in a software development project that has used a Gantt chart with any success?</p>
http://stackoverflow.com/questions/1397326/which-parts-of-an-address-should-be-required/1397350#13973500Answer by WW for Which parts of an address should be required?WW2009-09-09T03:06:57Z2009-09-09T03:06:57Z<p>There are no states in New Zealand, so it should definately be optional. So I think you have the right answer in your question.</p>
http://stackoverflow.com/questions/1355043/problem-when-selecting-by-rowid-inside-procedure/1355621#13556210Answer by WW for Problem when select'ing by ROWID inside procedureWW2009-08-31T02:56:00Z2009-08-31T02:56:00Z<p>Can you get an explain plan of this:</p>
<pre><code>select TABLA from BITACORA where rowid = 'AAAEC5AAFAAAADHAAC';
</code></pre>
<p>and this:</p>
<pre><code>select TABLA from BITACORA where rowid = :1;
</code></pre>
<p>It depends on which version of Oracle you are on, but try this:</p>
<pre><code>explain plan for
select TABLA from BITACORA where rowid = 'AAAEC5AAFAAAADHAAC';
select plan_table_output from table(dbms_xplan.display('plan_table',null,'serial'));
delete from plan table;
</code></pre>
<p>And then this:</p>
<pre><code>explain plan for
select TABLA from BITACORA where rowid = :1;
select plan_table_output from table(dbms_xplan.display('plan_table',null,'serial'));
delete from plan table;
</code></pre>
<p>Update your question with the output and that might give some further clues.</p>
http://stackoverflow.com/questions/1334137/why-is-it-more-costly-to-discover-a-defect-later-in-the-process/1334166#13341662Answer by WW for Why is it more costly to discover a defect later in the process?WW2009-08-26T11:49:36Z2009-08-26T11:49:36Z<ol>
<li>No-one ever understands the code as well as you do as you are writing it.</li>
<li>People may have come to depend on the bug being there.</li>
<li>You may have to fix up lots of bad data that the bug has saved away.</li>
<li>You may have to roll out a new version or patch of your software.</li>
<li>Your helpdesk may have to field a whole heap of calls.</li>
<li>You may have to fill in bunches of paperwork explaining why that bug exists and what problems it causes, and what you are going to do to make sure it never, ever happens again.</li>
</ol>
http://stackoverflow.com/questions/1297640/finding-missing-sequence-in-a-table/1297919#12979190Answer by WW for Finding missing sequence in a tableWW2009-08-19T05:19:48Z2009-08-19T05:19:48Z<p>This returns a list of the start-end of each missing range:</p>
<pre><code>select s, e from
(select s, rownum sr
from
(
select tracking_no + 1 s
from table_1
where id_value = 10
MINUS
select tracking_no
from table_1
where id_value = 10
order by s
)),
(
select e, rownum er
from
(
select tracking_no - 1 e
from table_1
where id_value = 10
MINUS
select tracking_no
from table_1
where id_value = 10
order by e
))
where er-1 = sr;
</code></pre>
http://stackoverflow.com/questions/696239/will-software-automation-take-over-industry-in-future/1293676#12936760Answer by WW for Will software automation take over industry in future?WW2009-08-18T13:00:36Z2009-08-18T13:00:36Z<p>My feeling is that software engineering is in it's infancy. It's like we're bridge builders and with good luck and heartfelt best efforts we've just managed to cross a little stream. Or perhaps we're more like alchemists, on the verge of becoming true chemists.</p>
<p>I don't think we understand what we are doing with software anywhere near well enough to automate it but the levels of abstraction are getting higher.</p>
<p>The real challenges are to understand what people want, will understand and need. How can you automate that?</p>
http://stackoverflow.com/questions/1269472/help-me-refactor-this-loop0Help me refactor this loopWW2009-08-13T00:40:09Z2009-08-13T17:00:58Z
<p>I am working on the redesign of an existing class. In this class about a 400-line while loop that does most of the work. The body of the loop is a minefield of if statements, variable assignments and there is a "continue" in the middle somewhere. The purpose of the loop is hard to understand.</p>
<p>In pseudocode, here's where I'm at the redesign:</p>
<pre><code>/* Some code here to create the objects based on config parameters */
/* Rather than having if statements scattered through the loop I */
/* create instances of the appropriate classes. The constructors */
/* take a database connection. */
FOR EACH row IN mySourceOfData
int p = batcher.FindOrCreateBatch( row );
int s = supplierBatchEntryCreator.CreateOrUpdate( row, p );
int b = buyerBatchEntryCreator.CreateOrUpdate( row, p );
mySouceOfData.UpdateAsIncludedInBatch( p, s, b);
NEXT
/* Allow things to complete their last item */
mySupplierBatchEntry.finish();
myBuyerBatchEntry.finish();
myBatcher.finish();
/* Some code here to dispose of things */
RETURN myBatch.listOfBatches();
</code></pre>
<p>Inside FindOrCreateBatch() it figures out using some rules if a new batch needs to be created or if an existing one can be used. The different implementations of this interface will have different rules for how it finds them, etc. The return value is the surrogate key (id) from the database of the payment batch that it found or created. This id is required by following processes that take p as a parameter.</p>
<p>This is an improvement over where I started, but I have an uneasy feeling about the class containing this loop. </p>
<ol>
<li>It doesn't seem to a be a domain object, it's more of a "Manager" or "Controller" type class.</li>
<li>It seems to be getting inbetween batcher and supplierBatchEntryCreator (and the other classes). At the moment only an int is passed, but if that changes all three classes need to change. This seems like a Law of Dementer violation.</li>
</ol>
<p>Any suggestions, or is this ok? The actual language is java.</p>
http://stackoverflow.com/questions/1272136/encoding-special-characters-in-xml/1272164#12721642Answer by WW for Encoding special characters in xmlWW2009-08-13T14:04:27Z2009-08-13T14:04:27Z<p>If you are building up your XML via string concatenation then you need to stop doing that and start using a library (e.g. DOM) in your language to create the XML.</p>
<p>The library will handle encoding correctly.</p>
http://stackoverflow.com/questions/1268986/oracle-interface/1269912#12699123Answer by WW for Oracle InterfaceWW2009-08-13T03:38:35Z2009-08-13T03:38:35Z<p>I would go with the synonymn approach.</p>
<p>A synonymn is syntactic sugar designed to avoid such problems as having to use database.schema.table everywhere. If anyone is wondering what the synonymn does, it's right there in the data dictionary for them to query so it's pretty straightforward.</p>
<p>That said, this approach is not much different from using a view. Why is building on top of the view more complicated than on top of the table? I'm assuming the view basically selects all the columns and all the rows from the remote db without joining to anything.</p>
http://stackoverflow.com/questions/1269545/what-advantages-do-constraints-provide-to-a-database/1269804#12698042Answer by WW for What advantages do constraints provide to a database?WW2009-08-13T03:00:06Z2009-08-13T03:00:06Z<p>The following, assuming you get the constraint right in the first place:-</p>
<ul>
<li>Your data will be valid with respect to the constraint</li>
<li>The database knows your data will be valid with respect to the constraint and can use this when querying or updating the database (e.g. removing an unnecessary join for a query on a view)</li>
<li>The constraint is documented for future users of the database</li>
<li>A violation of the constraint will be caught as soon as possible; not in some later unrelated process that fails</li>
</ul>
http://stackoverflow.com/questions/1235544/modeling-one-to-constant-relationship/1235869#12358695Answer by WW for Modeling One-to-Constant RelationshipWW2009-08-05T21:29:26Z2009-08-05T21:29:26Z<p>Doing this so that it is sound and correct even when multiple sessions are doing updates is not easy. You will get yourself in a mess if you try this with triggers, and Oracle's declarative constraints are not powerful enough to express this.</p>
<p>It can be done as follows:-</p>
<ol>
<li>Create a materialized view log on both the parent and the child tables</li>
<li>Create a materialized join view that joins them together and counts the number of children grouped by the parent. This must be REFRESH FAST ON COMMIT</li>
<li>Put a constraint on the materialized join view that the count of child records must equal "n" (your database constant)</li>
</ol>
<p>You can then do a series of insert/update/delete statements. When you commit, the materialized view will refresh and if the condition is not met you will get a constraint violation error at that point.</p>
<p>A bonus bit of trickery is to only include rows that fail the constraint into the materialized view (HAVING count(ChildId) <> 5) so you do not waste any storage space.</p>
http://stackoverflow.com/questions/1019940/oracle-performance-with-multiple-same-column-indexes/1231674#12316740Answer by WW for Oracle performance with multiple same column indexesWW2009-08-05T07:29:57Z2009-08-05T07:29:57Z<p>The second index is different and is not redundant per se.</p>
<p>How about this query:</p>
<pre><code>SELECT DISTINCT ColA FROM TABLE WHERE ColA IS NOT NULL;
</code></pre>
<p>Oracle can answer this question entirely from Index 2. Now, index 2 would be expected to be small (less blocks) than index 1. This means, it is a better index for the above query.</p>
<p>If your application never does a query that suits Index2 better than Index1, then it is redundant for your application.</p>
<p>Indexes are always a performance tradeoff. When an insert, update or delete is performed there is extra work to do in order to maintain each additional index.</p>
<p>Is this more than compensated for by the increased performance provided by the index? Depends on your application and data usage.</p>
http://stackoverflow.com/questions/1801636/law-of-demeter-violation-proves-useful-am-i-missing-something/1802029#1802029Comment by WW on Law of Demeter violation proves useful. Am I missing something?WW2009-12-03T04:53:59Z2009-12-03T04:53:59ZThankyou for this answer. I am indeed calling stuff on "f". In my application, creating a Business is easy (no complex dependencies, no work in constructor) so maybe that's why there is no pain here.http://stackoverflow.com/questions/1760456/should-i-encapsulate-my-ioc-container/1760482#1760482Comment by WW on Should I encapsulate my IoC container?WW2009-11-19T02:49:22Z2009-11-19T02:49:22ZI don't see why the downvote, surely this question is a matter of opinion?http://stackoverflow.com/questions/626267/what-situations-cause-oracle-packages-to-become-invalid/626658#626658Comment by WW on What Situations Cause Oracle Packages to Become Invalid?WW2009-11-16T04:48:52Z2009-11-16T04:48:52ZIt's a pity there's not a pragma or something for "I don't care about package state change"http://stackoverflow.com/questions/482280/what-was-the-best-commodore-64-game-ever/482290#482290Comment by WW on What was the best Commodore 64 Game Ever?WW2009-11-15T09:55:12Z2009-11-15T09:55:12Z<a href="http://www.lemon64.com/forum/viewtopic.php?p=305530" rel="nofollow">lemon64.com/forum/viewtopic.php?p=305530/…</a>http://stackoverflow.com/questions/1737103/sql-optimizing-query-to-have-few-io-operationsComment by WW on SQL : Optimizing query to have few IO operationsWW2009-11-15T09:45:29Z2009-11-15T09:45:29ZIt would help if you gave details about which database, and about how many rows in the tables.http://stackoverflow.com/questions/1713248/index-on-date-type-column-in-oracle-not-used-when-query-is-run-from-java/1713380#1713380Comment by WW on Index on date type column in oracle not used when query is run from java WW2009-11-11T21:46:53Z2009-11-11T21:46:53ZToo much to say for a comment, but see this: <a href="http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:492078000346228806" rel="nofollow">asktom.oracle.com/pls/asktom/…</a>http://stackoverflow.com/questions/1713248/index-on-date-type-column-in-oracle-not-used-when-query-is-run-from-java/1713380#1713380Comment by WW on Index on date type column in oracle not used when query is run from java WW2009-11-11T12:17:34Z2009-11-11T12:17:34ZNo -> Not usually. Maybe it only runs once a day with certain values and there will only be one hard parse every day? Maybe it's better to live with the hard-parse and allow the CBO to come up with a better plan based on the query?http://stackoverflow.com/questions/1704393/database-audit-table/1704408#1704408Comment by WW on database audit tableWW2009-11-09T23:03:22Z2009-11-09T23:03:22Z@skaffman: A competant ORM layer should not have to read rows back to the application just to update them. Unless it does that for every update, it can't do the auditing. Also, lots of IFs there that may cease to be true in the future even if they are right now.http://stackoverflow.com/questions/1665814/how-to-get-stored-procedures-returning-valueComment by WW on How to get stored procedure's returning value?WW2009-11-03T10:19:22Z2009-11-03T10:19:22ZThis is not the answer to your question, but that's a horrible bit of PL/SQL. If two sessions call that at the same time they'll get the same answer and clash. You should use an Oracle sequence.http://stackoverflow.com/questions/1611716/is-behaviour-driven-development-about-design-or-analysisComment by WW on Is behaviour driven development about design or analysis?WW2009-11-03T02:13:04Z2009-11-03T02:13:04ZBDD is reminicent of psychologies Behaviorism: <a href="http://en.wikipedia.org/wiki/Behaviorism" rel="nofollow">en.wikipedia.org/wiki/Behaviorism</a>http://stackoverflow.com/questions/433009/what-tablespace-are-oracle-sequences-stored-inComment by WW on What tablespace are Oracle sequences stored in?WW2009-10-27T11:16:31Z2009-10-27T11:16:31ZMaybe you should consider modifying the privledges via GRANT/REVOKE rather than taking this tablespace approach. Privledges are designed to let you control who can insert/update/delete/select, not tablespaces.http://stackoverflow.com/questions/1584316/developing-games-how-are-things-that-take-more-than-one-game-loop-performedComment by WW on Developing Games - How are things that take more than one game loop performed?WW2009-10-18T21:09:18Z2009-10-18T21:09:18ZSee <a href="http://gafferongames.com/game-physics/fix-your-timestep/" rel="nofollow">gafferongames.com/game-physics/fix-your-timestep/…</a>http://stackoverflow.com/questions/104680/what-are-some-good-security-questions/104705#104705Comment by WW on What are some good security questions?WW2009-10-14T10:51:59Z2009-10-14T10:51:59ZI've seen a database of such questions. They included some tricky ones as: "What colour is grass?" and "What am I trying to reset?"http://stackoverflow.com/questions/1553882/oracle-problems-with-dates/1553900#1553900Comment by WW on Oracle problems with DATEsWW2009-10-12T11:10:57Z2009-10-12T11:10:57ZI generally use a TO_CHAR() in the SQL or bind to a JDBC data type. Seems better than setting a session parameter.http://stackoverflow.com/questions/1529745/comparing-numbers-as-string-in-oracleComment by WW on Comparing numbers as string in oracleWW2009-10-07T06:06:36Z2009-10-07T06:06:36ZWhat column datatype are these numbers stored in? Can you write a little script that shows the problem?