WW

3,995
reputation
314 views

Registered User

name WW
member for 1 year
seen 1 hour ago
website
location AU
age
3h
answered Oracle bug? SELECT returns no dupes, INSERT from SELECT has duplicate rows
Dec
4
answered Currency modeling in database
Dec
3
accepted Analyzing web application usage and user patterns using DB/application server logs?
Dec
3
comment Law of Demeter violation proves useful. Am I missing something?
Thankyou 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.
Nov
26
asked Law of Demeter violation proves useful. Am I missing something?
Nov
19
comment Should I encapsulate my IoC container?
I don't see why the downvote, surely this question is a matter of opinion?
Nov
16
comment What Situations Cause Oracle Packages to Become Invalid?
It's a pity there's not a pragma or something for "I don't care about package state change"
Nov
15
accepted SQL : Optimizing query to have few IO operations
Nov
15
comment What was the best Commodore 64 Game Ever?
lemon64.com/forum/viewtopic.php?p=305530/…
Nov
15
answered SQL : Optimizing query to have few IO operations
Nov
15
comment SQL : Optimizing query to have few IO operations
It would help if you gave details about which database, and about how many rows in the tables.
Nov
15
answered unit test a method that creates an object
Nov
12
revised Isn’t there a point where encapsulation gets ridiculous?
Other answers claims about "Encapsulation" do not stand up to scrutiny; added 2 characters in body
Nov
11
comment Index on date type column in oracle not used when query is run from java
Too much to say for a comment, but see this: asktom.oracle.com/pls/asktom/…
Nov
11
comment Index on date type column in oracle not used when query is run from java
No -> 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?
Nov
11
answered Index on date type column in oracle not used when query is run from java
Nov
11
answered Isn’t there a point where encapsulation gets ridiculous?
Nov
9
comment database audit table
@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.
Nov
5
awarded  Popular Question
Nov
3
comment How to get stored procedure’s returning value?
This 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.
Nov
3
answered How do you stay user-oriented when it comes to your long-term project?
Nov
3
comment Is behaviour driven development about design or analysis?
BDD is reminicent of psychologies Behaviorism: en.wikipedia.org/wiki/Behaviorism
Nov
2
revised What kind of SQL join is this?
added 6 characters in body
Nov
1
revised In Oracle, is it possible to INSERT or UPDATE a record through a view?
Clarified that these are different ways of updating views
Oct
31
answered In Oracle, is it possible to INSERT or UPDATE a record through a view?
Oct
31
revised In Oracle, is it possible to INSERT or UPDATE a record through a view?
removed inline with edit to question
Oct
28
answered Asking for opinions : One sequence for all tables
Oct
27
comment What tablespace are Oracle sequences stored in?
Maybe 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.
Oct
23
answered How to convince a client that all next projects/enhancements should be done via TDD (with some agile practices)?
Oct
18
comment Developing Games - How are things that take more than one game loop performed?
See gafferongames.com/game-physics/fix-your-timestep/…
Oct
14
comment What are some good security questions?
I've seen a database of such questions. They included some tricky ones as: "What colour is grass?" and "What am I trying to reset?"
Oct
12
comment Oracle problems with DATEs
I generally use a TO_CHAR() in the SQL or bind to a JDBC data type. Seems better than setting a session parameter.
Oct
12
answered Is there any difference between class imports and package imports in Java?
Oct
12
accepted Noob Oracle Security question
Oct
12
answered Noob Oracle Security question
Oct
7
comment Comparing numbers as string in oracle
What column datatype are these numbers stored in? Can you write a little script that shows the problem?
Oct
7
comment How universal is the LIMIT statement in SQL?
What version of Oracle does that work in?
Oct
5
comment Oracle: Find previous record for a ranked list of forecasts
Do you have any relevant indexes on the table? If so, what are they?
Oct
3
answered Code coverage for PL/SQL
Oct
2
revised Use Oracle Exception
format code
Oct
2
accepted can’t insert a record into table
Sep
29
revised How to Validate data is Hexadecimal or not in Oracle
format code as code
Sep
27
comment Optimising a SELECT query that runs slow on Oracle which runs quickly on SQL Server
@Dave, only if your queries are big and infrequent. Otherwise you spend more time sampling that doing.
Sep
22
answered READ COMMITTED database isolation level in oracle
Sep
20
comment Creating Indexes for Group By Fields ?
@Eric: It seems unlikely to me that the GROUP BY order matters to Oracle. Changing the order of columns in the GROUP BY does not change the semantics of the query and so should not change the plan. Proof?
Sep
18
awarded  Yearling
Sep
11
comment How to select first ‘N’ records from a database containing million records?
However, Oracle is smart enough to keep the top 100 results. If the next row is outside that 100, it discards it. In this way, it does not have to sort the entire thing. This is O(n) instead of O(n log n)
Sep
11
comment Why is Select 1 faster than Select count(*)?
Which question can you answer fastest. (a) Is there someone called "Smith" in the phone book? (b) How many called Smith are there in the phone book?
Sep
10
revised What can cause a materialized view in Oracle 10g to stop fast refreshing?
edited title
Sep
9
answered Which parts of an address should be required?